silly me... * Ralf Wildenhues wrote on Fri, May 26, 2006 at 01:39:04PM CEST: > > AC_ARG_ENABLE([debug], > AS_HELP_STRING([--enable-debug], [Turn on debugging]),
instead: [AS_HELP_STRING([--enable-debug], [Turn on debugging])], and with argument: [AS_HELP_STRING([--enable-debug@<:@=value@:>@], [Turn on debugging])], (Autoconf-2.60 will get the spacing right.) > [case $enableval in > yes) debug=true ;; > no) debug=false ;; > *) AC_MSG_ERROR([bad value $enableval for --enable-debug]) ;; > esac], [debug=false]) > AM_CONDITIONAL([DEBUG], [test "x$debug" = xtrue])