From 2a6e6727c696f5e7a1cb0b8e9663f024f4be049a Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 26 Sep 2011 00:22:18 -0600 Subject: [PATCH] wscript: make jack, samplerate, and lash optional --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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') -- 2.26.2