From 4c5942f3c12fa59ed16a205a6be873cf8066ff5b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Feb 2013 04:07:12 +0000 Subject: Explictly link against sord. git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5069 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wscript b/wscript index c04af90..4a4eda9 100644 --- a/wscript +++ b/wscript @@ -34,11 +34,13 @@ def configure(conf): autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', atleast_version='0.15.1', mandatory=True) autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD', - atleast_version='0.5.0', mandatory=True) + atleast_version='0.14.0', mandatory=True) + autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD', + atleast_version='0.12.0', mandatory=True) autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL', atleast_version='0.6.0', mandatory=True) autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM', - atleast_version='0.2.0', mandatory=True) + atleast_version='0.4.0', mandatory=True) autowaf.check_pkg(conf, 'jack', uselib_store='JACK', atleast_version='0.120.0', mandatory=True) autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', @@ -73,7 +75,7 @@ def configure(conf): print('') def build(bld): - libs = 'LILV SUIL JACK SERD SRATOM LV2' + libs = 'LILV SUIL JACK SERD SORD SRATOM LV2' source = 'src/jalv.c src/symap.c src/state.c src/lv2_evbuf.c src/worker.c src/log.c' -- cgit v1.2.1