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