First implementation of lowering for calls with compound return values
[libfirm] / config.h.in
1 /*
2  * Project:     libFIRM
3  * File name:   acconfig.h
4  * Purpose:
5  * Author:      Till Riedel
6  * Modified by:
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 2002-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /* Define to 1 if you have the <alloca.h> header file. */
14 #undef HAVE_ALLOCA_H
15
16 /* Define to 1 if you have the <inttypes.h> header file. */
17 #undef HAVE_INTTYPES_H
18
19 /* Define to 1 if you have the <jni.h> header file. */
20 #undef HAVE_JNI_H
21
22 /* Define to 1 if you have the <math.h> header file. */
23 #undef HAVE_MATH_H
24
25 /* Define to 1 if you have the <memory.h> header file. */
26 #undef HAVE_MEMORY_H
27
28 /* Define to 1 if you have the <obstack.h> header file. */
29 #undef HAVE_OBSTACK_H
30
31 /* Define to 1 if you have the <stdint.h> header file. */
32 #undef HAVE_STDINT_H
33
34 /* Define to 1 if you have the <stdlib.h> header file. */
35 #undef HAVE_STDLIB_H
36
37 /* Define to 1 if you have the <strings.h> header file. */
38 #undef HAVE_STRINGS_H
39
40 /* Define to 1 if you have the <string.h> header file. */
41 #undef HAVE_STRING_H
42
43 /* Define to 1 if you have the <sys/stat.h> header file. */
44 #undef HAVE_SYS_STAT_H
45
46 /* Define to 1 if you have the <sys/types.h> header file. */
47 #undef HAVE_SYS_TYPES_H
48
49 /* Define to 1 if you have the <unistd.h> header file. */
50 #undef HAVE_UNISTD_H
51
52 /* Define to the address where bug reports for this package should be sent. */
53 #undef PACKAGE_BUGREPORT
54
55 /* Define to the full name of this package. */
56 #undef PACKAGE_NAME
57
58 /* Define to the full name and version of this package. */
59 #undef PACKAGE_STRING
60
61 /* Define to the one symbol short name of this package. */
62 #undef PACKAGE_TARNAME
63
64 /* Define to the version of this package. */
65 #undef PACKAGE_VERSION
66
67 /* Define to 1 if you have the ANSI C header files. */
68 #undef STDC_HEADERS
69
70 /* ---------------snip, snip ---------------------- */
71
72 /* Define to 1 if your processor stores words with the most significant byte
73    first (like Motorola and SPARC, unlike Intel and VAX). */
74 #undef WORDS_BIGENDIAN
75
76 /* Define to 1 if long double works and has more range or precision than
77    double. */
78 #undef HAVE_LONG_DOUBLE
79
80 /* Define to 1 for heap analysis support */
81 #undef DO_HEAPANALYSIS
82
83 /* Define the right volatile token */
84 #undef volatile
85
86 /* Define the right inline token */
87 #undef inline
88
89 /* Define the right const token */
90 #undef const
91
92 /* define to 1 to enable debugging stuff. */
93 #undef DEBUG_libfirm
94
95 /* define to 1 to use the libcore */
96 #undef WITH_LIBCORE
97
98 /* define to 1 to have wchar_t support for identifiers */
99 #define FIRM_ENABLE_WCHAR
100
101 /* Define to disable assertion checking.  */
102 #undef NDEBUG
103
104 /* undef to disable inlining */
105 #undef USE_INLINING
106
107 /* Define to 1 if Firm inplace edges are activated */
108 #undef FIRM_EDGES_INPLACE
109
110 /* Define to 1 if Firm hooks are activated */
111 #undef FIRM_ENABLE_HOOKS
112
113 /* Define to 1 if Firm statistics are activated */
114 #undef FIRM_STATISTICS
115
116 #ifdef USE_INLINING
117 #define INLINE inline
118 #else
119 #define INLINE
120 #endif
121
122 /* Firm statistics need hooks */
123 #ifdef FIRM_STATISTICS
124 #ifndef FIRM_ENABLE_HOOKS
125 #define FIRM_ENABLE_HOOKS
126 #endif
127 #endif