From 5db4f44b621edcf957aa7bc194bc7de0aca4d5f5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Mar 2013 19:14:32 +0000 Subject: Fix check for LV2 1.4.1 when building recursively. git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5096 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 09b97d9..a08c892 100644 --- a/wscript +++ b/wscript @@ -53,7 +53,7 @@ def configure(conf): autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0', uselib_store='LV2') autowaf.check_pkg(conf, 'lv2', atleast_version='1.4.1', - uselib_store='NEW_LV2', mandatory=False) + uselib_store='LV2_1_4_1', mandatory=False) autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', atleast_version='2.18.0', mandatory=False) @@ -186,7 +186,7 @@ def build(bld): cflags = cflags, lib = modlib, linkflags = bld.env.NODELETE_FLAGS) - autowaf.use_lib(bld, obj, 'GTK2 GTK2_X11 LV2 NEW_LV2') + autowaf.use_lib(bld, obj, 'GTK2 GTK2_X11 LV2 LV2_1_4_1') if bld.is_defined('HAVE_GTK2') and sys.platform == 'win32': obj = bld(features = 'cxx cxxshlib', @@ -209,7 +209,7 @@ def build(bld): install_path = module_dir, cflags = cflags, lib = modlib) - autowaf.use_lib(bld, obj, 'QT4 LV2 NEW_LV2') + autowaf.use_lib(bld, obj, 'QT4 LV2 LV2_1_4_1') # Documentation autowaf.build_dox(bld, 'SUIL', SUIL_VERSION, top, out) -- cgit v1.2.1