diff --git a/ChangeLog b/ChangeLog index 2a49f413c..fff10038d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-08-30 Mikael Djurfeldt + + * configure.in: Test for atexit. + 1999-08-29 Mikael Djurfeldt * acinclude.m4: Updated. (Thanks to Karl Eichwalder.) @@ -5,7 +9,7 @@ * configure.in: Test for presence of S_ISLNK in sys/stat.h. (Thanks to Bernard Urban.) Test for memmove and bcopy. (Thanks to -po suzukis@file.phys.tohoku.ac.jp.) + suzukis@file.phys.tohoku.ac.jp.) * acconfig.h: Added HAVE_S_ISLNK. diff --git a/libguile/ChangeLog b/libguile/ChangeLog index d32c5da61..320574c3e 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,17 @@ +1999-08-30 Mikael Djurfeldt + + * gc.c (scm_init_storage): Skip registration of cleanup on systems + which lack atexit. (Is it important that cleanup is made + properly? Maybe we should replace all `exit' with `scm_exit' and + call cleanup there?) + + * struct.c, struct.h (scm_struct_free_0, scm_struct_free_light, + scm_struct_free_standard, scm_struct_free_entity): Declared to + return scm_sizet instead of size_t. + + * gdbint.c, strports.c: #include . (SEEK_SET is defined + there on sunos4.1.4.) + 1999-08-29 Mikael Djurfeldt * numbers.c (scm_lcm): Bugfix: BIGDIG --> SCM_BIGDIG;