summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2011-01-18 18:42:28 +0000
committerDoug McLain <doug@nostar.net>2011-01-18 18:42:28 +0000
commit61ce55c944d1f1a3d601e6229571410b39ba2d25 (patch)
tree71390c0863d6761eced537f10eff46f2f1438b03 /SConstruct
parent97abd700dacdcf846765f8faaeda7f8c6ac9e059 (diff)
Add checks and config for Rasqal, required by slv2
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@8530 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 8 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 94a9613e48..1e32ce2ee7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -545,6 +545,14 @@ if env['LV2']:
else:
print 'LV2 support is not enabled (SLV2 not found or older than 0.6.0)'
env['LV2'] = 0
+
+ if conf.CheckPKGVersion('rasqal', '0.9.14'):
+ libraries['rasqal'] = LibraryInfo()
+ libraries['rasqal'].ParseConfig('pkg-config --cflags --libs rasqal')
+ else:
+ print 'LV2 support is not enabled (Rasqal, required by SLV2, not found)'
+ env['LV2'] = 0
+
conf.Finish()
else:
print 'LV2 support is not enabled. Build with \'scons LV2=1\' to enable.'