From 6b31e5c851affe59a8c2c7628cdc0e20080c875c Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 18 May 2004 14:33:12 -0400 Subject: [PATCH] BUG: fix problem where cmake thinks the intel compiler is gnu --- Modules/CMakeTestGNU.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/CMakeTestGNU.c b/Modules/CMakeTestGNU.c index 386614a1b..933e5a212 100644 --- a/Modules/CMakeTestGNU.c +++ b/Modules/CMakeTestGNU.c @@ -1,4 +1,4 @@ -#ifdef __GNUC__ +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) void THIS_IS_GNU(); #endif #ifdef __MINGW32__