Skip to content

Commit

Permalink
Temptative fix for ISFINITE imple with UP-UX 11.23 build (libgeos#664)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/geos/trunk@3957 5242fede-7e19-0410-aef8-94bd7d2200fb
  • Loading branch information
Sandro Santilli committed Sep 13, 2013
1 parent f000d88 commit bb1aa57
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/geos/platform.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ extern "C"
#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
Expand Down

0 comments on commit bb1aa57

Please sign in to comment.