diff --git a/ChangeLog b/ChangeLog index b9484f8d8..babef5126 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +2001-06-02 Rob Browning + + * 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 * configure.in: Check for mkstemp via AC_REPLACE_FUNCS. Thanks to diff --git a/libguile/ChangeLog b/libguile/ChangeLog index f9c1ac347..47704653f 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,20 @@ +2001-06-02 Rob Browning + + * .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 * strports.c (scm_eval_string): Use scm_primitive_eval_x instead