*** empty log message ***

This commit is contained in:
Jim Blandy 1998-10-12 21:30:41 +00:00
commit cb9728edc4
2 changed files with 27 additions and 0 deletions

View file

@ -1,3 +1,18 @@
1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
* 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 <jimb@zwingli.cygnus.com>
* acconfig.h (HAVE_RL_GETC_FUNCTION): Fix this entry.

View file

@ -1,5 +1,17 @@
1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
* 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.