1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-01 18:00:23 +02:00

*** empty log message ***

This commit is contained in:
Rob Browning 2001-06-02 20:35:27 +00:00
parent ee79b9ff89
commit 9454d8d5e7
2 changed files with 33 additions and 0 deletions

View file

@ -1,3 +1,19 @@
2001-06-02 Rob Browning <rlb@cs.utexas.edu>
* configure.in: changes for autoconf 2.50.
(AC_PREREQ): require at least autoconf 2.50.
(AC_INIT): no longer takes an arg.
(AC_CONFIG_SRCDIR): takes arg AC_INIT used to take.
(AC_STRUCT_ST_RDEV): changed -> AC_CHECK_MEMBERS.
(AC_STRUCT_ST_BLKSIZE): deprecated -> AC_CHECK_MEMBERS.
(AC_STRUCT_ST_BLOCKS): use it rather than our version.
(AC_CONFIG_FILES): now generated files go here, not in AC_OUTPUT.
(AC_CONFIG_COMMANDS): now actions go here, not in AC_OUTPUT.
(AC_OUTPUT): no longer takes args.
* acinclude.m4: AC_LANG not a variable now -- use __cplusplus
unconditionally .
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
* configure.in: Check for mkstemp via AC_REPLACE_FUNCS. Thanks to

View file

@ -1,3 +1,20 @@
2001-06-02 Rob Browning <rlb@cs.utexas.edu>
* .cvsignore: add guile_filter_doc_snarfage guile-snarf-docs
guile-snarf-docs-texi.
* fports.c: HAVE_ST_BLKSIZE changed to
HAVE_STRUCT_STAT_ST_BLKSIZE.
(scm_fport_buffer_add): HAVE_ST_BLKSIZE changed to
HAVE_STRUCT_STAT_ST_BLKSIZE.
* filesys.c (scm_stat2scm): HAVE_ST_RDEV changed to
HAVE_STRUCT_STAT_ST_RDEV.
(scm_stat2scm): HAVE_ST_BLKSIZE changed to
HAVE_STRUCT_STAT_ST_BLKSIZE.
(scm_stat2scm): HAVE_ST_BLOCKS changed to
HAVE_STRUCT_STAT_ST_BLOCKS.
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
* strports.c (scm_eval_string): Use scm_primitive_eval_x instead