MFH: set GCC to "no" if ICC was detected

This commit is contained in:
Antony Dovgal 2008-07-24 14:17:54 +00:00
parent f728ceae94
commit 91ca9b7d53

View File

@ -2751,7 +2751,7 @@ ifelse([$2],[],[AC_MSG_ERROR([Cannot find php_pdo_driver.h.])],[$2])
dnl
dnl PHP_DETECT_ICC
dnl
dnl Detect Intel C++ Compiler and unset $GCC if ICC found
AC_DEFUN([PHP_DETECT_ICC],
[
ICC="no"
@ -2760,6 +2760,7 @@ AC_DEFUN([PHP_DETECT_ICC],
ICC="no"
AC_MSG_RESULT([no]),
ICC="yes"
GCC="no"
AC_MSG_RESULT([yes])
)
])