summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-16 17:12:57 +0000
committerDavid Robillard <d@drobilla.net>2011-05-16 17:12:57 +0000
commit678bb05bd6c68282448e1920fd7511a4289a1fc4 (patch)
treed5ae3693484764acd11566c68c14bc584ee20370 /libs/ardour/wscript
parent4b5bd4ca46fe00a473682bf21927a0d67ac1a3a4 (diff)
Don't check for SLV2 if Lilv is found
git-svn-id: svn://localhost/ardour2/branches/3.0@9522 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript7
1 files changed, 4 insertions, 3 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 1b344d34ef..6425e71bf4 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -248,9 +248,10 @@ def configure(conf):
autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', atleast_version='0.0.0', mandatory=False)
if conf.env['HAVE_LILV']:
autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL', atleast_version='0.2.0', mandatory=False)
- autowaf.check_pkg(conf, 'slv2', uselib_store='SLV2', atleast_version='0.6.4', mandatory=False)
- if conf.env['HAVE_SLV2']:
- autowaf.check_pkg(conf, 'rasqal', uselib_store='RASQAL', atleast_version='0.9.14', mandatory=False)
+ else:
+ autowaf.check_pkg(conf, 'slv2', uselib_store='SLV2', atleast_version='0.6.4', mandatory=False)
+ if conf.env['HAVE_SLV2']:
+ autowaf.check_pkg(conf, 'rasqal', uselib_store='RASQAL', atleast_version='0.9.14', mandatory=False)
autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH', mandatory=False)
autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False)
autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')