added WITH_LIBCORE define
[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 1 if you have the <alloca.h> header file. */
16 /* #undef HAVE_ALLOCA_H */
17
18 /* Define to 1 if you have the <malloc.h> header file. */
19 #define HAVE_MALLOC_H 1
20
21 /* Define to 1 if you have the <inttypes.h> header file. */
22 /* #undef HAVE_INTTYPES_H */
23
24 /* Define to 1 if you have the <jni.h> header file. */
25 /* #undef HAVE_JNI_H */
26
27 /* Define to 1 if you have the <math.h> header file. */
28 #define HAVE_MATH_H 1
29
30 /* Define to 1 if you have the <memory.h> header file. */
31 #define HAVE_MEMORY_H 1
32
33 /* Define to 1 if you have the <obstack.h> header file. */
34 #define HAVE_OBSTACK_H 1
35
36 /* Define to 1 if you have the <stdint.h> header file. */
37 #define HAVE_STDINT_H 1
38
39 /* Define to 1 if you have the <stdlib.h> header file. */
40 #define HAVE_STDLIB_H 1
41
42 /* Define to 1 if you have the <strings.h> header file. */
43 /* #undef HAVE_STRINGS_H */
44
45 /* Define to 1 if you have the <string.h> header file. */
46 #define HAVE_STRING_H 1
47
48 /* Define to 1 if you have the <sys/stat.h> header file. */
49 #define HAVE_SYS_STAT_H 1
50
51 /* Define to 1 if you have the <sys/types.h> header file. */
52 #define HAVE_SYS_TYPES_H 1
53
54 /* Define to 1 if you have the <unistd.h> header file. */
55 #define HAVE_UNISTD_H 1
56
57 /* Define to the address where bug reports for this package should be sent. */
58 #define PACKAGE_BUGREPORT ""
59
60 /* Define to the full name of this package. */
61 #define PACKAGE_NAME "libFIRM"
62
63 /* Define to the full name and version of this package. */
64 #define PACKAGE_STRING "libFIRM 0.3.0"
65
66 /* Define to the one symbol short name of this package. */
67 #define PACKAGE_TARNAME "libFIRM"
68
69 /* Define to the version of this package. */
70 #define PACKAGE_VERSION "0.3.0"
71
72 /* Define to 1 if you have the ANSI C header files. */
73 #define STDC_HEADERS 1
74
75 /* ---------------snip, snip ---------------------- */
76
77 /* define to enable debugging stuff. */
78 #define DEBUG_libfirm 1
79
80 /* define to 1 to use the libcore */
81 #undef WITH_LIBCORE
82
83 /* Define to disable assertion checking.  */
84 /* #undef NDEBUG */
85
86 /* Remove to disable inlining */
87 #define USE_INLINING 1
88
89 /* Define to 1 if long double works and has more range or precision than
90    double. */
91 /* #undef HAVE_LONG_DOUBLE */
92
93 /* Define to 1 if your processor stores words with the most significant byte
94    first (like Motorola and SPARC, unlike Intel and VAX). */
95 /* #undef WORDS_BIGENDIAN */
96
97 /* Define to 1 if Firm statistics are activated */
98 #define FIRM_STATISTICS
99
100 /* Define to 1 if Firm hooks are activated */
101 #define FIRM_ENABLE_HOOKS
102
103 /* Define the right volatile token */
104 /* #undef volatile */
105
106 /* Define the right inline token */
107 #define inline __inline
108
109 /* Define the right const token */
110 /* #undef const */
111
112 #ifdef USE_INLINING
113 #define INLINE inline
114 #else
115 #define INLINE
116 #endif
117
118 #define snprintf    _snprintf
119 #define strcasecmp  stricmp
120
121 typedef unsigned __int32 uint32_t;
122 typedef __int64 int64_t;