summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2004-10-15 03:44:31 +0200
committertege <tege@gmplib.org>2004-10-15 03:44:31 +0200
commit37e3dd48957b546c3f27df1c7481433c3ab99e73 (patch)
tree8f4f61583cbdf9a9789dbdefa85b99fc0d2adbdc /acinclude.m4
parent7be74de1819891f1113eeeae76caff1e7c2c83a9 (diff)
downloadgmp-37e3dd48957b546c3f27df1c7481433c3ab99e73.tar.gz
(GMP_PROG_CC_IS_GNU): Don't let Intel's icc fool us it is GCC.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 9de93c19b..1cfece81e 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -863,7 +863,7 @@ dnl problems with syntax checking cpp's used on NeXT and Apple systems.
AC_DEFUN([GMP_PROG_CC_IS_GNU],
[cat >conftest.c <<EOF
-#ifndef __GNUC__
+#if ! defined (__GNUC__) || defined (__INTEL_COMPILER)
choke me
#endif
EOF