File tree 1 file changed +35
-0
lines changed
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ abs_srcdir=`(cd $srcdir && pwd)`
21
21
abs_builddir=`pwd`
22
22
23
23
AC_PROG_CC
24
+ PHP_DETECT_ICC
24
25
AC_PROG_CC_C_O
25
26
26
27
dnl Support systems with system libraries in e.g. /usr/lib64
@@ -58,6 +59,40 @@ AC_MSG_RESULT([$EXTENSION_DIR])
58
59
AC_MSG_CHECKING ( [ for PHP installed headers prefix] )
59
60
AC_MSG_RESULT ( [ $phpincludedir] )
60
61
62
+ dnl Check for PHP_DEBUG / ZEND_DEBUG
63
+ AC_MSG_CHECKING ( [ if debug is enabled] )
64
+ old_CPPFLAGS=$CPPFLAGS
65
+ CPPFLAGS="-I$phpincludedir"
66
+ AC_EGREP_CPP ( php_debug_is_enabled ,[
67
+ #include <main/php_config.h>
68
+ #if ZEND_DEBUG
69
+ php_debug_is_enabled
70
+ #endif
71
+ ] ,[
72
+ PHP_DEBUG=yes
73
+ ] ,[
74
+ PHP_DEBUG=no
75
+ ] )
76
+ CPPFLAGS=$old_CPPFLAGS
77
+ AC_MSG_RESULT ( [ $PHP_DEBUG] )
78
+
79
+ if test "$PHP_DEBUG" = "yes"; then
80
+ PHP_DEBUG=1
81
+ ZEND_DEBUG=yes
82
+ changequote ( { ,} )
83
+ CFLAGS=`echo "$CFLAGS" | $SED -e 's/-O[ 0-9s] *//g'`
84
+ CXXFLAGS=`echo "$CXXFLAGS" | $SED -e 's/-O[ 0-9s] *//g'`
85
+ changequote ( [ ,] )
86
+ dnl add -O0 only if GCC or ICC is used
87
+ if test "$GCC" = "yes" || test "$ICC" = "yes"; then
88
+ CFLAGS="$CFLAGS -O0"
89
+ CXXFLAGS="$CXXFLAGS -O0"
90
+ fi
91
+ else
92
+ PHP_DEBUG=0
93
+ ZEND_DEBUG=no
94
+ fi
95
+
61
96
dnl Always shared
62
97
PHP_BUILD_SHARED
63
98
You can’t perform that action at this time.
0 commit comments