diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-06-06 05:33:12 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-06-06 18:33:52 +0000 |
commit | 7686528ec527b1dbb8270dafda0d29b2197ddc9e (patch) | |
tree | 1a4d00ca6d5173c22f825cd8ff312f8520e947bc /Configure | |
parent | 18b19aecdfa8e9a21e5eca3a11e12fc13e8e219b (diff) | |
download | perl-7686528ec527b1dbb8270dafda0d29b2197ddc9e.tar.gz |
Teach Configure that icc is not gcc
Message-ID: <20060606153312.GA5542@fisharerojo.org>
p4raw-id: //depot/perl@28362
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Mon May 22 19:21:39 CEST 2006 [metaconfig 3.0 PL70] +# Generated on Tue Jun 6 20:32:43 CEST 2006 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -4308,7 +4308,7 @@ echo "Checking for GNU cc in disguise and/or its version number..." >&4 $cat >try.c <<EOM #include <stdio.h> int main() { -#ifdef __GNUC__ +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) #ifdef __VERSION__ printf("%s\n", __VERSION__); #else |