diff --git a/ChangeLog b/ChangeLog index fb8525da0..7baad3937 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +1998-10-12 Jim Blandy + + * configure: Regenerated. + + * configure.in (GUILE_FUNC_DECLARED): Name the cache variables + starting with guile_cv_; ac_cv_ is autoconf's namespace. + + The type of the argument to usleep varies from system to system, + as does the return type. We really shouldn't be redefining usleep + at all, but I don't have time to clean that up before the 1.3 + release. It's on the schedule for afterwards. + * configure.in: Cache results from usleep return value test. + Test for the type of the usleep argument, and cache that too. + * acconfig.h (USLEEP_ARG_TYPE): New macro. + 1998-10-11 Jim Blandy * acconfig.h (HAVE_RL_GETC_FUNCTION): Fix this entry. diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 9e2cbbcb3..4df8f1bde 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,17 @@ 1998-10-12 Jim Blandy + * threads.c: Doc fix. + + The argument type of usleep varies from system to system, + as does the return type. We really shouldn't be redefining usleep + at all, but I don't have time to clean that up before the 1.3. + release. It's on the schedule for afterwards. (Thanks to Julian + Satchell.) + * coop.c (usleep): Use USLEEP_ARG_TYPE in prototype and + definition. + * scmsigs.c (usleep): Use USLEEP_ARG_TYPE in prototype. + * scmconfig.h: Regenerated. + * simpos.c (scm_software_type): Procedure deleted. This isn't the right way to handle system variation. Autoconf's approach is the way and the light.