X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=configure.ac;h=e50796edaa116d13ecec02c53c134ee5bb39e487;hb=169e55d4e90a5bb35ca1b638fe4ece2d0a12e48f;hp=94ec225383bba79a3014a8803f9826cecc47ba2f;hpb=d7b49bfb16aa28668cb35e76494ff288c6953090;p=rrdtool.git diff --git a/configure.ac b/configure.ac index 94ec225..e50796e 100644 --- a/configure.ac +++ b/configure.ac @@ -8,13 +8,13 @@ dnl Inspiration from http://autoconf-archive.cryp.to dnl tell automake the this script is for rrdtool dnl the official version number is dnl a.b.c -AC_INIT([rrdtool],[1.2.13]) +AC_INIT([rrdtool],[1.2.15]) dnl for testing a numberical version number comes handy dnl the released version are dnl a.bccc dnl the devl versions will be something like dnl a.b999yymmddhh -NUMVERS=1.2013 +NUMVERS=1.2015 AC_SUBST(NUMVERS) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE @@ -103,6 +103,12 @@ char *strchr (), *strrchr (); # 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 */ +#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)) # define HAVE_ISINF 1