Fixed inlining, removed --enable-gcc_inline, added --disable-inlining
[libfirm] / config.h.in
1 /* config.h.in.  Generated from configure.in by autoheader.  */
2 /*
3  * Project:     libFIRM
4  * File name:   acconfig.h
5  * Purpose:
6  * Author:      Till Riedel
7  * Modified by:
8  * Created:
9  * CVS-ID:      $Id$
10  * Copyright:   (c) 2002-2003 Universität Karlsruhe
11  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
12  */
13
14 /* define to enable debugging stuff. */
15 #undef DEBUG_libfirm
16
17 /* Define to disable assertion checking.  */
18 #undef NDEBUG
19
20 /* Remove to disable inlining */
21 #undef USE_INLINING
22
23 /* Define to 1 if you have the <alloca.h> header file. */
24 #undef HAVE_ALLOCA_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 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 the address where bug reports for this package should be sent. */
67 #undef PACKAGE_BUGREPORT
68
69 /* Define to the full name of this package. */
70 #undef PACKAGE_NAME
71
72 /* Define to the full name and version of this package. */
73 #undef PACKAGE_STRING
74
75 /* Define to the one symbol short name of this package. */
76 #undef PACKAGE_TARNAME
77
78 /* Define to the version of this package. */
79 #undef PACKAGE_VERSION
80
81 /* Define to 1 if you have the ANSI C header files. */
82 #undef STDC_HEADERS
83
84 /* Define to 1 if your processor stores words with the most significant byte
85    first (like Motorola and SPARC, unlike Intel and VAX). */
86 #undef WORDS_BIGENDIAN
87
88 /* Define to 1 if Firm statistics are activated */
89 #undef FIRM_STATISTICS
90
91 /* Define the right volatile token */
92 #undef volatile
93
94 /* Define the right inline token */
95 #undef inline
96
97 /* Define the right const token */
98 #undef const
99
100 #ifdef USE_INLINING
101 #define INLINE inline
102 #else
103 #define INLINE
104 #endif