shithub: libsamplerate

Download patch

ref: b75465600039d7b34f9523e953704e60fa41fc53
parent: 254f73ef89e93d675e6d8b339588e4e779d595d1
author: Erik de Castro Lopo <[email protected]>
date: Tue Apr 20 06:36:39 EDT 2004

In configure.ac use AC_HELP_STRING in AC_ARG_ENABLE statements.

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-20  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>
+
+    * configure.ac
+    Use AC_HELP_STRING in AC_ARG_ENABLE statements.
+
 2004-03-14  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>
 
     * Win32/config.h Win32/sndfile.h
--- a/configure.ac
+++ b/configure.ac
@@ -48,23 +48,23 @@
 # Finished checking, handle options.
 
 AC_ARG_ENABLE(gcc-pipe,
-		[  --disable-gcc-pipe           disable gcc -pipe option ],
+		AC_HELP_STRING([--disable-gcc-pipe], [disable gcc -pipe option ]),
 		ac_arg_gcc_pipe="N", ac_arg_gcc_pipe="Y")
 
 AC_ARG_ENABLE(gcc-opt,
-		[  --disable-gcc-opt            disable gcc optimisations ],
+		AC_HELP_STRING([--disable-gcc-opt], [disable gcc optimisations ]),
 		ac_arg_gcc_opt="N", ac_arg_gcc_opt="Y")
 
 AC_ARG_ENABLE(fftw,
-		[  --disable-fftw               disable usage of FFTW ],
+		AC_HELP_STRING([--disable-fftw], [disable usage of FFTW ]),
 		ac_arg_fftw="N", ac_arg_fftw="Y")
 
 AC_ARG_ENABLE(debug,
-		[  --enable-debug               enable debugging ],
+		AC_HELP_STRING([--enable-debug], [enable debugging ]),
 		ac_arg_debug=yes, ac_arg_debug=no)
 
-AC_ARG_ENABLE(cpu-clip,  
-		[  --disable-cpu-clip           disable tricky cpu specific clipper],
+AC_ARG_ENABLE(cpu-clip,
+		AC_HELP_STRING([--disable-cpu-clip], [disable tricky cpu specific clipper]),
 		ac_arg_cpu_clip="N", ac_arg_cpu_clip="Y")
 
 if test x$ac_arg_debug = xyes ; then