From a8861fa0560e439e283e80b8804e01513f3d4af0 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 12 Jun 2000 21:27:42 +0000 Subject: [PATCH] *** empty log message *** --- ChangeLog | 2 ++ libguile/ChangeLog | 26 ++++++++++++++++++++++++++ libguile/Makefile.am | 5 ++++- 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a490fe3a5..35cd52193 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-06-12 Mikael Djurfeldt + * libguile.h: Removed #include "libguile/kw.h". + * Makefile.am (ACLOCAL): Define as ./guile-aclocal.sh. (The rule will cd to $(top_srcdir).) diff --git a/libguile/ChangeLog b/libguile/ChangeLog index a6ea444b9..7920a9a4c 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,31 @@ 2000-06-12 Mikael Djurfeldt + * iselect.c (SCM_NLONGBITS): Add workaround for the Sun 4.2 + compiler. + + * inet_aton.c (inet_aton): Cast init value for `cp'. + + * ramap.c (s_scm_array_fill_x): Cast `ve' properly in case + `scm_tc7_uvect'. + + * symbols.c (scm_intern_obarray_soft, + scm_sysintern0_no_module_lookup): Cast `name' to unsigned char ptr + in calls to scm_strhash. + + * strports.c (st_resize_port): Substituted SCM_UCHARS for + SCM_CHARS. + (st_write): Cast argument to strncpy to char ptr. + (scm_mkstrport): Substituted SCM_ROUCHARS for SCM_ROCHARS. + (scm_strport_to_string): Cast argument to scm_makfromstr to char + ptr. + + * ports.c (scm_ungetc): Cast value to unsigned char ptr before + storing in putback_buf. + (scm_unread_string): Substituted SCM_ROCHARS for SCM_ROUCHARS. + + * ioext.c (s_scm_read_line): Cast result of call to + scm_do_read_line to unsigned char ptr. + * gdbint.c (SEND_STRING): Cast argument to char pointer. * fports.c (fport_flush): Declare `ptr' as unsigned char (was diff --git a/libguile/Makefile.am b/libguile/Makefile.am index a6dd5b2fb..289843a90 100644 --- a/libguile/Makefile.am +++ b/libguile/Makefile.am @@ -93,7 +93,10 @@ EXTRA_libguile_la_SOURCES = _scm.h \ filesys.c posix.c net_db.c socket.c \ ramap.c unif.c debug-malloc.c -OMIT_DEPENDENCIES = libguile.h ltdl.h +## In next release, threads will be factored out of libguile. +## Until then, the machine specific headers is a temporary kludge. +OMIT_DEPENDENCIES = libguile.h ltdl.h \ + axp.h hppa.h i386.h ksr.h m88k.h mips.h sparc.h vax.h ## This is kind of nasty... there are ".c" files that we don't want to ## compile, since they are #included in threads.c. So instead we list