noone needs this anymore
[rrdtool.git] / confignt / config.h
1 /* config.h.in.  Generated from configure.ac by autoheader.  */
2 #ifndef CONFIG_H
3 #define CONFIG_H
4
5 #include <math.h>
6 #include <float.h>
7
8 /* realloc does not support NULL as argument */
9
10 #define HAVE_STRFTIME 1
11 #define HAVE_TIME_H 1
12 #define HAVE_LOCALE_H 1
13 #define HAVE_TZSET 1
14 #define HAVE_SETLOCALE 1
15 #define HAVE_MATH_H 1
16 #define HAVE_FLOAT_H 1
17 #define HAVE_MEMMOVE 1
18 #define HAVE_MALLOC_H 1
19 #define HAVE_MKTIME 1
20 #define HAVE_STRFTIME 1
21 #define HAVE_STRING_H 1
22 #define HAVE_VPRINTF 1
23 #define HAVE_SYS_TYPES_H 1
24 #define HAVE_SYS_STAT_H 1
25
26 /* Define to 1 if you have the ANSI C header files. */
27 #define STDC_HEADERS 1
28
29 #define NUMVERS 1.2015
30 #define PACKAGE_NAME "rrdtool"
31 #define PACKAGE_VERSION "1.2.15"
32 #define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION
33
34 #define isinf(a) (_fpclass(a) == _FPCLASS_NINF || _fpclass(a) == _FPCLASS_PINF)
35 #define isnan _isnan
36 #define finite _finite
37 #define snprintf _snprintf
38 #define strftime strftime_ 
39
40 #define NO_NULL_REALLOC 1
41 #if NO_NULL_REALLOC
42 # define rrd_realloc(a,b) ( (a) == NULL ? malloc( (b) ) : realloc( (a) , (b) ))
43 #else
44 # define rrd_realloc(a,b) realloc((a), (b))
45 #endif      
46
47 /* Vertical label angle: 90.0 (default) or 270.0 */
48 #define RRDGRAPH_YLEGEND_ANGLE 90.0
49
50 #define RRD_DEFAULT_FONT "arial.ttf"
51 /* #define RRD_DEFAULT_FONT "DejaVuSansMono-Roman.ttf" */
52
53 /* #define WITH_PIECHART 1 */
54
55 //#define DEBUG 1
56
57 #endif /* CONFIG_H */
58