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