diff options
Diffstat (limited to 'configure.in.in')
| -rw-r--r-- | configure.in.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in.in b/configure.in.in index dbe558a17f..1369c8783a 100644 --- a/configure.in.in +++ b/configure.in.in @@ -665,7 +665,7 @@ AC_ARG_WITH(config-file-path, AC_MSG_CHECKING(whether to include debugging symbols) AC_ARG_ENABLE(debug, -[ --enable-debug Compile with debugging symbols], +[ --disable-debug Compile without debugging symbols], [ if test "$enableval" = "yes"; then AC_MSG_RESULT(yes) @@ -682,10 +682,10 @@ AC_ARG_ENABLE(debug, DEBUG_CFLAGS="" fi ],[ - AC_MSG_RESULT(no) - AC_DEFINE(DEBUG,0) - PHP_DEBUG=0 - DEBUG_CFLAGS="" + AC_MSG_RESULT(yes) + AC_DEFINE(DEBUG,1) + PHP_DEBUG=1 + DEBUG_CFLAGS="-g" ]) AC_SUBST(DEBUG_CFLAGS) AC_SUBST(PHP_DEBUG) |
