diff options
author | David Soria Parra <dsp@php.net> | 2008-12-03 19:53:45 +0000 |
---|---|---|
committer | David Soria Parra <dsp@php.net> | 2008-12-03 19:53:45 +0000 |
commit | fe8d326d57ffe515b0b169de7bcf7403af6eae46 (patch) | |
tree | 56f6644c70ca248a3b226cf2d2a93355119344c0 | |
parent | 2b830291bbd04a4cd05b2185f2c73346d18e5f9c (diff) | |
download | php-git-fe8d326d57ffe515b0b169de7bcf7403af6eae46.tar.gz |
Fix test for auto_cflags and explictly set GCC="no" if we detect suncc
-rw-r--r-- | acinclude.m4 | 1 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index aac7ad554b..39e71e6ca4 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2776,6 +2776,7 @@ AC_DEFUN([PHP_DETECT_SUNCC],[ SUNCC="no" AC_MSG_RESULT([no]), SUNCC="yes" + GCC="no" test -n "$auto_cflags" && CFLAGS="-fsimple=2 -xnorunpath -xO4 -xalias_level=basic -xipo=1 -xlibmopt -xprefetch_level=1 -xprefetch=auto -xstrconst -xtarget=native -zlazyload" GCC="" AC_MSG_RESULT([yes]) diff --git a/configure.in b/configure.in index d83f01d348..c519cad799 100644 --- a/configure.in +++ b/configure.in @@ -796,7 +796,7 @@ if test "$PHP_DEBUG" = "yes"; then CXXFLAGS="$CXXFLAGS -O0" fi if test "$SUNCC" = "yes"; then - if -n "$auto_cflags"; then + if test -n "$auto_cflags"; then CFLAGS="-g" CXXFLAGS="-g" else |