1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-16 00:36:08 +02:00

Log today's changes.

This commit is contained in:
Paul Eggert
2005-11-26 07:53:39 +00:00
parent 7c69f05221
commit fc0fa751c4
4 changed files with 52 additions and 1 deletions

View File

@@ -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.

View 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

View 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.

View 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.