From f9cc7bbb0f928f95ad3f40649c7cb70931b9cecd Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 17 Feb 2011 19:26:16 +0000 Subject: Enable dyn-manifest by default. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2983 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index bd339e7..ada28d9 100644 --- a/wscript +++ b/wscript @@ -51,9 +51,9 @@ def options(opt): help="Do not build JACK session support") opt.add_option('--no-swig', action='store_true', default=False, dest='no_swig', help="Do not build python bindings") - opt.add_option('--dyn-manifest', action='store_true', default=False, - dest='dyn_manifest', - help="Build support for dynamic manifest extension [false]") + opt.add_option('--no-dyn-manifest', action='store_true', default=False, + dest='no_dyn_manifest', + help="Don't build support for dynamic manifests") opt.add_option('--test', action='store_true', default=False, dest='build_tests', help="Build unit tests") opt.add_option('--no-bash-completion', action='store_true', default=False, @@ -104,7 +104,7 @@ def configure(conf): conf.env.append_value('CFLAGS', '-std=c99') autowaf.define(conf, 'SLV2_VERSION', SLV2_VERSION) - if Options.options.dyn_manifest: + if not Options.options.no_dyn_manifest: autowaf.define(conf, 'SLV2_DYN_MANIFEST', 1) slv2_path_sep = ':' -- cgit v1.2.1