From: Paul Eggert Date: Sat, 26 Nov 2005 07:53:39 +0000 (+0000) Subject: Log today's changes. X-Git-Tag: v6.0~1241 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc0fa751c4500713344aaa9f148be1be6e6db2e7;p=thirdparty%2Fcoreutils.git Log today's changes. --- diff --git a/ChangeLog b/ChangeLog index 9074448625..e8d8720a83 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,16 @@ -2005-11-24 Jim Meyering +2005-11-25 Paul Eggert * 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 + * 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 65e008f1d0..0f9b8eb137 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2005-11-25 Paul Eggert + + * coreutils.texi (df invocation): Document treatment of dummy file + systems better. + 2005-11-16 Paul Eggert * coreutils.texi (ln invocation): ln -v now outputs lines only for diff --git a/lib/ChangeLog b/lib/ChangeLog index fb0aa04e86..7189c67f0c 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,33 @@ +2005-11-25 Paul Eggert + + * mountlist.c (ME_DUMMY): "none" and "proc" file systems are dummies + too. + + * mountlist.c: Include . + (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 * Makefile.am (libcoreutils_a_SOURCES): Add buffer-lcm.c, buffer-lcm.h. diff --git a/m4/ChangeLog b/m4/ChangeLog index 7bb2ff3eec..b825c0a281 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,10 @@ +2005-11-25 Paul Eggert + + * 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 * c.m4: Remove spurious space-before-TAB.