The following code from my configuration.ac file does not work (note the enclosed square brackets with [default = none] ):
AC_ARG_ENABLE(debug, [ --enable-debug build with debugging support [default=no].], [DEBUG="$enableval"], [DEBUG="no"] )
How to avoid these brackets?
bash m4 autoconf
user278429
source share