diff options
author | David Robillard <d@drobilla.net> | 2015-01-18 03:28:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-01-18 03:28:30 +0000 |
commit | fd34948ac130d83fd6a8fee40bc56c262ff4798b (patch) | |
tree | 7482f8039b94e99b8cff276054f545bea1675255 | |
parent | e358351a71a89f522558db1160f7d4114cc297d5 (diff) | |
download | suil-fd34948ac130d83fd6a8fee40bc56c262ff4798b.tar.gz suil-fd34948ac130d83fd6a8fee40bc56c262ff4798b.tar.bz2 suil-fd34948ac130d83fd6a8fee40bc56c262ff4798b.zip |
Fix LV2 1.6.0 features (idle, show).
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5521 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -151,7 +151,7 @@ def build(bld): install_path = '${LIBDIR}', cflags = cflags, lib = lib, - uselib = 'LV2') + uselib = 'LV2 LV2_1_6_0') # Static library if bld.env.BUILD_STATIC: @@ -166,7 +166,7 @@ def build(bld): install_path = '${LIBDIR}', cflags = cflags, lib = lib, - uselib = 'LV2') + uselib = 'LV2 LV2_1_6_0') if bld.env.HAVE_GTK2 and bld.env.HAVE_QT4: obj = bld(features = 'cxx cxxshlib', @@ -177,7 +177,7 @@ def build(bld): install_path = module_dir, cflags = cflags, lib = modlib) - autowaf.use_lib(bld, obj, 'GTK2 QT4 LV2') + autowaf.use_lib(bld, obj, 'GTK2 QT4 LV2 LV2_1_6_0') obj = bld(features = 'cxx cxxshlib', source = 'src/qt4_in_gtk2.cpp', @@ -188,7 +188,7 @@ def build(bld): cflags = cflags, lib = modlib, linkflags = bld.env.NODELETE_FLAGS) - autowaf.use_lib(bld, obj, 'GTK2 QT4 LV2') + autowaf.use_lib(bld, obj, 'GTK2 QT4 LV2 LV2_1_6_0') if bld.env.HAVE_GTK2 and bld.env.HAVE_GTK2_X11: obj = bld(features = 'c cshlib', @@ -200,7 +200,7 @@ def build(bld): cflags = cflags, lib = modlib + ['X11'], linkflags = bld.env.NODELETE_FLAGS) - autowaf.use_lib(bld, obj, 'GTK2 GTK2_X11 LV2 LV2_1_4_3') + autowaf.use_lib(bld, obj, 'GTK2 GTK2_X11 LV2 LV2_1_6_0') if bld.env.HAVE_GTK2 and bld.env.HAVE_GTK2_QUARTZ: obj = bld(features = 'cxx cshlib', @@ -212,7 +212,7 @@ def build(bld): cflags = cflags, lib = modlib, linkflags = ['-framework', 'Cocoa']) - autowaf.use_lib(bld, obj, 'GTK2 LV2 LV2_1_4_3') + autowaf.use_lib(bld, obj, 'GTK2 LV2 LV2_1_6_0') if bld.env.HAVE_GTK2 and bld.env.DEST_OS == 'win32': obj = bld(features = 'cxx cxxshlib', @@ -235,7 +235,7 @@ def build(bld): install_path = module_dir, cflags = cflags, lib = modlib) - autowaf.use_lib(bld, obj, 'QT4 LV2 LV2_1_4_3') + autowaf.use_lib(bld, obj, 'QT4 LV2 LV2_1_6_0') # Documentation autowaf.build_dox(bld, 'SUIL', SUIL_VERSION, top, out) |