/* config/config.h.in. Generated automatically from configure.in by autoheader. */ #ifndef CONFIG_H #define CONFIG_H /* Define to empty if the keyword does not work. */ #undef const /* Define if you don't have vprintf but do have _doprnt. */ #undef HAVE_DOPRNT /* Define if you have the strftime function. */ #undef HAVE_STRFTIME /* Define if you have the vprintf function. */ #undef HAVE_VPRINTF /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define if you can safely include both and . */ #undef TIME_WITH_SYS_TIME /* Define if your declares struct tm. */ #undef TM_IN_SYS_TIME /* IEEE can be prevented from raising signals with fpsetmask(0) */ #undef MUST_DISABLE_FPMASK #undef MUST_DISABLE_SIGFPE /* realloc does not support NULL as argument */ #undef NO_NULL_REALLOC /* Define if you have the class function. */ #undef HAVE_CLASS /* Define if you have the finite function. */ #undef HAVE_FINITE /* Define if you have the fp_class function. */ #undef HAVE_FP_CLASS /* Define if you have the fpclass function. */ #undef HAVE_FPCLASS /* Define if you have the fpclassify function. */ #undef HAVE_FPCLASSIFY /* Define if you have the getrusage function. */ #undef HAVE_GETRUSAGE /* Define if you have the gettimeofday function. */ #undef HAVE_GETTIMEOFDAY /* Define if you have the isinf function. */ #undef HAVE_ISINF /* Define if you have the isnan function. */ #undef HAVE_ISNAN /* Define if you have the memmove function. */ #undef HAVE_MEMMOVE /* Define if you have the mktime function. */ #undef HAVE_MKTIME /* Define if you have the snprintf function. */ #undef HAVE_SNPRINTF /* Define if you have the strchr function. */ #undef HAVE_STRCHR /* Define if you have the strerror function. */ #undef HAVE_STRERROR /* Define if you have the vsnprintf function. */ #undef HAVE_VSNPRINTF /* Define if you have the header file. */ #undef HAVE_FCNTL_H /* Define if you have the header file. */ #undef HAVE_FLOAT_H /* Define if you have the header file. */ #undef HAVE_FP_CLASS_H /* Define if you have the header file. */ #undef HAVE_IEEEFP_H /* Define if you have the header file. */ #undef HAVE_MALLOC_H /* Define if you have the header file. */ #undef HAVE_MATH_H /* Define if you have the header file. */ #undef HAVE_SYS_PARAM_H /* Define if you have the header file. */ #undef HAVE_SYS_RESOURCE_H /* Define if you have the header file. */ #undef HAVE_SYS_TIME_H /* Define if you have the header file. */ #undef HAVE_SYS_TIMES_H /* Define if you have the header file. */ #undef HAVE_UNISTD_H /* Define if you have the m library (-lm). */ #undef HAVE_LIBM /* Name of package */ #undef PACKAGE /* Version number of package */ #undef VERSION /* define strrchr, strchr and memcpy, memmove in terms of bsd funcs make sure you are NOT using bcopy, index or rindex in the code */ #if STDC_HEADERS # include #else # ifndef HAVE_STRCHR # define strchr index # define strrchr rindex # endif char *strchr (), *strrchr (); # ifndef HAVE_MEMMOVE # define memcpy(d, s, n) bcopy ((s), (d), (n)) # define memmove(d, s, n) bcopy ((s), (d), (n)) # endif #endif #if NO_NULL_REALLOC # define rrd_realloc(a,b) ( (a) == NULL ? malloc( (b) ) : realloc( (a) , (b) )) #else # define rrd_realloc(a,b) realloc((a), (b)) #endif #if HAVE_MATH_H # include #endif #if HAVE_FLOAT_H # include #endif #if HAVE_IEEEFP_H # include #endif #if HAVE_FP_CLASS_H # include #endif /* for Solaris */ #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS)) # define HAVE_ISINF 1 # define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF) #endif /* for OSF1 Digital Unix */ #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 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_PLUS_INF) && defined(FP_MINUS_INF)) # define HAVE_ISINF 1 # define isinf(a) (fpclassify(a) == FP_MINUS_INF || fpclassify(a) == FP_PLUS_INF) #endif #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_INFINITE)) # define HAVE_ISINF 1 # define isinf(a) (fpclassify(a) == FP_INFINITE) #endif /* for AIX */ #if (! defined(HAVE_ISINF) && defined(HAVE_CLASS)) # define HAVE_ISINF 1 # define isinf(a) (class(a) == FP_MINUS_INF || class(a) == FP_PLUS_INF) #endif #if (! defined (HAVE_FINITE) && defined (HAVE_ISFINITE)) # define HAVE_FINITE 1 # define finite(a) isfinite(a) #endif #if (! defined(HAVE_FINITE) && defined(HAVE_ISNAN) && defined(HAVE_ISINF)) # define HAVE_FINITE 1 # define finite(a) (! isnan(a) && ! isinf(a)) #endif #ifndef HAVE_FINITE #error "Can't compile without finite function" #endif #ifndef HAVE_ISINF #error "Can't compile without isinf function" #endif #endif /* CONFIG_H */