fixed solaris regression introduced in r1904 ... now the isnan macro should work...
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 25 Jun 2010 21:41:50 +0000 (21:41 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 25 Jun 2010 21:41:50 +0000 (21:41 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@2093 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/rrd_config_bottom.h

index a569197..48a2db2 100644 (file)
@@ -170,13 +170,12 @@ char *strchr (), *strrchr ();
 #endif
 
 /* for Solaris */
 #endif
 
 /* for Solaris */
-#if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS))
-#  define HAVE_ISINF 1
-#  ifdef isinf
+#if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS) && defined(FP_NINF) && defined(FP_PINF)) 
+# define HAVE_ISINF 1
+# ifdef isinf
 #  undef isinf
 #  undef isinf
-#  endif
-#  define isinf(a) (!!(fpclass(a) & (FP_SNAN|FP_QNAN)))
-
+# endif
+# define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF)
 #endif
 
 /* solaris 10 it defines isnan such that only forte can compile it ... bad bad  */
 #endif
 
 /* solaris 10 it defines isnan such that only forte can compile it ... bad bad  */