summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-03-07 14:54:03 -0500
committerDavid Robillard <d@drobilla.net>2015-03-07 14:54:03 -0500
commitde078a04e23eae197565d231ea35362b5a7ee40e (patch)
tree4b92cc88c5c5d17df6724ea9d21f94cf24327fd6 /libs/ardour/wscript
parent0cb096a9782bd13188e7add156af0a4c5e846e86 (diff)
Fix LV2 preset deletion and clash between plugins.
Before this, LV2 preset deletion in Ardour was doubly broken: the wrong file was being removed, and removing the correct file would only result in a broken preset. This change uses a new version of Lilv which has a more sophisticated mechanism for preset deletion. Also, fix "clashing" presets saved with the same name for different plugins, by prefixing the plugin name to the bundle (this is now a recommendation in the LV2 preset specification).
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 293915cd74..82aa2085f8 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -277,8 +277,8 @@ def configure(conf):
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, 'lilv-0', uselib_store='LILV_0_21_1',
- atleast_version='0.21.1', mandatory=False)
+ autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_21_3',
+ atleast_version='0.21.3', mandatory=False)
autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
atleast_version='0.6.0', mandatory=False)
conf.define ('LV2_SUPPORT', 1)