mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
added conditionals to detect SVN build conditions where we used to use CVS
git-svn-id: svn://localhost/trunk/ardour2@527 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
11a9ea1c80
commit
69ac78fea2
2 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ glibmm2.Append(CXXFLAGS='-DG_LOG_DOMAIN=\\\"glibmm\\\"')
|
|||
|
||||
libglibmm2 = glibmm2.SharedLibrary('glibmm2', glibmm2_files)
|
||||
|
||||
if os.path.exists ('CVS'):
|
||||
if os.path.exists ('CVS') or os.path.exists ('.svn'):
|
||||
glibmm2_configure_script = glibmm2.Command ('configure', 'configure.ac', 'cd libs/glibmm2; ./autogen.sh; cd -', ENV=os.environ)
|
||||
glibmm2_config_h = glibmm2.Command('glibmmconfig.h', [glibmm2_configure_script, 'glibmmconfig.h.in'], 'cd libs/glibmm2; ./configure; cd -', ENV=os.environ)
|
||||
Default([glibmm2_config_h, libglibmm2])
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ sigc2 = env.Copy()
|
|||
|
||||
libsigc2 = sigc2.SharedLibrary('sigc++2', sigc2_files)
|
||||
|
||||
if os.path.exists ('CVS'):
|
||||
if os.path.exists ('CVS') or os.path.exists ('.svn'):
|
||||
sigc2_configure_script = sigc2.Command ('configure', 'configure.ac', 'cd libs/sigc++2; ./autogen.sh; cd -', ENV=os.environ)
|
||||
sigc2_config_h = sigc2.Command('sigc++config.h', [sigc2_configure_script, 'sigc++config.h.in'], 'cd libs/sigc++2; ./configure; cd -', ENV=os.environ)
|
||||
Default([sigc2_config_h,libsigc2])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue