X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=c5200a92a0fd176413bd37304be3ba267967c952;hb=210d03a47741373b1e531040550326214ab5e49e;hp=c3465c076b0c1324b46650a6ee3c57362f7aceac;hpb=5ffd2078da6eef5bbfc6ac2233973dd1cd99d44c;p=ardour.git diff --git a/wscript b/wscript index c3465c076b..c5200a92a0 100644 --- a/wscript +++ b/wscript @@ -236,6 +236,7 @@ children = [ 'libs/qm-dsp', 'libs/vamp-plugins', 'libs/zita-resampler', + 'libs/zita-convolver', # core ardour libraries 'libs/pbd', 'libs/midi++2', @@ -669,9 +670,6 @@ int main() { return 0; }''', ('-D__STDC_LIMIT_MACROS', '-D__STDC_FORMAT_MACROS', '-DCANVAS_COMPATIBILITY', '-DCANVAS_DEBUG')) - if opt.nls: - compiler_flags.append('-DENABLE_NLS') - # use sparingly, prefer runtime profile if Options.options.program_name.lower() == "mixbus": compiler_flags.append ('-DMIXBUS') @@ -769,10 +767,6 @@ def options(opt): help='Compile libcanvas test GUI') opt.add_option('--beatbox', action='store_true', default=False, dest='beatbox', help='Compile beatbox test app') - opt.add_option('--lv2', action='store_true', default=True, dest='lv2', - help='Compile with support for LV2 (if Lilv+Suil is available)') - opt.add_option('--no-lv2', action='store_false', dest='lv2', - help='Do not compile with support for LV2') opt.add_option('--lv2dir', type='string', help="install destination for builtin LV2 bundles [Default: LIBDIR/lv2]") opt.add_option('--lxvst', action='store_true', default=True, dest='lxvst', help='Compile with support for linuxVST plugins') @@ -1173,6 +1167,9 @@ int main () { return 0; } if opts.nls: conf.define('ENABLE_NLS', 1) conf.env['ENABLE_NLS'] = True + else: + conf.define('ENABLE_NLS', 0) + conf.env['ENABLE_NLS'] = False if opts.build_tests: conf.env['BUILD_TESTS'] = True conf.env['RUN_TESTS'] = opts.run_tests