From: Andi Gutmans Date: Sun, 28 May 2000 17:39:30 +0000 (+0000) Subject: - This should have been done for 4.0.0. X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~209 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ebb7335c9a8fa00e22dffb80be99bf208c82b9a;p=php - This should have been done for 4.0.0. - Default build is without debug now. Use --enable-debug if you want a - debug build which includes leak/memory overwrite etc. detection --- diff --git a/Zend/Zend.m4 b/Zend/Zend.m4 index 7d18cfcfba..a2eeffaf3f 100644 --- a/Zend/Zend.m4 +++ b/Zend/Zend.m4 @@ -76,10 +76,10 @@ AC_SUBST(ZEND_SCANNER) AC_DEFUN(LIBZEND_ENABLE_DEBUG,[ AC_ARG_ENABLE(debug, -[ --disable-debug Compile without debugging symbols],[ +[ --enable-debug Compile with debugging symbols],[ ZEND_DEBUG=$enableval ],[ - ZEND_DEBUG=yes + ZEND_DEBUG=no ]) ]) diff --git a/configure.in b/configure.in index c36ca82d5b..41f6919537 100644 --- a/configure.in +++ b/configure.in @@ -432,7 +432,7 @@ else fi PHP_ARG_ENABLE(debug, whether to include debugging symbols, -[ --disable-debug Compile without debugging symbols.], yes) +[ --enable-debug Compile with debugging symbols.], no) if test "$PHP_DEBUG" = "yes"; then PHP_DEBUG=1