summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--doc/ChangeLog5
-rw-r--r--lib/ChangeLog30
-rw-r--r--m4/ChangeLog7
4 files changed, 52 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 907444862..e8d8720a8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,16 @@
-2005-11-24 Jim Meyering <jim@meyering.net>
+2005-11-25 Paul Eggert <eggert@cs.ucla.edu>
* Version 6.0-cvs.
+ * NEWS: df updates for "none", "proc", inaccessible file systems.
+ * src/df.c (show_point): Ignore inaccessible file systems.
+ (usage): -a includes dummy file systems, not size-0 file systems.
+
+ * src/od.c (unsigned_long_long_int): Renamed from ulonglong_t,
+ to avoid collision with POSIX name space. All uses changed.
+
+2005-11-24 Jim Meyering <jim@meyering.net>
+
* tests/Makefile.am (EXTRA_DIST): Add acl to the list.
* tests/acl: Add `$0: ' prefix to diagnostics.
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 65e008f1d..0f9b8eb13 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-25 Paul Eggert <eggert@cs.ucla.edu>
+
+ * coreutils.texi (df invocation): Document treatment of dummy file
+ systems better.
+
2005-11-16 Paul Eggert <eggert@cs.ucla.edu>
* coreutils.texi (ln invocation): ln -v now outputs lines only for
diff --git a/lib/ChangeLog b/lib/ChangeLog
index fb0aa04e8..7189c67f0 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,33 @@
+2005-11-25 Paul Eggert <eggert@cs.ucla.edu>
+
+ * mountlist.c (ME_DUMMY): "none" and "proc" file systems are dummies
+ too.
+
+ * mountlist.c: Include <limits.h>.
+ (dev_from_mount_options)
+ [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
+ New function. It no longer assumes "dev=" has the System V meaning
+ on Linux (since it doesn't). It also parses "dev=" more carefully.
+ (read_file_system_list)
+ [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
+ MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
+ dev= in that case.
+
+ * Makefile.am (stdbool.h): Just copy stdbool_.h; no need to sed
+ any more.
+
+ * stdbool_.h: Simplify greatly, under the assumption that these
+ days most people use C99-compatible compilers to debug, so it's
+ not worth worrying about catering to older compilers for that.
+ This works around some porting problems with HP-UX compilers.
+ (false, true) [defined __BEOS__]: Don't #undef; no longer needed.
+ (_Bool): typedef to bool if C++ or BeOS, and #define to signed char
+ otherwise.
+
+ * gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
+ Report an error at compile-time if only a 1-second nominal clock
+ resolution is found.
+
2005-11-23 Paul Eggert <eggert@cs.ucla.edu>
* Makefile.am (libcoreutils_a_SOURCES): Add buffer-lcm.c, buffer-lcm.h.
diff --git a/m4/ChangeLog b/m4/ChangeLog
index 7bb2ff3ee..b825c0a28 100644
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -1,3 +1,10 @@
+2005-11-25 Paul Eggert <eggert@cs.ucla.edu>
+
+ * stdbool.m4 (AM_STDBOOL_H): Don't bother substituting HAVE__BOOL;
+ no longer needed.
+ (gl_STDBOOL_H): New macro, from gnulib.
+ (AC_HEADER_STDBOOL): Sync with gnulib.
+
2005-11-20 Jim Meyering <jim@meyering.net>
* c.m4: Remove spurious space-before-TAB.