aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-18 18:15:15 +0000
committerDavid Robillard <d@drobilla.net>2011-11-18 18:15:15 +0000
commit5e664c5c2326bf068dce1fc3346b64410fceaeef (patch)
treec3ca5db12470e6e80623eba4c7a61eee10b7a7f8 /wscript
parent35290c3484b096e41b359a1351c01e4efd3570f8 (diff)
downloadjalv-5e664c5c2326bf068dce1fc3346b64410fceaeef.tar.gz
jalv-5e664c5c2326bf068dce1fc3346b64410fceaeef.tar.bz2
jalv-5e664c5c2326bf068dce1fc3346b64410fceaeef.zip
Update to LV2 State extension.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3615 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/wscript b/wscript
index 7d94bc5..ccdc0ba 100644
--- a/wscript
+++ b/wscript
@@ -53,8 +53,8 @@ def configure(conf):
uselib_store='LV2_EVENT')
autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-uri-map',
uselib_store='LV2_URI_MAP')
- autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-persist',
- uselib_store='LV2_PERSIST', mandatory=False)
+ autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-state',
+ uselib_store='LV2_STATE', mandatory=False)
autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-ui-resize',
uselib_store='LV2_UI_RESIZE', mandatory=False)
@@ -66,8 +66,8 @@ def configure(conf):
conf.write_config_header('jalv-config.h', remove=False)
- autowaf.display_msg(conf, "LV2 Persist support",
- conf.is_defined('HAVE_LV2_PERSIST'))
+ autowaf.display_msg(conf, "LV2 State support",
+ conf.is_defined('HAVE_LV2_STATE'))
autowaf.display_msg(conf, "Gtk 2.0 support",
conf.is_defined('HAVE_GTK2'))
autowaf.display_msg(conf, "Qt 4.0 support",
@@ -75,7 +75,7 @@ def configure(conf):
print('')
def build(bld):
- libs = 'LILV SUIL JACK SERD LV2CORE LV2_EVENT LV2_URI_MAP LV2_PERSIST'
+ libs = 'LILV SUIL JACK SERD LV2CORE LV2_EVENT LV2_URI_MAP LV2_STATE'
source = 'src/jalv.c src/symap.c src/persist.c src/lv2_evbuf.c'