dsp Thu Dec 4 00:41:55 2008 UTC
Modified files:
/php-src/scripts phpize.m4
Log:
MFB: Fix cc detection in phpize according to changes in configure.in
http://cvs.php.net/viewvc.cgi/php-src/scripts/phpize.m4?r1=1.30&r2=1.31&diff_format=u
Index: php-src/scripts/phpize.m4
diff -u php-src/scripts/phpize.m4:1.30 php-src/scripts/phpize.m4:1.31
--- php-src/scripts/phpize.m4:1.30 Thu Jul 31 00:45:04 2008
+++ php-src/scripts/phpize.m4 Thu Dec 4 00:41:55 2008
@@ -17,11 +17,15 @@
test "[$]$1" = "no" && $1=yes
])dnl
dnl
+
+test -z "$CFLAGS" && auto_cflags=1
+
abs_srcdir=`(cd $srcdir && pwd)`
abs_builddir=`pwd`
-AC_PROG_CC
+AC_PROG_CC([cc gcc])
PHP_DETECT_ICC
+PHP_DETECT_SUNCC
AC_PROG_CC_C_O
dnl Support systems with system libraries in e.g. /usr/lib64
@@ -116,6 +120,15 @@
CFLAGS="$CFLAGS -O0"
CXXFLAGS="$CXXFLAGS -O0"
fi
+ if test "$SUNCC" = "yes"; then
+ if test -n "$auto_cflags"; then
+ CFLAGS="-g"
+ CXXFLAGS="-g"
+ else
+ CFLAGS="$CFLAGS -g"
+ CXXFLAGS="$CFLAGS -g"
+ fi
+ fi
else
PHP_DEBUG=0
ZEND_DEBUG=no
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php