moved access functions to more locigal places
[libfirm] / config.h.in
index 3d0c350..cb079f7 100644 (file)
@@ -1,24 +1,21 @@
 /* config.h.in.  Generated from configure.in by autoheader.  */
-/*
- * Project:     libFIRM
- * File name:   acconfig.h
- * Purpose:
- * Author:      Till Riedel
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 2002-2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
- */
-
-/* define to enable debugging stuff. */
+
+
+
+/* define to enable debugging stuff */
 #undef DEBUG_libfirm
 
-/* Define to disable assertion checking.  */
-#undef NDEBUG
+/* enable heap analysis */
+#undef DO_HEAPANALYSIS
+
+/* enable firm hooks */
+#undef FIRM_ENABLE_HOOKS
 
-/* Define to value "inline" for gcc inlineing. */
-#undef USE_GCC_INLINE
+/* enable wchar_t support for identifiers */
+#undef FIRM_ENABLE_WCHAR
+
+/* enable statistics code */
+#undef FIRM_STATISTICS
 
 /* Define to 1 if you have the <alloca.h> header file. */
 #undef HAVE_ALLOCA_H
@@ -29,6 +26,9 @@
 /* Define to 1 if you have the <jni.h> header file. */
 #undef HAVE_JNI_H
 
+/* Define to 1 if you have the <libxml/parser.h> header file. */
+#undef HAVE_LIBXML_PARSER_H
+
 /* Define to 1 if long double works and has more range or precision than
    double. */
 #undef HAVE_LONG_DOUBLE
@@ -63,6 +63,9 @@
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
+/* define to disable asserts */
+#undef NDEBUG
+
 /* Define to the address where bug reports for this package should be sent. */
 #undef PACKAGE_BUGREPORT
 
 /* Define to 1 if you have the ANSI C header files. */
 #undef STDC_HEADERS
 
+/* use inlining */
+#undef USE_INLINING
+
+/* compile with ilp solver support */
+#undef WITH_ILP
+
+/* compile with jvm support */
+#undef WITH_JVM
+
+/* define to 1 to use the libcore */
+#undef WITH_LIBCORE
+
 /* Define to 1 if your processor stores words with the most significant byte
    first (like Motorola and SPARC, unlike Intel and VAX). */
 #undef WORDS_BIGENDIAN
 
-/* Define to 1 if Firm statistics are activated */
-#undef FIRM_STATISTICS
+/* we use gnu extensions */
+#undef _GNU_SOURCE
+
+/* Define to empty if `const' does not conform to ANSI C. */
+#undef const
+
+/* Define to `__inline__' or `__inline' if that's what the C compiler
+   calls it, or to nothing if 'inline' is not supported under any name.  */
+#ifndef __cplusplus
+#undef inline
+#endif
+
+/* Define to empty if the keyword `volatile' does not work. Warning: valid
+   code using `volatile' can become incorrect without. Disable with care. */
+#undef volatile
+
+
+#ifdef USE_INLINING
+#define INLINE inline
+#else
+#define INLINE
+#endif
+
+/* Firm statistics need hooks */
+#ifdef FIRM_STATISTICS
+#ifndef FIRM_ENABLE_HOOKS
+#define FIRM_ENABLE_HOOKS
+#endif
+#endif