From: Paul Brossier Date: Mon, 26 Sep 2011 06:22:18 +0000 (-0600) Subject: wscript: make jack, samplerate, and lash optional X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2a6e6727c696f5e7a1cb0b8e9663f024f4be049a;p=aubio.git wscript: make jack, samplerate, and lash optional --- diff --git a/wscript b/wscript index 7760a14b..669a0c96 100644 --- a/wscript +++ b/wscript @@ -28,11 +28,11 @@ def options(opt): opt.add_option('--enable-complex', action='store_true', default=False, help='compile with C99 complex') opt.add_option('--enable-jack', action='store_true', default=False, - help='compile without jack support') + help='compile with jack support') opt.add_option('--enable-lash', action='store_true', default=False, - help='compile without lash support') + help='compile with lash support') opt.add_option('--enable-libsamplerate', action='store_true', default=False, - help='compile without libsamplerate support') + help='compile with libsamplerate support') opt.add_option('--with-target-platform', type='string', help='set target platform for cross-compilation', dest='target_platform') opt.load('compiler_cc')