summaryrefslogtreecommitdiff
path: root/libs/audiographer
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-09-30 16:22:04 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-09-30 16:22:04 +0000
commita6d7098797b31046d4b6d7e6ba40a508b6344ee6 (patch)
tree9f6e483ae4be4f647ffd9a4b5944466d8cb722c8 /libs/audiographer
parent050d3ab45ec5d597c47265962988019574d6e512 (diff)
more changes to wscript files to catch up with waf 1.6 and fix OS X issues
git-svn-id: svn://localhost/ardour2/branches/3.0@10176 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/audiographer')
-rw-r--r--libs/audiographer/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/audiographer/wscript b/libs/audiographer/wscript
index 172f3b13b7..14ddcd3d3c 100644
--- a/libs/audiographer/wscript
+++ b/libs/audiographer/wscript
@@ -78,7 +78,7 @@ def build(bld):
audiographer.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
- if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
+ if bld.is_defined('BUILD_TESTS') and bld.is_defined('HAVE_CPPUNIT'):
# Unit tests
obj = bld(features = 'cxx cxxprogram')
obj.source = '''
@@ -95,7 +95,7 @@ def build(bld):
tests/general/silence_trimmer_test.cc
'''
- if bld.env['HAVE_ALL_GTHREAD']:
+ if bld.is_defined('HAVE_ALL_GTHREAD'):
obj.source += '''
tests/general/threader_test.cc
'''