[geos-commits] r3957 - trunk/include/geos

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Sep 13 04:41:43 PDT 2013


Author: strk
Date: 2013-09-13 04:41:42 -0700 (Fri, 13 Sep 2013)
New Revision: 3957

Modified:
   trunk/include/geos/platform.h.in
Log:
Temptative fix for ISFINITE imple with UP-UX 11.23 build (#664)

Modified: trunk/include/geos/platform.h.in
===================================================================
--- trunk/include/geos/platform.h.in	2013-09-13 09:32:10 UTC (rev 3956)
+++ trunk/include/geos/platform.h.in	2013-09-13 11:41:42 UTC (rev 3957)
@@ -78,6 +78,8 @@
 #else
 # if defined(_MSC_VER)
 #  define FINITE(x) _finite(static_cast<double>(x))    
+# elif defined(__hpux__) && defined(__ia64__)
+#  define FINITE(x) (_Isfinite(x))
 # else
 #  define FINITE(x) (isfinite(x))
 # endif



More information about the geos-commits mailing list