fix autoheader warnings
authorMatthias Braun <matze@braunis.de>
Fri, 15 Dec 2006 12:33:43 +0000 (12:33 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 15 Dec 2006 12:33:43 +0000 (12:33 +0000)
[r8465]

acconfig.h [deleted file]
config.h.in
configure.in

diff --git a/acconfig.h b/acconfig.h
deleted file mode 100644 (file)
index 1ff0e58..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * 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. */
-#undef DEBUG_libfirm
-
-/* Define to disable assertion checking.  */
-#undef NDEBUG
-
-/* Define to value "inline" for gcc inlineing. */
-#undef USE_GCC_INLINE
index 429acd0..c671dcd 100644 (file)
@@ -1,24 +1,11 @@
 /* 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. */
-#undef DEBUG_libfirm
 
-/* Define to disable assertion checking.  */
-#undef NDEBUG
 
-/* Define to value "inline" for gcc inlineing. */
-#undef USE_GCC_INLINE
+
+
+
+/* define to enable debugging stuff */
+#undef DEBUG_libfirm
 
 /* enable heap analysis */
 #undef DO_HEAPANALYSIS
@@ -78,6 +65,9 @@
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
+/* Define to disable assertion checking. */
+#undef NDEBUG
+
 /* Define to the address where bug reports for this package should be sent. */
 #undef PACKAGE_BUGREPORT
 
index df182d1..04532d8 100644 (file)
@@ -28,6 +28,10 @@ ac_output_file="Makefile MakeRules ir/Makefile ir/adt/Makefile ir/net/Makefile i
 dnl generate the config header file
 AC_CONFIG_HEADER(config.h)
 
+AH_TOP([
+
+])
+
 AH_BOTTOM([
 #ifdef USE_INLINING
 #define INLINE inline
@@ -104,9 +108,9 @@ dnl -------------
 AC_ARG_ENABLE(debug,
 [  --enable-debug          enable assertions and additional debugging routines],
 [if test "$enableval" = yes; then
-  AC_DEFINE(DEBUG_libfirm)
+  AC_DEFINE([DEBUG_libfirm], [], [define to enable debugging stuff])
 else
-  AC_DEFINE(NDEBUG)
+  AC_DEFINE([NDEBUG], [], [Define to disable assertion checking.])
 fi])
 AC_SUBST(enable_debug_libfirm)