diff options
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ def configure(conf): conf.env.append_unique('CFLAGS', '-std=c99') - autowaf.check_pkg(conf, 'lv2core', uselib_store='LV2CORE') + autowaf.check_pkg(conf, 'lv2', atleast_version='0.1.0', uselib_store='LV2') conf.check(function_name = 'sinf', header_name = 'math.h', @@ -59,7 +59,7 @@ def build_plugin(bld, lang, bundle, name, source, cflags=[], libs=[]): obj.includes = [ '.', './src/include' ] obj.name = name obj.target = os.path.join(bundle, name) - obj.uselib = ['LV2CORE'] + obj.uselib = ['LV2'] if cflags != []: obj.cflags = cflags if libs != []: |