1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 00:10:21 +02:00

(snarfcppopts): use DEFAULT_INCLUDES

instead of INCLUDES
This commit is contained in:
Han-Wen Nienhuys 2003-04-09 09:29:44 +00:00
parent b5331f105f
commit dff96e9567
5 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2003-02-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* gc-segment.c: add comment
2003-04-07 Rob Browning <rlb@defaultvalue.org> 2003-04-07 Rob Browning <rlb@defaultvalue.org>
* debug.h: change "id" arg name to "info_id" to avoid objective-c * debug.h: change "id" arg name to "info_id" to avoid objective-c
@ -22,6 +26,7 @@
cause trouble when included via objective-c (can't hurt, might cause trouble when included via objective-c (can't hurt, might
help). Still have usage in debug.h, though. help). Still have usage in debug.h, though.
>>>>>>> 1.1807
2003-04-06 Mikael Djurfeldt <djurfeldt@nada.kth.se> 2003-04-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
* random.c (scm_c_random_bignum): Don't generate a random number * random.c (scm_c_random_bignum): Don't generate a random number
@ -581,6 +586,7 @@
(modinclude_HEADERS): remove version.h. (modinclude_HEADERS): remove version.h.
(nodist_modinclude_HEADERS): add version.h. (nodist_modinclude_HEADERS): add version.h.
>>>>>>> 1.1805
2003-02-24 Mikael Djurfeldt <djurfeldt@nada.kth.se> 2003-02-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
This fixes a serious GC bug, introduced during the latest This fixes a serious GC bug, introduced during the latest

View file

@ -94,7 +94,7 @@ scm_i_sweep_card (scm_t_cell * p, SCM *free_list, scm_t_heap_segment*seg)
/* /*
I tried something fancy with shifting by one bit every word from I tried something fancy with shifting by one bit every word from
the bitvec in turn, but it wasn't any faster, but quite bit the bitvec in turn, but it wasn't any faster, but quite a bit
hairier. hairier.
*/ */
for (p += offset; p < end; p += span, offset += span) for (p += offset; p < end; p += span, offset += span)

View file

@ -128,6 +128,8 @@ scm_i_clear_segment_mark_space (scm_t_heap_segment *seg)
} }
/* /*
Sweep cards from SEG until we've gather THRESHOLD cells
RETURN: RETURN:
Freelist. Freelist.

View file

@ -1,3 +1,8 @@
2003-04-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* standalone/Makefile.am (snarfcppopts): use DEFAULT_INCLUDES
instead of INCLUDES
2003-04-07 Rob Browning <rlb@defaultvalue.org> 2003-04-07 Rob Browning <rlb@defaultvalue.org>
* Makefile.am (SUBDIRS): add standalone. * Makefile.am (SUBDIRS): add standalone.

View file

@ -13,7 +13,7 @@ test_cflags := \
-I$(top_srcdir) \ -I$(top_srcdir) \
-I$(top_srcdir)/libguile-ltdl -I$(top_srcdir)/libguile-ltdl
snarfcppopts = $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) snarfcppopts = $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS)
%.c.x: %.c %.c.x: %.c
${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts) ${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts)