Add checks and config for Rasqal, required by slv2
authorDoug McLain <doug@nostar.net>
Tue, 18 Jan 2011 19:17:53 +0000 (19:17 +0000)
committerDoug McLain <doug@nostar.net>
Tue, 18 Jan 2011 19:17:53 +0000 (19:17 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@8531 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/wscript

index ac1c80c0cf30ea7c8a949d6cf57ca93c45d9b9a8..779ab26d738dd68333509426e1381d396e6d24ce 100644 (file)
@@ -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' ]