minimize number of build variants: always enable statistics
[libfirm] / win32 / config.h
1 /* WIN32 - version */
2 /* always debug heap support */
3 #include "crtdbg.h"
4
5 /* Define to 1 if you have the <alloca.h> header file. */
6 /* #undef HAVE_ALLOCA_H */
7
8 /* Define to 1 if you have the <malloc.h> header file. */
9 #define HAVE_MALLOC_H 1
10
11 /* Define to 1 if you have the <inttypes.h> header file. */
12 /* #undef HAVE_INTTYPES_H */
13
14 /* Define to 1 if you have the <jni.h> header file. */
15 /* #undef HAVE_JNI_H */
16
17 /* Define to 1 if you have the <math.h> header file. */
18 #define HAVE_MATH_H 1
19
20 /* Define to 1 if you have the <memory.h> header file. */
21 #define HAVE_MEMORY_H 1
22
23 /* Define to 1 if you have the <obstack.h> header file. */
24 #define HAVE_OBSTACK_H 1
25
26 /* Define to 1 if you have the <stdint.h> header file. */
27 #define HAVE_STDINT_H 1
28
29 /* Define to 1 if you have the <strings.h> header file. */
30 /* #undef HAVE_STRINGS_H */
31
32 /* Define to 1 if you have the <sys/stat.h> header file. */
33 #define HAVE_SYS_STAT_H 1
34
35 /* Define to 1 if you have the <sys/types.h> header file. */
36 #define HAVE_SYS_TYPES_H 1
37
38 /* Define to 1 if you have the <unistd.h> header file. */
39 #define HAVE_UNISTD_H 1
40
41 /* Define to 1 if you have the <io.h> header file. */
42 #define HAVE_IO_H 1
43
44 /* Define to the address where bug reports for this package should be sent. */
45 #define PACKAGE_BUGREPORT "firm@ipd.info.uni-karlsruhe.de"
46
47 /* Define to the full name of this package. */
48 #define PACKAGE_NAME "libFIRM"
49
50 /* Define to the full name and version of this package. */
51 #define PACKAGE_STRING "libFIRM 1.18.1"
52
53 /* Define to the one symbol short name of this package. */
54 #define PACKAGE_TARNAME "libFIRM"
55
56 /* Define to the version of this package. */
57 #define PACKAGE_VERSION "1.18.1"
58
59 /* Define to 1 if you have the ANSI C header files. */
60 #define STDC_HEADERS 1
61
62 #define libfirm_VERSION_MAJOR 1
63 #define libfirm_VERSION_MINOR 18
64 #define libfirm_VERSION_MICRO 1
65
66 /* ---------------snip, snip ---------------------- */
67
68 /* define to enable debugging stuff. */
69 #define DEBUG_libfirm 1
70
71 /* define to 1 to use the ILP solver */
72 /* #undef WITH_ILP */
73
74 /* Define to disable assertion checking.  */
75 /* #undef NDEBUG */
76
77 /* Define to 1 if long double works and has more range or precision than
78    double. */
79 /* #undef HAVE_LONG_DOUBLE */
80
81 /* Define to 1 if your processor stores words with the most significant byte
82    first (like Motorola and SPARC, unlike Intel and VAX). */
83 /* #undef WORDS_BIGENDIAN */
84
85 /* Define the right volatile token */
86 /* #undef volatile */
87
88 /* Define the right const token */
89 /* #undef const */
90
91 #ifndef inline
92 #define inline __inline
93 #endif
94
95 /* map some non-POSIX names for Win32 */
96 #define snprintf    _snprintf
97 #define strcasecmp  stricmp
98 #define strncasecmp _strnicmp
99 #define __attribute__(x)
100
101 typedef unsigned __int16 uint16_t;
102 typedef unsigned __int32 uint32_t;
103 typedef __int64 int64_t;