summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-02-28 04:34:30 +0000
committerDavid Robillard <d@drobilla.net>2012-02-28 04:34:30 +0000
commitc9907c647dbe4b5bbd34539b06fbbbcd116c0b9c (patch)
tree2a54e9bf30fc941101eef7ae6cc8213a7405a3ba /SConstruct
parent75ee0d49e285c12e2c0f746163c58c580c54aa61 (diff)
Implement special BPM and free-wheeling control ports.
Input control ports with lv2:hasProperty http://lv2plug.in/ns/ext/time#beatsPerMinute or http://lv2plug.in/ns/lv2core#freeWheeling will be automatically set by Ardour accordingly. git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@11538 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 3eaa563e1e..75f341c741 100644
--- a/SConstruct
+++ b/SConstruct
@@ -559,6 +559,9 @@ if env['LV2']:
libraries['lilv'] = LibraryInfo()
libraries['lilv'].ParseConfig('pkg-config --cflags --libs lilv-0')
env.Append (CCFLAGS="-DHAVE_LV2")
+ if conf.CheckPKGVersion('lilv-0', '0.10.0'):
+ env.Append (CCFLAGS="-DHAVE_NEW_LILV")
+
else:
print 'LV2 support is not enabled (Lilv not found or older than 0.4.0)'
env['LV2'] = 0