]> git.mxchange.org Git - simgear.git/commitdiff
Ima Sudonim:
authorehofman <ehofman>
Thu, 10 Mar 2005 08:58:48 +0000 (08:58 +0000)
committerehofman <ehofman>
Thu, 10 Mar 2005 08:58:48 +0000 (08:58 +0000)
I have (hopefully) generated a patch for a previously mentioned simgear  problem for a hang condition in mac os x.  Mentioned in  <http://baron.flightgear.org/pipermail/flightgear-devel/2005-February/ 035004.html>

simgear/sound/soundmgr_openal.cxx

index de6a987f38fda63a9c95c2822dc81df01bc60a59..9b88e3d001ad6997bc329b94bbcbfd760a241613 100644 (file)
 #endif
 
 #if defined (__APPLE__)
-// any C++ header file undefines isinf and isnan
-// so this should be included before <iostream>
-inline int (isinf)(double r) { return isinf(r); }
-inline int (isnan)(double r) { return isnan(r); } 
+#  ifdef __GNUC__
+#    if ( __GNUC__ >= 3 ) && ( __GNUC_MINOR__ >= 3 )
+//  #        include <math.h>
+extern "C" int isnan (double);
+extern "C" int isinf (double);
+#    else
+    // any C++ header file undefines isinf and isnan
+    // so this should be included before <iostream>
+    // the functions are STILL in libm (libSystem on mac os x)
+extern "C" int isnan (double);
+extern "C" int isinf (double);
+#    endif
+#  else
+//    inline int (isinf)(double r) { return isinf(r); }
+//    inline int (isnan)(double r) { return isnan(r); }
+#  endif
 #endif
 
 #if defined (__FreeBSD__)