Tom,
My first iteration did as you recently suggested and copied everything except PACKAGE and VERSION.
Both Nathanael and Bryce said that the logic for the generated file should be to only include definitions that we wish to externally present as opposed to only excluding those we know are problematic. I personally agree with them.
Bootstrapped and regtested on powerpc-apple-darwin7.6.0
OK to install? The hundreds of libjava warnings are a regression that I caused, though I do not believe that there is a PR associated with the problem.
BTW: Bryce, is CVS's PR18699.out supposed to be a zero byte file?
2004-12-09 Kelley Cook <[EMAIL PROTECTED]>
* configure.ac: Rename gc_config.h to gc_int_config.h. * gc_config.h.in: Remove. * gc_int_config.in: Generate. * Makefile.in, configure: Regenerate. * include/gc.h: Include gc_int_config.h. * include/Makefile.am (gc_config.h): New target. (stamp-h2): New stampfile target. (all-local): Always build gc_config.h. (DISTCLEANFILES): Clean up our mess. * include/Makefile.in: Regenerate. diff -Nprud /home/kcook34/gcc-orig/boehm-gc/configure.ac ./configure.ac --- /home/kcook34/gcc-orig/boehm-gc/configure.ac 2004-11-29 19:38:55.000000000 -0500 +++ ./configure.ac 2004-12-08 10:53:11.219770400 -0500 @@ -468,7 +468,7 @@ else multilib_arg= fi -AC_CONFIG_HEADERS([include/gc_config.h]) +AC_CONFIG_HEADERS([include/gc_int_config.h]) AC_CONFIG_FILES(Makefile include/Makefile) AC_OUTPUT diff -Nprud /home/kcook34/gcc-orig/boehm-gc/include/Makefile.am ./include/Makefile.am --- /home/kcook34/gcc-orig/boehm-gc/include/Makefile.am 2002-12-31 12:52:25.000000000 -0500 +++ ./include/Makefile.am 2004-12-08 13:57:28.007890600 -0500 @@ -3,5 +3,20 @@ AUTOMAKE_OPTIONS = foreign noinst_HEADERS = gc.h gc_backptr.h gc_local_alloc.h \ gc_pthread_redirects.h gc_cpp.h +all-local: gc_config.h +gc_config.h: stamp-h2 + @if test ! -f $@; then \ + rm -f stamp-h2; \ + $(MAKE) stamp-h2; \ + else :; fi +stamp-h2: gc_int_config.h + @rm -f tmp-gc-config + echo "/* include/gc_config.h Generated by include/Makefile.in */" > tmp-gc-config + echo "" >> tmp-gc-config + $(EGREP) "THREAD_LOCAL_ALLOC|GC_.*THREADS" $< >> tmp-gc-config + $(SHELL) $(top_srcdir)/../move-if-change tmp-gc-config gc_config.h + touch $@ + +DISTCLEANFILES = stamp-h2 gc_config.h diff -Nprud /home/kcook34/gcc-orig/boehm-gc/include/gc.h ./include/gc.h --- /home/kcook34/gcc-orig/boehm-gc/include/gc.h 2004-11-29 19:38:57.000000000 -0500 +++ ./include/gc.h 2004-12-08 10:53:23.376887800 -0500 @@ -30,7 +30,7 @@ # define _GC_H -# include <gc_config.h> +# include <gc_int_config.h> # include "gc_config_macros.h" # if defined(__STDC__) || defined(__cplusplus)