To get the old behaviour - stripped binary and -fomit-frame-pointer
in CFLAGS, --disable-debug must be used.
Allowing debugging by default seems saner.
# autoconf does not want to find 'install', if not using automake...
INSTALL=install
-AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],[build binary with debugging symbols]))
+AC_ARG_ENABLE(debug,
+ AC_HELP_STRING([--disable-debug],[add -fomit-frame-pointer to CFLAGS and strip binary]),
+ [], [enable_debug=yes])
AC_MSG_CHECKING([whether to build debug binary])
if test "$enable_debug" = "yes"; then
LDFLAGS="-g $LDFLAGS"