This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
metaconfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
0df1413
)
Teach Configure that icc is not gcc
author
Steve Peters
<steve@fisharerojo.org>
Tue, 6 Jun 2006 10:33:12 +0000
(
05:33
-0500)
committer
H.Merijn Brand
<h.m.brand@xs4all.nl>
Tue, 6 Jun 2006 18:32:16 +0000
(18:32 +0000)
Message-ID: <
20060606153312
.GA5542@fisharerojo.org>
p4raw-id: //depot/metaconfig@28361
U/perl/gccvers.U
patch
|
blob
|
blame
|
history
diff --git
a/U/perl/gccvers.U
b/U/perl/gccvers.U
index
21375be
..
6115b22
100644
(file)
--- a/
U/perl/gccvers.U
+++ b/
U/perl/gccvers.U
@@
-45,7
+45,7
@@
echo "Checking for GNU cc in disguise and/or its version number..." >&4
$cat >try.c <<EOM
#include <stdio.h>
int main() {
-#if
def __GNUC__
+#if
defined(__GNUC__) && !defined(__INTEL_COMPILER)
#ifdef __VERSION__
printf("%s\n", __VERSION__);
#else