summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2011-01-18 19:17:53 +0000
committerDoug McLain <doug@nostar.net>2011-01-18 19:17:53 +0000
commit0d4d585939fdbc47d151cfc836a29d55cd2edeac (patch)
treeec110556891103b5e90fc6fc69d06c8f27ac982d /libs/ardour/wscript
parent58b207b1903250921c925f0feed5ad768bbd325e (diff)
Add checks and config for Rasqal, required by slv2
git-svn-id: svn://localhost/ardour2/branches/3.0@8531 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index ac1c80c0cf..779ab26d73 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -238,6 +238,7 @@ def configure(conf):
autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE', atleast_version='0.1.0')
autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0')
autowaf.check_pkg(conf, 'slv2', uselib_store='SLV2', atleast_version='0.6.4', mandatory=False)
+ 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')
@@ -305,7 +306,7 @@ def build(bld):
if bld.env['HAVE_SLV2']:
obj.source += [ 'lv2_plugin.cc', 'lv2_event_buffer.cc', 'uri_map.cc', 'lv2_pfile.c' ]
- obj.uselib += ' SLV2 '
+ obj.uselib += ' SLV2 ' + ' RASQAL '
if bld.env['VST_SUPPORT']:
obj.source += [ 'vst_plugin.cc', 'session_vst.cc' ]