summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-01-07 14:03:21 +0000
committerJim Meyering <jim@meyering.net>2003-01-07 14:03:21 +0000
commitfbb3b7b80c15ff9e70bd67f8bc4fffd0a22030ec (patch)
treeddcadedfe83b40246f11b75a3fa9c4cd4cc643b1
parente76d578bad013b6ac4942b09f28f3e64b97b3e15 (diff)
downloadcoreutils-fbb3b7b80c15ff9e70bd67f8bc4fffd0a22030ec.tar.xz
*** empty log message ***
-rw-r--r--lib/ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 4a5ce4924..2345d6d6f 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,10 +1,28 @@
2003-01-06 Jim Meyering <jim@meyering.net>
+ * full-write.c: Rework so that it may serve to define full_read, too.
+ * full-read.c: Simply #define FULL_READ and include full-write.c.
+
+ * Makefile.am (libfetish_a_SOURCES): Add full-read.c and full-read.h.
+ * full-read.c, full-read.h: New files.
+
+ 2002-12-10 Paul Eggert <eggert@twinsun.com>
+ Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
+ * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
+ Choose values that are less likely to collide with system fnmatch
+ options.
+ * exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
+ defined (e.g., a pure POSIX system).
+ (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
+ instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
+
Update from gnulib.
* utime.c (utime_null): Use SAFE_READ_ERROR.
(utime_null): No need to call ftruncate if the file was nonempty.
* getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not HAVE_TM_ZONE.
* canon-host.c (strdup): Remove unused declaration.
+ * fsusage.c: Include full_read.h.
+ (get_fs_usage): Use full_read instead of safe_read.
Patches by Bruno Haible.
2003-01-04 Jim Meyering <jim@meyering.net>