Code

backport FP_* fixes and revert FPCLASSIFY fix since there the FP_* values are defines.
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 4 Jul 2010 20:59:49 +0000 (20:59 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 4 Jul 2010 20:59:49 +0000 (20:59 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.4@2101 a5681a0c-68f1-0310-ab6d-d61299d08faa

program/src/rrd_config_bottom.h

index 48a2db2612ef5888d06b74723dadab602f652ecd..ae072be1841c8577d2bc514b6c040d2058f5bcf0 100644 (file)
@@ -170,7 +170,7 @@ char *strchr (), *strrchr ();
 #endif
 
 /* for Solaris */
-#if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS) && defined(FP_NINF) && defined(FP_PINF)
+#if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS)) 
 # define HAVE_ISINF 1
 # ifdef isinf
 #  undef isinf
@@ -179,13 +179,13 @@ char *strchr (), *strrchr ();
 #endif
 
 /* solaris 10 it defines isnan such that only forte can compile it ... bad bad  */
-#if (defined(HAVE_ISNAN) && defined(isnan) && defined(HAVE_FPCLASS) && defined(FP_SNAN) && defined(FP_QNAN))
+#if (defined(HAVE_ISNAN) && defined(isnan) && defined(HAVE_FPCLASS))
 #  undef isnan
 #  define isnan(a) (fpclass(a) == FP_SNAN || fpclass(a) == FP_QNAN)
 #endif
 
 /* for OSF1 Digital Unix */
-#if (! defined(HAVE_ISINF) && defined(HAVE_FP_CLASS) && defined(HAVE_FP_CLASS_H) && defined(FP_NEG_INF) && defined( FP_POS_INF))
+#if (! defined(HAVE_ISINF) && defined(HAVE_FP_CLASS) && defined(HAVE_FP_CLASS_H))
 #  define HAVE_ISINF 1
 #  define isinf(a) (fp_class(a) == FP_NEG_INF || fp_class(a) == FP_POS_INF)
 #endif