1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-04 14:20:26 +02:00

*** empty log message ***

This commit is contained in:
Mikael Djurfeldt 1999-08-30 02:15:07 +00:00
parent 97056309c3
commit a709833577
2 changed files with 19 additions and 1 deletions

View file

@ -1,3 +1,7 @@
1999-08-30 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
* configure.in: Test for atexit.
1999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
* 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.

View file

@ -1,3 +1,17 @@
1999-08-30 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
* 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 <unistd.h>. (SEEK_SET is defined
there on sunos4.1.4.)
1999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
* numbers.c (scm_lcm): Bugfix: BIGDIG --> SCM_BIGDIG;