aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-19 02:05:45 +0000
committerDavid Robillard <d@drobilla.net>2011-10-19 02:05:45 +0000
commit68a3429ef21cec74d3b2bb7aff1ed8ddb1ce54ca (patch)
treef29e7e4bd032a4deaa376329df73d5b4d84ee146 /wscript
parentfbe2a2bc8380db54c2315d50475a643a00f9213f (diff)
downloadjalv-68a3429ef21cec74d3b2bb7aff1ed8ddb1ce54ca.tar.gz
jalv-68a3429ef21cec74d3b2bb7aff1ed8ddb1ce54ca.tar.bz2
jalv-68a3429ef21cec74d3b2bb7aff1ed8ddb1ce54ca.zip
Make LV2 Persist extension optional
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3548 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/wscript b/wscript
index a8b1482..d7c7a25 100644
--- a/wscript
+++ b/wscript
@@ -54,7 +54,7 @@ def configure(conf):
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')
+ uselib_store='LV2_PERSIST', mandatory=False)
if not Options.options.no_jack_session:
autowaf.define(conf, 'JALV_JACK_SESSION', 1)
@@ -64,6 +64,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, "Gtk 2.0 support",
conf.is_defined('HAVE_GTK2'))
autowaf.display_msg(conf, "Qt 4.0 support",