shithub: aubio

Download patch

ref: d4c09320c569a1e7e2c646978e37b06a2f34b774
parent: cdfc394d7182580d52bd355a74ee1188dbc392f1
author: Paul Brossier <piem@piem.org>
date: Tue Nov 19 20:52:32 EST 2013

wscript: move double towards the end, improve help

--- a/wscript
+++ b/wscript
@@ -44,8 +44,6 @@
           help = help_disable_str )
 
 def options(ctx):
-  add_option_enable_disable(ctx, 'double', default = False,
-          help_str = 'compile aubio in double precision mode')
   add_option_enable_disable(ctx, 'fftw3f', default = False,
           help_str = 'compile with fftw3f instead of ooura (recommended)', help_disable_str = 'do not compile with fftw3f')
   add_option_enable_disable(ctx, 'fftw3', default = False,
@@ -60,6 +58,9 @@
           help_str = 'compile with sndfile (auto)', help_disable_str = 'disable sndfile')
   add_option_enable_disable(ctx, 'samplerate', default = None,
           help_str = 'compile with samplerate (auto)', help_disable_str = 'disable samplerate')
+  add_option_enable_disable(ctx, 'double', default = False,
+          help_str = 'compile aubio in double precision mode',
+          help_disable_str = 'compile aubio in single precision mode (default)')
 
   ctx.add_option('--with-target-platform', type='string',
       help='set target platform for cross-compilation', dest='target_platform')