diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 777109326..c2ae543ac 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,13 @@ +2006-04-16 Kevin Ryde + + * filesys.c (scm_stat2scm, scm_stat, scm_lstat): Use stat or stat64. + (scm_readdir): Use readdir64. + (scm_copy_file): Use open64 and fstat64, to cope with >2Gb files. + * ports.c (scm_truncate_file): Use truncate64. Correction truncate + and ftruncate take off_t not size_t. + * _scm.h (stat_or_stat64 etc): Macros for selecting LFS64 when + available. + 2006-04-06 Kevin Ryde * fports.c (scm_setvbuf): Fix for not _IOLBF, clear SCM_BUFLINE diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index bca10a522..d7b7981af 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,8 @@ +2006-04-16 Kevin Ryde + + * tests/filesys.test (lstat, stat): New tests. + * tests/ports.test (truncate-file): New tests. + 2006-03-28 Kevin Ryde * Makefile.am (SCM_TESTS): Remove slib.test, it fails with current