diff options
author | David Robillard <d@drobilla.net> | 2013-05-09 20:18:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-05-09 20:18:07 +0000 |
commit | 2ba8fe75d93a8a1591c53336933bf7f4285e31bc (patch) | |
tree | af26c0db111e0975b63e4292ad7ca964010aa519 /wscript | |
parent | c1cf4a0aaa5742441eb3b0052844e9b3415a641b (diff) | |
download | suil-2ba8fe75d93a8a1591c53336933bf7f4285e31bc.tar.gz suil-2ba8fe75d93a8a1591c53336933bf7f4285e31bc.tar.bz2 suil-2ba8fe75d93a8a1591c53336933bf7f4285e31bc.zip |
Communicate UI update rate to plugin and UI.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5107 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -52,8 +52,8 @@ def configure(conf): conf.env.NODELETE_FLAGS = ['-Wl,-z,nodelete'] 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='LV2_1_4_1', mandatory=False) + autowaf.check_pkg(conf, 'lv2', atleast_version='1.4.3', + uselib_store='LV2_1_4_3', 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 LV2_1_4_1') + autowaf.use_lib(bld, obj, 'GTK2 GTK2_X11 LV2 LV2_1_4_3') 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 LV2_1_4_1') + autowaf.use_lib(bld, obj, 'QT4 LV2 LV2_1_4_3') # Documentation autowaf.build_dox(bld, 'SUIL', SUIL_VERSION, top, out) |