From: Antony Dovgal Date: Thu, 24 Jul 2008 14:17:21 +0000 (+0000) Subject: set GCC to "no" if ICC was detected X-Git-Tag: BEFORE_HEAD_NS_CHANGE~1086 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87e02ad76ae5edad4f6b937d2f51cf5039f46ada;p=php set GCC to "no" if ICC was detected --- diff --git a/acinclude.m4 b/acinclude.m4 index 59eaed2017..9c081f01ba 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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]) ) ])