From bbeb48a60d00e3d736e11195f77e58e2b5f70d99 Mon Sep 17 00:00:00 2001 From: ehofman Date: Sat, 31 Oct 2009 08:46:46 +0000 Subject: [PATCH] fix a gcc version test --- simgear/compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/compiler.h b/simgear/compiler.h index 5f02adb2..eca95fe5 100644 --- a/simgear/compiler.h +++ b/simgear/compiler.h @@ -132,7 +132,7 @@ #ifdef __APPLE__ # ifdef __GNUC__ -# if ( __GNUC__ >= 3 ) && ( __GNUC_MINOR__ >= 3 ) +# if ( __GNUC__ > 3 ) || ( __GNUC__ == 3 && __GNUC_MINOR__ >= 3 ) inline int (isnan)(double r) { return !(r <= 0 || r >= 0); } # else // any C++ header file undefines isinf and isnan -- 2.39.2