This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[obvious] Fix syntax for ACDEFINE(LIBGCJ_GC_DEBUG ...


While testing the other patch, I noticed that autoheader was erroring out in the libjava directory.

This is an obvious patch to fix the newly introduced problem. The newly generated include/config.in matches current CVS head and configure's only difference is in the whitespace for the --enable-gc-debug help text.

So nothing will compile differently. I'll commit as obvious tonight.

Kelley Cook
2004-09-03  Kelley Cook  <kcook@gcc.gnu.org>

	* configure.ac (enable-gc-debug): Update help for new syntax.
	* configure: Regenerate.

--- gcc-orig/libjava/configure.ac	2004-08-27 20:45:41.000000000 -0400
+++ gcc-snapshot/libjava/configure.ac	2004-09-03 11:13:56.330723700 -0400
@@ -255,9 +256,11 @@ AC_ARG_ENABLE(libgcj-debug,
 
 # Check for gc debugging.  This option is handled both here and in the GC.
 AC_ARG_ENABLE(gc-debug,
-[  --enable-gc-debug	include full support for pointer backtracing etc.],
+   AS_HELP_STRING([--enable-gc-debug],
+		  [include full support for pointer backtracing etc.]),
 [ if test "$enable_gc_debug" = "yes"; then
-    AC_DEFINE(LIBGCJ_GC_DEBUG)
+    AC_DEFINE(LIBGCJ_GC_DEBUG, 1, 
+	      [Define if we want to use debug calls into the garbage collector.])
   fi])
 
 # See if the user has the interpreter included.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]