[geos-commits] r3958 - in branches/3.4: . include/geos

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Sep 13 05:18:58 PDT 2013


Author: strk
Date: 2013-09-13 05:18:58 -0700 (Fri, 13 Sep 2013)
New Revision: 3958

Modified:
   branches/3.4/NEWS
   branches/3.4/include/geos/platform.h.in
Log:
Fix ISFINITE macro with HP-UX 11.23 build (#664)

Modified: branches/3.4/NEWS
===================================================================
--- branches/3.4/NEWS	2013-09-13 11:41:42 UTC (rev 3957)
+++ branches/3.4/NEWS	2013-09-13 12:18:58 UTC (rev 3958)
@@ -1,6 +1,9 @@
 Changes in 3.4.3-dev
 YYYY-MM-DD
 
+- Bug fixes / improvements
+ - Fix build on HP-UX 11.23 (#664)
+
 Changes in 3.4.2
 2013-08-25
 

Modified: branches/3.4/include/geos/platform.h.in
===================================================================
--- branches/3.4/include/geos/platform.h.in	2013-09-13 11:41:42 UTC (rev 3957)
+++ branches/3.4/include/geos/platform.h.in	2013-09-13 12:18:58 UTC (rev 3958)
@@ -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