summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-07-16 18:00:06 +0000
committerSascha Schumann <sas@php.net>1999-07-16 18:00:06 +0000
commit064a4ea88affcf04e3417bdbc92571f045c07b40 (patch)
treea0527189b68536289dfe5431893ffb9993d4750c /acinclude.m4
parente20424e45f82fc04734da6f97b1cb9a9902fe30a (diff)
downloadphp-git-064a4ea88affcf04e3417bdbc92571f045c07b40.tar.gz
avoid nameclash
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index ea231e571e..7d728a7cef 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -90,8 +90,8 @@ AC_DEFUN(AC_CHECK_CC_OPTION,[
opt="$1"
var=`echo $ac_n "$opt$ac_c"|tr -c a-zA-Z0-9 _`
AC_MSG_CHECKING([if compiler supports -$1 really])
- ac_compile="${CC-cc} -$opt -c $CFLAGS $CPPFLAGS conftest.$ac_ext 2>&1"
- if eval $ac_compile | egrep "$opt" > /dev/null 2>&1 ; then
+ ac_php_compile="${CC-cc} -$opt -c $CFLAGS $CPPFLAGS conftest.$ac_ext 2>&1"
+ if eval $ac_php_compile | egrep "$opt" > /dev/null 2>&1 ; then
eval php_cc_$var=no
AC_MSG_RESULT(no)
else