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