]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Log today's changes.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 26 Nov 2005 07:53:39 +0000 (07:53 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 26 Nov 2005 07:53:39 +0000 (07:53 +0000)
ChangeLog
doc/ChangeLog
lib/ChangeLog
m4/ChangeLog

index 9074448625cdc913fac7178c83152f39b40f099e..e8d8720a831129ca9207f39eca1f854f392ebad2 100644 (file)
--- 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.
 
index 65e008f1d060f8fb51bebcc305f0153348a93b74..0f9b8eb13765f6fc8051cfe603d4629a5d1d4f72 100644 (file)
@@ -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
index fb0aa04e86f3e3b39dd9467bc8dad68e4fceae17..7189c67f0c736cebe07382fac00449d4bc80a44d 100644 (file)
@@ -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.
index 7bb2ff3eece41fc753e89c39ad20cc859816b6c9..b825c0a28113da75b25afb5d389790008e9d8f7f 100644 (file)
@@ -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.