- Default build is without debug now. Use --enable-debug if you want a
- debug build which includes leak/memory overwrite etc. detection
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
])
])
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