summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-07-15 15:49:47 -0400
committerDavid Robillard <d@drobilla.net>2014-07-15 15:49:47 -0400
commit9869e2704a71cccf80e99c330d1b5ecb9e8e99f7 (patch)
tree472d27d67b74b47b20387e61794d862e74ea5d12 /libs/ardour/wscript
parente3cf23b8a099f6afc0b3295ab8f8bf2d603a6302 (diff)
Support saving LV2 presets multiple times (fix #0005949).
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 3ce94d892b..f6ed6e649a 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -275,8 +275,10 @@ def configure(conf):
atleast_version='0.2.0', mandatory=True)
autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
atleast_version='0.14.0', mandatory=True)
- autowaf.check_pkg(conf, 'lilv-0', uselib_store='NEW_LILV',
- atleast_version='0.15.0', mandatory=False)
+ autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_16_0',
+ atleast_version='0.16.0', mandatory=False)
+ autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_19_2',
+ atleast_version='0.19.2', mandatory=False)
autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
atleast_version='0.6.0', mandatory=False)
conf.define ('LV2_SUPPORT', 1)