aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-26 03:58:21 +0000
committerDavid Robillard <d@drobilla.net>2012-03-26 03:58:21 +0000
commit236fa6f5a9f508c9e9aeab3fcd9fe71e77b681de (patch)
tree77559e0e7ab649d3e8f8b819e2818475f41e95fb
parent30eaa0e3ba6b8e21430f33e887eb1ed6e9cfdece (diff)
downloadblop.lv2-236fa6f5a9f508c9e9aeab3fcd9fe71e77b681de.tar.gz
blop.lv2-236fa6f5a9f508c9e9aeab3fcd9fe71e77b681de.tar.bz2
blop.lv2-236fa6f5a9f508c9e9aeab3fcd9fe71e77b681de.zip
Update for latest LV2.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/blip.lv2@4106 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index aa19f62..873e415 100644
--- a/wscript
+++ b/wscript
@@ -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 != []: