diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -42,12 +42,7 @@ def configure(conf): conf.env.append_unique('CFLAGS', '-std=c99') - autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-extensions-ui', uselib_store='LV2_UI') - autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-ui-resize', - uselib_store='LV2_UI_RESIZE', mandatory=False) - - if conf.env['HAVE_LV2_UI_RESIZE']: - autowaf.define(conf, 'HAVE_LV2_UI_RESIZE', 1) + autowaf.check_pkg(conf, 'lv2', atleast_version='0.1.0', uselib_store='LV2') autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', atleast_version='2.18.0', mandatory=False) @@ -108,7 +103,7 @@ def build(bld): install_path = '${LIBDIR}', cflags = cflags, lib = lib, - uselib = 'LV2_UI') + uselib = 'LV2') if bld.is_defined('HAVE_GTK2') and bld.is_defined('HAVE_QT4'): obj = bld(features = 'cxx cxxshlib', |