? .ChangeLog.swp ? include/private/.gc_priv.h.swp ? include/private/.gcconfig.h.swp Index: ChangeLog =================================================================== RCS file: /cvs/gcc/gcc/boehm-gc/ChangeLog,v retrieving revision 1.140.2.5 diff -u -r1.140.2.5 ChangeLog --- ChangeLog 4 Mar 2003 06:38:29 -0000 1.140.2.5 +++ ChangeLog 4 Mar 2003 17:43:55 -0000 @@ -1,3 +1,8 @@ +2003-03-04 Hans Boehm + * include/private/gcconfig.h (GC_data_start): declare when needed. + * include/private/gc_priv.h: Include gcconfig.h after ptr_t + declaration. + 2003-03-03 Hans Boehm * mark_rts.c (GC_cond_register_dynamic_libraries): add. (GC_push_roots): explicitly mark free list headers, register Index: include/private/gc_priv.h =================================================================== RCS file: /cvs/gcc/gcc/boehm-gc/include/private/gc_priv.h,v retrieving revision 1.9.20.1 diff -u -r1.9.20.1 gc_priv.h --- include/private/gc_priv.h 4 Mar 2003 06:38:30 -0000 1.9.20.1 +++ include/private/gc_priv.h 4 Mar 2003 17:43:56 -0000 @@ -44,10 +44,6 @@ # include "../gc_mark.h" # endif -# ifndef GCCONFIG_H -# include "gcconfig.h" -# endif - typedef GC_word word; typedef GC_signed_word signed_word; @@ -60,6 +56,10 @@ /* Preferably identical to caddr_t, if it */ /* exists. */ +# ifndef GCCONFIG_H +# include "gcconfig.h" +# endif + # ifndef HEADERS_H # include "gc_hdrs.h" # endif Index: include/private/gcconfig.h =================================================================== RCS file: /cvs/gcc/gcc/boehm-gc/include/private/gcconfig.h,v retrieving revision 1.26.4.2 diff -u -r1.26.4.2 gcconfig.h --- include/private/gcconfig.h 4 Mar 2003 06:38:30 -0000 1.26.4.2 +++ include/private/gcconfig.h 4 Mar 2003 17:43:56 -0000 @@ -1810,6 +1810,10 @@ /* platforms as well, though it should be avoided in win32. */ # endif /* LINUX */ +# if defined(SEARCH_FOR_DATA_START) && defined(GC_PRIVATE_H) + extern ptr_t GC_data_start; +# endif + # ifndef CLEAR_DOUBLE # define CLEAR_DOUBLE(x) \ ((word*)x)[0] = 0; \