projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4427d91
)
Use __INTEL_COMPILER instead of __ICC to the cpp to detect the Intel icc
author
Daniel Stenberg
<daniel@haxx.se>
Thu, 26 Feb 2004 11:37:14 +0000
(11:37 +0000)
committer
Daniel Stenberg
<daniel@haxx.se>
Thu, 26 Feb 2004 11:37:14 +0000
(11:37 +0000)
compiler!
acinclude.m4
patch
|
blob
|
history
diff --git
a/acinclude.m4
b/acinclude.m4
index 8a03d7f1d22fd07c42c7df9b8ca401683a6c6cd2..1e9e5f625d74aaf9739ed4ec1049ea5c5bea27e3 100644
(file)
--- a/
acinclude.m4
+++ b/
acinclude.m4
@@
-493,13
+493,13
@@
AC_DEFUN([CURL_CC_DEBUG_OPTS],
AC_MSG_RESULT($gccver)
AC_MSG_CHECKING([if this is icc in disguise])
- AC_EGREP_CPP([^__I
CC], [__ICC
],
+ AC_EGREP_CPP([^__I
NTEL_COMPILER], [__INTEL_COMPILER
],
dnl action if the text is found, this it has not been replaced by the
dnl cpp
- [ICC="no"]
+ ICC="no"
AC_MSG_RESULT([no]),
dnl the text was not found, it was replaced by the cpp
- [ICC="yes"]
+ ICC="yes"
AC_MSG_RESULT([yes])
)