Fix the Win32 build for executable and perl-shared library.
[rrdtool.git] / confignt / config.h
1 /* config.h.nt: what configure _would_ say, if it ran on NT */
2
3 #define STDC_HEADERS 1
4
5 /* Define if you have the strftime function.  */
6 #define HAVE_STRFTIME 1
7
8 /* Define if you have the <math.h> header file.  */
9 #define HAVE_MATH_H 1
10
11 #define HAVE_SYS_TYPES_H 1
12 #define HAVE_SYS_STAT_H 1
13
14 #define rrd_realloc(a,b) realloc((a), (b))
15
16 #define snprintf _snprintf
17 /* Code in rrd_graph.c:rrd_graph_init() uses the %windir%
18  * environment variable to override this. This should
19  * avoid the recompile problem if the system directory is
20  * c:/windows vs. d:/winnt.
21  * This #define can't be removed because:
22  * (1) the constant is used outside of rrd_graph_init() to init a struct
23  * (2) windir might not be available in all environments
24  */
25 #define RRD_DEFAULT_FONT "c:/windows/fonts/cour.ttf"
26
27 #define RRDGRAPH_YLEGEND_ANGLE 90.0
28
29 #define HAVE_STRING_H 1