wscript: make jack, samplerate, and lash optional
authorPaul Brossier <piem@piem.org>
Mon, 26 Sep 2011 06:22:18 +0000 (00:22 -0600)
committerPaul Brossier <piem@piem.org>
Mon, 26 Sep 2011 06:22:18 +0000 (00:22 -0600)
wscript

diff --git a/wscript b/wscript
index 7760a14b7e3b5dbeb7fb9061fe774f232d645261..669a0c96e0e7a81e2dc88809908da95a1107869b 100644 (file)
--- 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')