Include ir/opt in includes
[libfirm] / win32 / config.h
1 /* config.h.  Generated by configure.  */
2 /* config.h.in.  Generated from configure.in by autoheader.  */
3 /*
4  * Project:     libFIRM
5  * File name:   acconfig.h
6  * Purpose:
7  * Author:      Till Riedel
8  * Modified by:
9  * Created:
10  * CVS-ID:      $Id$
11  * Copyright:   (c) 2002-2003 Universität Karlsruhe
12  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
13  */
14
15 /* define to enable debugging stuff. */
16 #define DEBUG_libfirm 1
17
18 /* Define to disable assertion checking.  */
19 /* #undef NDEBUG */
20
21 /* Remove to disable inlining */
22 #define USE_INLINING 1
23
24 /* Define to 1 if you have the <alloca.h> header file. */
25 /* #undef HAVE_ALLOCA_H */
26
27 /* Define to 1 if you have the <malloc.h> header file. */
28 #define HAVE_MALLOC_H 1
29
30 /* Define to 1 if you have the <inttypes.h> header file. */
31 /* #undef HAVE_INTTYPES_H */
32
33 /* Define to 1 if you have the <jni.h> header file. */
34 /* #undef HAVE_JNI_H */
35
36 /* Define to 1 if long double works and has more range or precision than
37    double. */
38 /* #undef HAVE_LONG_DOUBLE */
39
40 /* Define to 1 if you have the <math.h> header file. */
41 #define HAVE_MATH_H 1
42
43 /* Define to 1 if you have the <memory.h> header file. */
44 #define HAVE_MEMORY_H 1
45
46 /* Define to 1 if you have the <obstack.h> header file. */
47 #define HAVE_OBSTACK_H 1
48
49 /* Define to 1 if you have the <stdint.h> header file. */
50 #define HAVE_STDINT_H 1
51
52 /* Define to 1 if you have the <stdlib.h> header file. */
53 #define HAVE_STDLIB_H 1
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 #define HAVE_STRING_H 1
60
61 /* Define to 1 if you have the <sys/stat.h> header file. */
62 #define HAVE_SYS_STAT_H 1
63
64 /* Define to 1 if you have the <sys/types.h> header file. */
65 #define HAVE_SYS_TYPES_H 1
66
67 /* Define to 1 if you have the <unistd.h> header file. */
68 #define HAVE_UNISTD_H 1
69
70 /* Define to the address where bug reports for this package should be sent. */
71 #define PACKAGE_BUGREPORT ""
72
73 /* Define to the full name of this package. */
74 #define PACKAGE_NAME "libFIRM"
75
76 /* Define to the full name and version of this package. */
77 #define PACKAGE_STRING "libFIRM 0.3.0"
78
79 /* Define to the one symbol short name of this package. */
80 #define PACKAGE_TARNAME "libFIRM"
81
82 /* Define to the version of this package. */
83 #define PACKAGE_VERSION "0.3.0"
84
85 /* Define to 1 if you have the ANSI C header files. */
86 #define STDC_HEADERS 1
87
88 /* Define to 1 if your processor stores words with the most significant byte
89    first (like Motorola and SPARC, unlike Intel and VAX). */
90 /* #undef WORDS_BIGENDIAN */
91
92 /* Define to 1 if Firm statistics are activated */
93 /* #undef FIRM_STATISTICS */
94
95 /* Define the right volatile token */
96 /* #undef volatile */
97
98 /* Define the right inline token */
99 #define inline __inline
100
101 /* Define the right const token */
102 /* #undef const */
103
104 #ifdef USE_INLINING
105 #define INLINE inline
106 #else
107 #define INLINE
108 #endif
109
110 #define snprintf    _snprintf
111 #define strcasecmp  stricmp
112
113 typedef unsigned __int32 uint32_t;