aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh4
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index 7970702..53ba526 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,10 +4,10 @@ autoreconf -fi
if [ "$1" == "-d" ]; then
shift;
- echo "Running configure --enable-debug (but not --enable-debug-output)"
+ echo "Running ./configure"
echo
sleep 1s
- ./configure --enable-debug "$@"
+ ./configure "$@"
elif [ -n "$1" ]; then
echo
echo "./configure $@"
diff --git a/configure.ac b/configure.ac
index aed1105..aee5266 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,8 +8,6 @@ AC_LANG(C)
AC_PROG_LIBTOOL
# --enable and --with options
-AC_ARG_ENABLE([debug],
- [AS_HELP_STRING([--enable-debug], [enable debug symbols])])
AC_ARG_ENABLE([debug-output],
[AS_HELP_STRING([--enable-debug-output], [enable debug output])])
AC_ARG_WITH([core-foundation],