fixed doxygen output
[libfirm] / config.h.in
1 /* config.h.in.  Generated from configure.in by autoheader.  */
2
3
4
5
6
7 /* define to enable debugging stuff */
8 #undef DEBUG_libfirm
9
10 /* enable heap analysis */
11 #undef DO_HEAPANALYSIS
12
13 /* enable firm hooks */
14 #undef FIRM_ENABLE_HOOKS
15
16 /* enable wchar_t support for identifiers */
17 #undef FIRM_ENABLE_WCHAR
18
19 /* enable statistics code */
20 #undef FIRM_STATISTICS
21
22 /* Define to 1 if you have the <alloca.h> header file. */
23 #undef HAVE_ALLOCA_H
24
25 /* Define to 1 if you have the <inttypes.h> header file. */
26 #undef HAVE_INTTYPES_H
27
28 /* Define to 1 if you have the <jni.h> header file. */
29 #undef HAVE_JNI_H
30
31 /* Define to 1 if you have the <libxml/parser.h> header file. */
32 #undef HAVE_LIBXML_PARSER_H
33
34 /* Define to 1 if long double works and has more range or precision than
35    double. */
36 #undef HAVE_LONG_DOUBLE
37
38 /* Define to 1 if you have the <math.h> header file. */
39 #undef HAVE_MATH_H
40
41 /* Define to 1 if you have the <memory.h> header file. */
42 #undef HAVE_MEMORY_H
43
44 /* Define to 1 if you have the <obstack.h> header file. */
45 #undef HAVE_OBSTACK_H
46
47 /* Define to 1 if you have the <stdint.h> header file. */
48 #undef HAVE_STDINT_H
49
50 /* Define to 1 if you have the <stdlib.h> header file. */
51 #undef HAVE_STDLIB_H
52
53 /* Define to 1 if you have the <strings.h> header file. */
54 #undef HAVE_STRINGS_H
55
56 /* Define to 1 if you have the <string.h> header file. */
57 #undef HAVE_STRING_H
58
59 /* Define to 1 if you have the <sys/stat.h> header file. */
60 #undef HAVE_SYS_STAT_H
61
62 /* Define to 1 if you have the <sys/types.h> header file. */
63 #undef HAVE_SYS_TYPES_H
64
65 /* Define to 1 if you have the <unistd.h> header file. */
66 #undef HAVE_UNISTD_H
67
68 /* Define to disable assertion checking. */
69 #undef NDEBUG
70
71 /* Define to the address where bug reports for this package should be sent. */
72 #undef PACKAGE_BUGREPORT
73
74 /* Define to the full name of this package. */
75 #undef PACKAGE_NAME
76
77 /* Define to the full name and version of this package. */
78 #undef PACKAGE_STRING
79
80 /* Define to the one symbol short name of this package. */
81 #undef PACKAGE_TARNAME
82
83 /* Define to the version of this package. */
84 #undef PACKAGE_VERSION
85
86 /* Define to 1 if you have the ANSI C header files. */
87 #undef STDC_HEADERS
88
89 /* use inlining */
90 #undef USE_INLINING
91
92 /* compile with ilp solver support */
93 #undef WITH_ILP
94
95 /* compile with jvm support */
96 #undef WITH_JVM
97
98 /* compile with libcore support */
99 #undef WITH_LIBCORE
100
101 /* Define to 1 if your processor stores words with the most significant byte
102    first (like Motorola and SPARC, unlike Intel and VAX). */
103 #undef WORDS_BIGENDIAN
104
105 /* we use gnu extensions */
106 #undef _GNU_SOURCE
107
108 /* Define to empty if `const' does not conform to ANSI C. */
109 #undef const
110
111 /* Define to `__inline__' or `__inline' if that's what the C compiler
112    calls it, or to nothing if 'inline' is not supported under any name.  */
113 #ifndef __cplusplus
114 #undef inline
115 #endif
116
117 /* Define to empty if the keyword `volatile' does not work. Warning: valid
118    code using `volatile' can become incorrect without. Disable with care. */
119 #undef volatile
120
121
122 #ifdef USE_INLINING
123 #define INLINE inline
124 #else
125 #define INLINE
126 #endif
127
128 /* Firm statistics need hooks */
129 #ifdef FIRM_STATISTICS
130 #ifndef FIRM_ENABLE_HOOKS
131 #define FIRM_ENABLE_HOOKS
132 #endif
133 #endif