mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 05:38:24 -05:00
jsoncpp: Provide 'isfinite' implementation on Solaris
Solaris provides a 'finite' function in <ieeefp.h>.
This commit is contained in:
@@ -21,6 +21,12 @@
|
||||
#define snprintf _snprintf
|
||||
#endif
|
||||
|
||||
// Solaris
|
||||
#if defined(__sun)
|
||||
# include <ieeefp.h>
|
||||
# define isfinite finite
|
||||
#endif
|
||||
|
||||
// Ancient glibc
|
||||
#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 2
|
||||
# if !defined(isfinite)
|
||||
|
||||
Reference in New Issue
Block a user