* Makefile.maint (my-distcheck): Skip the c99/c89 check if there's no such .diff...
[coreutils.git] / ChangeLog
blob17c5c0739144ba163f0244fb81bf3c9fe2e404e7
1 2007-03-02  Jim Meyering  <jim@meyering.net>
3         Remove another coreutils-ism.  Formatting cleanup.
4         * Makefile.maint (my-distcheck): Update an outdated comment.
5         (emit_upload_commands): Use $(PACKAGE) rather than "coreutils".
6         (my-distcheck): Skip the c99/c89 check if there's no such .diff file.
8 2007-03-01  Jim Meyering  <jim@meyering.net>
10         * Makefile.maint (warn_cflags): Hoist, adding "-Dlint -O".
11         (my-distcheck): Use the new variable, instead of too-long literal.
13         Make "make syntax-check" rules less coreutils-specific.
14         * Makefile.maint (sc_cast_of_x_alloc_return_value): Use CVS_LIST_EXCEPT.
15         (sc_cast_of_alloca_return_value): Likewise.
16         (sc_root_tests): Do nothing if there is no check-root target
17         in tests/Makefile.am.
19         Run the writable-files check only for release-building targets.
20         * Makefile.maint (local-checks-available): Remove writable-files.
21         (alpha beta major): Put it here, instead.
23         "make syntax-check" now runs only Makefile.cfg-selected tests
24         * Makefile.maint (syntax-check-rules): Hoist this definition so that
25         it precedes the indirect use in the definition of $(local-check).
26         (local-check): Use :=, not just "=".
27         (syntax-check): Depend on $(local-check), not $(syntax-check-rules).
29 2007-02-28  Bruno Haible  <bruno@clisp.org>
31         * bootstrap.conf (gnulib_modules): Replace xreadlink with
32         xreadlink-with-size. Add xreadlink.
33         * src/copy.c (copy_internal): Update.
34         * src/ls.c (is_directory): Update.
35         * src/stat.c (print_stat): Update.
36         * src/readlink.c (main): Use the one-argument xreadlink function.
38 2007-02-28  Paul Eggert  <eggert@cs.ucla.edu>
40         * doc/coreutils.texi (Common options): --si outputs "M", not "MB".
41         Problem reported by Philip Rowlands in
42         <http://lists.gnu.org/archive/html/bug-coreutils/2007-02/msg00283.html>.
44 2007-02-28  Jim Meyering  <jim@meyering.net>
46         * .x-sc_file_system: Add the new test, tests/misc/df-P, to this
47         list of exceptions, for the "make distcheck" sc_file_system rule.
49         * Makefile.maint (gnulib_snapshot_date): Remove now-unused definition.
51 2007-02-27  Paul Eggert  <eggert@cs.ucla.edu>
53         Make df -P immune to effects of e.g., the BLOCK_SIZE envvar.
54         * NEWS: With -P, the default block size and output format is not
55         affected by DF_BLOCK_SIZE, BLOCK_SIZE, or BLOCKSIZE.
56         * src/df.c (main): Implement this.
58 2007-02-27  Jim Meyering  <jim@meyering.net>
60         Add a test for the above.
61         * tests/misc/df-P: New file.
62         * tests/misc/Makefile.am (TESTS): Add df-P.
64 2007-02-25  Jim Meyering  <jim@meyering.net>
66         * Makefile.maint (announcement): Adjust so that it works with
67         announce-gen's --gnulib-snapshot-time-stamp option.
68         Indent one of the command lines using TAB, not 8 spaces.
70         Post-release version change.
71         * NEWS: Add a line for 6.8+.
72         * configure.ac (AC_INIT): Set new version string.
74 2007-02-24  Jim Meyering  <jim@meyering.net>
76         Version 6.8.
77         * NEWS: Record release date and new version number.
78         * configure.ac (AC_INIT): New version number.
80         Don't skip this test on new-enough Linux/GNU systems.
81         * tests/misc/pwd-unreadable-parent: Test $REPLACE_GETCWD = 0,
82         rather than for __GETCWD_PREFIX in config.h (the latter is no
83         longer defined, ever, due to gnulib changes).
84         * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Define REPLACE_GETCWD.
86         Remove the "gnits" option; it prohibits my using "+" as a version
87         string suffix, and all it does (beyond the default "gnu" option)
88         is to _require_ the THANKS file.
89         * configure.ac (AM_INIT_AUTOMAKE): Remove it.
91         Remove all AUTOMAKE_OPTIONS settings in Makefile.am files.
92         * tests/chgrp/Makefile.am, tests/chmod/Makefile.am:
93         * tests/chown/Makefile.am, tests/cp/Makefile.am:
94         * tests/du/Makefile.am, tests/expr/Makefile.am:
95         * tests/factor/Makefile.am, tests/general/Makefile.am:
96         * tests/install/Makefile.am, tests/ln/Makefile.am:
97         * tests/ls/Makefile.am, tests/mkdir/Makefile.am:
98         * tests/mv/Makefile.am, tests/readlink/Makefile.am:
99         * tests/rm/Makefile.am, tests/rmdir/Makefile.am:
100         * tests/seq/Makefile.am, tests/stty/Makefile.am:
101         * tests/tee/Makefile.am, tests/touch/Makefile.am:
103         * README: Document the OSF/1 4.0d build failure and work-around.
104         Reported by Bruno Haible.
106         * NEWS: Use a simple "+" suffix to denote pre-release, not "-dirty".
107         Nicer connotations.
108         * configure.ac: Use 6.7+, not 6.7-dirty.
110 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
112         * NEWS: sort no longer compresses temporaries by default.
113         * bootstrap.conf: Remove findprog.
114         * doc/coreutils.texi (sort invocation): The default is to not
115         compress.  Don't treat "" specially.
116         * src/sort.c: Don't include findprog.h.
117         (create_temp): Compress only if the user specified --compress-program.
118         * tests/misc/sort-compress: Adjusts tests to match new behavior.
120 2007-02-24  Jim Meyering  <jim@meyering.net>
122         Avoid a shell syntax error, when building with an inadequate Perl.
123         * man/Makefile.am (.x.1): Add quotes around $(PERL) in case, since
124         it can expand to "/.../missing perl".
126         * man/Makefile.am (.x.1): Warn when unable to update a man page.
127         Suggestion from Bruno Haible.
129 2007-02-23  Bruno Haible  <bruno@clisp.org>
131         Handle better the combination of old Perl and a pre-c99 compiler.
132         * man/Makefile.am (.x.1): If the autoconf test has determined that
133         perl is missing or not a sufficient version, do nothing.
135         * tests/readlink/can-e: Put the closing double-quote at the end of a
136         backquoted word, not in the middle. Works around a bug in sh on
137         OSF/1 4.0d.
138         * tests/readlink/can-f: Likewise.
139         * tests/readlink/can-m: Likewise.
141         * tests/du/slink: Skip the test if executing on an nfsv3 file system.
142         This avoids a test failure at least on OSF/1 4.0d.
144 2007-02-23  Jim Meyering  <jim@meyering.net>
146         * src/date.c (usage): Split a diagnostic that had grown to be
147         longer than the C89 maximum of 509 bytes.
149 2007-02-23  Ed Santiago <ed@edsantiago.com>
151         * src/date.c (usage): Mention that --rfc-3339 uses space, not 'T',
152         for a separator.  Include sample RFC 2822 and 3339 output.
154 2007-02-23  Jim Meyering  <jim@meyering.net>
156         With -Dlint, make shuf free all heap-allocated storage.
157         * src/shuf.c (main): Move declaration of input_lines to
158         function scope, and initialize to NULL, so we can free it.
159         [lint]: Free all malloc'd memory.
160         * tests/misc/shuf: Also test shuf's -e and -i options.
162 2007-02-22  Jim Meyering  <jim@meyering.net>
164         Merge in a change from some other incarnation of this file (gzip?)
165         * bootstrap (gnulib_tool): Skip get_translations if there is no po/ dir.
167         Adjust preceding change not to perform an unaligned access.
168         * src/copy.c (copy_reg): Undo previous change.  Instead, make
169         it clearer that we're using a single-byte sentinel, and
170         [lint]: Initialize sizeof (uintptr_t) - 1 bytes after the sentinel.
171         Reported by Andreas Schwab.
173         Placate valgrind, wrt ./cp --sparse=always
174         * src/copy.c (copy_reg): Place the sentinel by setting a
175         full word's worth of bits, not just a single byte's worth.
176         This avoids a harmless (but distracting) case of memory being
177         used-uninitialized.
179 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
181         Honor dd's noatime flag if possible, even if not supported on build fs
182         * doc/coreutils.texi (dd invocation): Warn that noatime might not be
183         reliable.
184         * src/dd.c (flags, usage): Look at O_NOATIME, not
185         HAVE_WORKING_O_NOATIME, to decide whether to support the noatime
186         flag, so that dd attempts O_NOATIME even if the build file system
187         does not support it.  Problem reported by Jim Meyering today in
188         bug-coreutils.
189         * tests/dd/misc: Generate a warning, not a failure, if noatime
190         exists but fails.
192 2007-02-21  Jim Meyering  <jim@meyering.net>
194         * tests/misc/date: Remove vestigial use of Data::Dumper.
196 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
198         * src/copy.c (cached_umask): Cast -1 to mode_t to avoid a warning
199         about out-of-range initializer with Sun C 5.8.
201 2007-02-20  Jim Meyering  <jim@meyering.net>
203         * bootstrap (CVS_only_file): Use README-hacking.
205         Now that we use GIT, not cvs, rename README-cvs.
206         * README-hacking: Renamed from...
207         Update to reflect that we now use git.
209         * README-cvs: ...this.
211         * src/env.c (main): When invoked with no arguments (i.e. when printing
212         the environment), use a local variable to iterate through the global
213         "environ" array, rather than "environ" itself.  This is solely to
214         avoid changing the environment for an LD_PRELOAD-substituted "puts"
215         or "exit" function.  Tiny patch by Harvey Eneman.  See
216         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/9735>.
217         * THANKS: Update.
219         * bootstrap: Move definitions of temporary directory names and the
220         new bt_regex "up" to precede all uses, so it's clearer what their
221         scope is.  Also, use [.], rather than \\., since the former works
222         even if eval'd.
224         * bootstrap: Remove occurrences of $bt (._bootmp) from lib/Makefile.
225         Based on the bison 2007-02-19 change by Joel E. Denny.
227 2007-02-19  Paul Eggert  <eggert@cs.ucla.edu>
229         * NEWS: sort now uses a --compress-program option rather than
230         an environment variable.
231         * doc/coreutils.texi (sort invocation): Document this.
232         * src/sort.c (usage): Likewise.
233         (COMPRESS_PROGRAM_OPTION): New const.
234         (long_options, create_temp, main): Support new option.
235         * tests/misc/sort-compress: Test it.
237 2007-02-19  Jim Meyering  <jim@meyering.net>
239         * bootstrap: Fix typo s/dowloading/downloading/ in --help output.
241 2007-02-18  Jim Meyering  <jim@meyering.net>
243         * src/system.h: Don't include exit.h, now that it's subsumed
244         by the gnulib-generated stdlib.h.
246         * tests/rm/fail-eacces: Skip this test when running as root.
247         Reported by Matthew Woehlke.
249         * bootstrap: Use "._bootmp" as the temporary directory name,
250         not ".#bootmp".  The latter's "#" caused trouble with the new,
251         gnulib-added "LINK_WARNING_H = $(top_srcdir)/.#bootmp/..." line.
253 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
255         * bootstrap.conf (gnulib_modules): Add c-strcase.  Remove strcase.
256         * src/dircolors.c: Include c-strcase.h.
257         (dc_parse_stream): Use c_strcasecmp rather than
258         strcasecmp to avoid unreliable results in locales like Turkish
259         where strcasecmp is incompatible with the C locale.
261 2007-02-13  Jim Meyering  <jim@meyering.net>
263         Also check for and print stderr output, in case a program fails.
264         * tests/misc/tty-eof: Occasionally (not reproducible), this
265         test would fail, with one or more programs exiting nonzero, e.g.,
266         tty-eof: sha224sum exited with status 1 (expected 0)
267         Now, maybe we'll get a clue, the next time that happens.
269 2007-02-12  Jim Meyering  <jim@meyering.net>
271         * .x-sc_useless_cpp_parens: Ignore a false-positive in a shell script.
273         * tests/misc/pwd-unreadable-parent: Skip the test if we're
274         definitely using the replacement.
275         * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Define CONFIG_HEADER.
277 2007-02-10  Jim Meyering  <jim@meyering.net>
279         Remove excess leading spaces that would make help2man misbehave.
280         * src/printf.c (usage): Remove excess spaces on 2nd line of %b desc.
281         * src/nl.c (usage): Remove excess spaces on 2nd line of pBRE desc.
282         * src/dd.c (usage): Remove excess spaces on 2nd line of sync desc.
283         * src/date.c (usage): Use two spaces after each optional flag, not one.
284         Reported by Thomas Huriaux in <http://bugs.debian.org/410407>.
286         * Makefile.maint (longopt_re): Relax the regexp, making square
287         brackets optional, so it matches the newly reported violations, too.
289         * src/csplit.c (usage): Use two spaces (not one) to separate
290         each option string from its description, so help2man formats
291         the derived man page properly.  Reported by Thomas Huriaux in
292         <http://bugs.debian.org/410407>.
293         * src/df.c (usage): Likewise.
294         * src/du.c (usage): Likewise.
295         * src/install.c (usage): Likewise.
296         * src/ls.c (usage): Likewise.
298 2007-02-03  Jim Meyering  <jim@meyering.net>
300         Test for today's gnulib/lib/getcwd.c fix affecting pwd and readlink
301         * NEWS: Mention the bug fix.
302         * tests/misc/pwd-unreadable-parent: New file.
303         * tests/misc/Makefile.am (TESTS): Ad pwd-unreadable-parent.
305 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
307         * NEWS: Document fix for cp --preserve=mode.
308         * src/copy.c (copy_internal): Omit the group- or other-writeable
309         permissions when creating a directory, to avoid a race condition
310         if the special mode bits aren't right just after the directory is
311         created.
312         * src/cp.c (make_dir_parents_private): Likewise.
313         * tests/cp/parent-perm-race: Test for the "cp --preserve=mode"
314         race fix in copy.c.
316         * NEWS: Document fix for cp --parents.
317         * src/cp.c (make_dir_parents_private): Report the error sooner with
318         "cp --parents DIR/FILE DEST" when DIR is a non-directory, thus not
319         creating the directory, DEST/DIR.
320         * tests/cp/cp-parents: Test for the non-race-condition bug fixed
321         by the above change.
323 2007-02-02  Jim Meyering  <jim@meyering.net>
325         * src/nl.c (proc_text): Use "NULL", not "(struct re_registers *) 0".
327         * src/c99-to-c89.diff: Make shred.c Index: and a/b prefixes
328         consistent, so this can be applied with patch -p0.
329         Reported by Matthew Woehlke.
331         * Makefile.maint (patch-check): Use patch with its -p2 option,
332         since that makes this check slightly more strict.
334 2007-01-29  Jim Meyering  <jim@meyering.net>
336         Plug a leak in ls.
337         * src/ls.c (print_dir): Don't leak a "DIR"+fd upon failure to
338         determine dev/inode or upon detecting a symlink loop.
340         * src/ls.c: Rename three global variables.
341         (cwd_file): Rename from 'files'.
342         (cwd_n_alloc): Rename from 'nfiles'.
343         (cwd_n_used): Rename from 'files_index'.
345         Shave 8 bytes off the size of "struct fileinfo".
346         * src/ls.c (fileinfo): Put all members of type "bool" together.
348 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
350         Modify "ls" to sort its data faster, using the new gnulib mpsort
351         module rather than qsort.  This is particularly a win in
352         environments where strcoll is slow, since mpsort typically calls
353         strcoll less often than qsort does.
354         * bootstrap.conf (gnulib_modules): Add mpsort.
355         * src/ls.c: Include mpsort.h.
356         (sorted_file, sorted_file_alloc): New vars, for a new vector of
357         pointers to the file info, for speed.
358         (clear_files, extract_dirs_from_files, sort_files, print_current_files):
359         (print_many_per_line, print_horizontal, print_with_commas):
360         (calculate_columns): Set and use new vector.
361         (initialize_ordering_vector): New function.
363 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
365         Adjust to today's change to gnulib, which added a module for
366         string.h to replace the little include files like strcase.h.
367         * src/dircolors.c: Don't include strcase.h.
368         * src/system.h: Don't include mempcpy.h, memrchr.h, stpcpy.h, strpbrk.h.
370 2007-01-26  Jim Meyering  <jim@meyering.net>
372         * src/dd.c (advance_input_after_read_error): Change diagnostic to
373         say "invalid file offset" rather than "screwy file offset".
375         * .x-sc_cast_of_argument_to_free: Remove this file.
376         * Makefile.am (EXTRA_DIST): Likewise.
378 2007-01-25  Dan Hipschman  <dsh@linux.ucla.edu>
380         * src/sort.c (create_temp): Remove superfluous access-X_OK
381         check.  find_in_path does this for us.
383 2007-01-24  Jim Meyering  <jim@meyering.net>
385         Remove usually-skipped test.
386         * tests/cp/open-perm-race: Remove this file.  It is subsumed
387         by parent-perm-race.
388         * tests/cp/Makefile.am (TESTS): Remove open-perm-race.
389         * tests/sort/Makefile.am: Regenerate.
391         Pass "make distcheck" again.
392         * src/sort.c (usage): Split a diagnostic that had grown to be
393         longer than the C89 maximum of 509 bytes.
394         * .x-sc_cast_of_argument_to_free: New file.  Allow a cast in sort.c.
395         FIXME: this is just temporary, while we wait to remove the offending
396         access-calling code.
397         * Makefile.am (EXTRA_DIST): Add .x-sc_cast_of_argument_to_free.
398         * Makefile.maint (sc_cast_of_argument_to_free): Use the
399         canonical, $$($(CVS_LIST_EXCEPT)).
400         * m4/.gitignore, m4/.cvsignore, lib/.gitignore, lib/.cvsignore: Update.
402 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
404         * NEWS: New option sort -C, proposed by XCU ERN 127, which looks
405         like it will be approved.  Also add --check=quiet, --check=silent
406         as long aliases, and --check=diagnose-first as an alias for -c.
407         * doc/coreutils.texi (sort invocation): Document this.
408         Also, mention that sort -c can take at most one file.
409         * src/sort.c: Implement this.
410         Include argmatch.h.
411         (usage): Document the change.
412         (CHECK_OPTION): New constant.
413         (long_options): --check now takes an optional argument, and is now
414         treated differently from 'c'.
415         (check_args, check_types): New constant arrays.
416         (check): New arg CHECKONLY, which suppresses diagnostic if -C.
417         (main): Parse the new options.
418         * tests/sort/Test.pm (02d, 02d, incompat5, incompat6):
419         New tests for -C.
421 2007-01-24  Jim Meyering  <jim@meyering.net>
423         Fix a typo.
424         * tests/misc/sort-compress: Use $abs_top_builddir, not $top_builddir.
425         * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Likewise.
427         Don't depend on "which".
428         * tests/misc/sort-compress (SORT): Use $abs_builddir, now which.
429         * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Export top_builddir.
431 2007-01-24  Dan Hipschman  <dsh@linux.ucla.edu>
433         Test sort compression.
434         * tests/misc/Makefile.am: Add the test.
435         * tests/misc/sort-compress: New file containing the tests.
437 2007-01-24  Jim Meyering  <jim@meyering.net>
439         * NEWS: sort temp file compression: tweak wording.
440         * src/sort.c (struct sortfile) [name]: Declare member to be const.
442 2007-01-21  Jim Meyering  <jim@meyering.net>
444         * src/sort.c (MAX_FORK_RETRIES_COMPRESS, MAX_FORK_RETRIES_DECOMPRESS):
445         In pipe_fork callers, use these named constants, not "2" and "8".
446         (proctab, nprocs): Declare to be "static".
447         (pipe_fork) [lint]: Initialize local, pid,
448         to avoid unwarranted may-be-used-uninitialized warning.
449         (create_temp): Use the active voice.  Describe parameters, too.
451 2007-01-21  James Youngman  <jay@gnu.org>
453         Centralize all the uses of sigprocmask().  Don't restore an invalid
454         saved mask.
455         * src/sort.c (enter_cs, leave_cs): New functions for protecting
456         code sequences against signal delivery.
457         * (exit_cleanup): Use enter_cs and leave_cs instead of
458         calling sigprocmask directly.
459         (create_temp_file, pipe_fork, zaptemp): Likewise
461 2007-01-21  Dan Hipschman  <dsh@linux.ucla.edu>
463         Add compression of temp files to sort.
464         * NEWS: Mention this.
465         * bootstrap.conf: Import findprog.
466         * configure.ac: Add AC_FUNC_FORK.
467         * doc/coreutils.texi: Document GNUSORT_COMPRESSOR environment
468         variable.
469         * src/sort.c (compress_program): New global, holds the name of the
470         external compression program.
471         (struct sortfile): New type used by mergepfs and friends instead
472         of filenames to hold PIDs of compressor processes.
473         (proctab): New global, holds compressor PIDs on which to wait.
474         (enum procstate, struct procnode): New types used by proctab.
475         (proctab_hasher, proctab_comparator): New functions for proctab.
476         (nprocs): New global, number of forked but unreaped children.
477         (reap, reap_some): New function, wait for/cleanup forked processes.
478         (register_proc, update_proc, wait_proc): New functions for adding,
479         modifying and removing proctab entries.
480         (create_temp_file): Change parameter type to pointer to file
481         descriptor, and return type to pointer to struct tempnode.
482         (dup2_or_die): New function used in create_temp and open_temp.
483         (pipe_fork): New function, creates a pipe and child process.
484         (create_temp): Creates a temp file and possibly a compression
485         program to which we filter output.
486         (open_temp): Opens a compressed temp file and creates a
487         decompression process through which to filter the input.
488         (mergefps): Change FILES parameter type to struct sortfile array
489         and update access accordingly.  Use open_temp and reap_some.
490         (avoid_trashing_input, merge): Change FILES parameter like
491         mergefps and call create_temp instead of create_temp_file.
492         (sort): Call create_temp instead of create_temp_file.
493         Use reap_some.
494         (avoid_trashing_input, merge, sort, main): Adapt to mergefps.
496 2007-01-20  Jim Meyering  <jim@meyering.net>
498         * tests/misc/pwd-long: Work properly even when run from the
499         wrong one of two or more bind-mounted sibling directories.
500         Suggestion from Mike Stone in <http://bugs.debian.org/380552>.
502 2007-01-20  Paul Eggert  <eggert@cs.ucla.edu>
504         Standardize on list of signals when an app catches signals.
505         * src/csplit.c (main): Also catch SIGALRM, SIGPIPE, SIGPOLL,
506         SIGPROF, SIGVTALRM, SIGXCPU, SIGXFSZ.
507         * src/ls.c (main): Likewise (except SIGPIPE was already caught).
508         Note that ls.c is special, as it also catches SIGTSTP.
509         * src/sort.c (main): Likewise.  Also catch SIGQUIT.  More details in
510         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/9510>.
512 2007-01-19  Dan Hipschman  <dsh@linux.ucla.edu>
513         and Paul Eggert  <eggert@cs.ucla.edu>
515         * src/sort.c (cleanup): Clear temphead at the end.
516         (exit_cleanup): New function.
517         (main): Don't invoke atexit until we're ready.
518         Invoke it with exit_cleanup, not with cleanup and close_stdout,
519         to avoid a race condition with cleanup and signal handling.  More
520         details: http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/9508
522 2007-01-18  Jim Meyering  <jim@meyering.net>
524         * src/c99-to-c89.diff: Adjust remove.c offsets.
526 2007-01-17  Jim Meyering  <jim@meyering.net>
528         Make "rm --interactive=never ..." never prompt.
529         * NEWS: Mention this.
530         * src/remove.h (enum rm_interactive): New ternary type.
531         (struct rm_options) [interactive]: Use it, here -- rather than bool.
532         * src/remove.c (prompt): Reflect type change.
533         * src/mv.c (rm_option_init): Initialize to RMI_NEVER now.
534         * src/rm.c (main): Add a FIXME comment for '-d' option.
535         Adapt to type change of rm_options.interactive.
537         * tests/rm/i-never: New file.  Test for the above fix.
538         * tests/rm/Makefile.am (TESTS): Add i-never.
540 2007-01-15  Jim Meyering  <jim@meyering.net>
542         * bootstrap (gnulib_tool): When adding to .cvsignore and .gitignore,
543         emit foo.h, for each foo_.h.  This yields one false-positive, fts.h,
544         but that's ok, since fts_.h will eventually be renamed.
546         * src/remove.c (remove_dir): Don't use errno in diagnostic.
547         Root-only test failure reported by Alex van Hout and Jon Grosshart in
548         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/9415/focus=9415>.
550         * bootstrap.conf (avoided_gnulib_modules): Fix my typo:
551         s/--avoid=canonicalize-lgpl/--avoid=canonicalize-gpl/
553 2007-01-14  Bruno Haible  <bruno@clisp.org>
555         Enable use of gnulib's new fchdir module.
556         * bootstrap.conf (avoided_gnulib_modules): Avoid canonicalize-lgpl,
557         since we use canonicalize.
558         (gnulib_modules): Add fchdir.
559         * m4/jm-macros.m4 (coreutils_MACROS): Remove fchdir-stub.
561 2007-01-13  Jim Meyering  <jim@meyering.net>
563         * Transform all Makefile.am files so that when running "make check",
564         CU_TEST_NAME is set to the name of the test.  This is so that when I
565         run valgrind-enabled (--log-file-qualifier=CU_TEST_NAME) "make check"
566         on the entire package it is more convenient to map a leak or error
567         found in a valgrind log file back to the offending test.
568         Use this command:
569         (echo tests/Makefile.am.in; find tests -name Makefile.am) \
570          |xargs perl -pi -e '/^(\s*)PATH=...VG_PATH_PREFIX/ and ' \
571            -e 'print $1,q|CU_TEST_NAME=`basename $(abs_srcdir)`,$$tst |,"\\\n"'
573 2007-01-11  Jim Meyering  <jim@meyering.net>
575         Avoid a leak in expr's implementation of the ":" (match) operator.
576         * src/expr.c (docolon): Free the regexp buffer using regfree, rather
577         than doing it manually, being careful to set fastmap to NULL first.
578         Free any re_regs.start and .end members, if necessary.
580         * tests/misc/test-diag: Work also when libc's error function
581         reports the entire program name ("../../src/test"), rather than
582         just the final component.
584 2007-01-10  Jim Meyering  <jim@meyering.net>
586         Don't use fts_statp uninitialized for "chown -RLh --preserve-root ...".
587         * src/chown-core.c (FTSENT_IS_DIRECTORY): New macro.
588         (change_file_owner): Perform the ROOT_DEV_INO_CHECK only for a
589         directory.  Non-directory entries lack fts_statp data when using
590         the FTS_NOSTAT option.
592 2007-01-07  Jim Meyering  <jim@meyering.net>
594         * tests/sample-test: Update copyright date to 2007.
595         * Makefile.maint (copyright-check): Also check the copyright date
596         in tests/sample-test.
598 2007-01-06  Jim Meyering  <jim@meyering.net>
600         * tests/fmt/basic (pfx-only, pfx-of-pfx): New tests,
601         based on examples from G.P. Halkes in
602         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9388>.
604 2007-01-06  G.P. Halkes  <buscom@ghalkes.nl>
606         * src/fmt.c (copy_rest): Correct prefix handling.
607         Don't elide a line with the prefix followed by only white space.
608         (get_line): Move EOF-check to loop-termination condition.
609         * tests/fmt/basic (pfx-1): Adjust test to expect desired result.
610         (pfx-2): Remove test; its premise was contrary to the documentation.
612 2007-01-05  Jim Meyering  <jim@meyering.net>
614         Avoid a used-uninitialized bug for invalid input, i.e., when the size
615         of the input, not counting newlines, is 1 % 4.
616         * gl/lib/base64.c (base64_decode): Don't hard-code inlen==4.
617         It may be smaller when flushing.
619 2007-01-05  Mike Frysinger  <vapier@gentoo.org>
621         * src/dircolors.hin: Add a TERM directive for cons25.
623 2007-01-04  Jim Meyering  <jim@meyering.net>
625         * Makefile.cfg (local-checks-to-skip): Skip strftime-check, in
626         case you don't have convenient access to glibc info documentation.
628         Use the release year, not the current year.
629         * src/groups.sh (version): Use a better name: @RELEASE_YEAR@.
630         * src/Makefile.am (RELEASE_YEAR): Define it.
631         (.sh): Use it.
632         Thanks to a prod from Eric Blake.
634         Ensure that "group --version" always prints the current year.
635         * src/groups.sh (version): Use @CURRENT_YEAR@, rather than 2006.
636         * src/Makefile.am (.sh): Also substitute for @CURRENT_YEAR@.
637         Suggestion from Eric Blake.
639         When decoding, always allow newlines in input, with almost no
640         performance impact.
641         * src/base64.c (do_decode): Initialize decode context.
642         Call base64_decode one more time, after all input is processed.
643         (usage): When decoding, newlines are always accepted.
645         * tests/misc/base64: Add a bunch of tests, for the above.
646         * gl/lib/base64.c: Include <string.h>.
647         (base64_decode_ctx_init, get_4, decode_4): New functions.
648         (base64_decode): Efficiently handle interspersed newlines.
649         (base64_decode_alloc): Update signature.
650         * gl/lib/base64.h (struct base64_decode_context): Define.
651         (base64_decode_ctx_init): Add prototype.
652         (base64_decode, base64_decode_alloc): Update prototypes.
654         * gl/lib/base64.c: Copied from gnulib.
655         * gl/lib/base64.h: Likewise.
657 2007-01-03  Jim Meyering  <jim@meyering.net>
659         * THANKS: Add Evan Hunt.
661 2007-01-03  Bruno Haible  <bruno@clisp.org>
663         Avoid spurious test failures on MacOS X 10.3.9, in a German locale.
664         * tests/chown/deref: Apply lang-default.
665         * tests/misc/split-a: Likewise.
666         * tests/mv/reply-no: Likewise.
668         * src/copy.c (copy_internal): Use mkfifo as a fallback if mknod fails.
669         Needed on MacOS X.
671 2007-01-02  Paul Eggert  <eggert@cs.ucla.edu>
673         Now, "ls -FRL" always follows symbolic links on Linux.
674         * NEWS: Mention this bug fix.
675         * src/ls.c (gobble_file): Fix bug reported by
676         Nobuyuki Tsuchimura in
677         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00152.html
678         where "ls -FRL" didn't follow a symbolic link in some cases on Linux.
679         * tests/ls/follow-slink: Add a test for this case.
681 2007-01-01  Jim Meyering  <jim@meyering.net>
683         * tests/rm/fail-eperm: Revert last change.  The PATH=... setting
684         is not honored at least on HP-UX 11.23 systems.
685         Instead, simply transform the actual output diagnostic.
686         Test failure reported by Bob Proulx.
688 2006-12-30  Jim Meyering  <jim@meyering.net>
690         * bootstrap (gnulib_extra_files): Remove announce-gen.
691         * bootstrap.conf (gnulib_modules): Add it here instead, now that
692         it's a module.
694         * tests/misc/base64: Factor a long, repetitive string.
696         * src/c99-to-c89.diff: Adjust remove.c offsets.
698         Clean up after the change of 2006-12-28.
699         * src/remove.c (AD_pop_and_chdir): Change **DIRP parameter to *DIRP,
700         now that this function never modifies the pointer.  Adjust comments
701         and code accordingly.
702         (remove_dir): Set "dirp" to NULL right after AD_pop_and_chdir call,
703         now that AD_pop_and_chdir no longer does that.
705         * tests/rm/fail-eperm: Avoid spurious differences (the error function
706         from latest glibc no longer prints the full program_name): so don't
707         invoke rm via ../../src/rm.  Instead, invoke it via "PATH=../../src rm".
709         * tests/mv/acl (skip): Skip this test also if the destination
710         directory, which is on a different file system, lacks ACL support.
712         * src/copy.c (copy_reg): Rewrite a comment that was rendered
713         inaccurate by the 2006-10-18 change.
715 2006-12-28  Jim Meyering  <jim@meyering.net>
717         When moving "up" the hierarchy, be careful to remove a just-emptied
718         directory before opening ".", to avoid trouble with file system
719         implementations that cache readdir results at opendir-time.
720         * src/remove.c (AD_pop_and_chdir): Add a file descriptor parameter.
721         Don't update **DIRP.  Don't call fdopendir here.
722         (remove_dir): Call fdopendir here instead.
723         Report and patch from Mikulas Patocka:
724         <http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00170.html>
726 2006-12-27  Jim Meyering  <jim@meyering.net>
728         * src/tail.c (usage): Mention +N for --bytes and --lines.
729         Suggestion from Evan Hunt.
731 2006-12-26  Jim Meyering  <jim@meyering.net>
733         * configure.ac: Require autoconf-2.61 and automake-1.10.
734         Without the former (even with autoconf-2.60), "make distcheck"
735         would fail (without the 2006-09-26 autoconf AC_CHECK_DECL fix),
736         due to an inttypes.h generated with CFLAGS including -pedantic.
737         With the old decl check, @HAVE_DECL_STRTOUMAX@ would be 0.
739         * Makefile.maint (VC-tag): Define, so as to gpg-sign each release
740         tag, using the release version number as the message.
741         (vc-dist): Use $(VC-tag), rather than "$(VC) tag".
743 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
745         * NEWS: dd bs= operands now silently override later ibs= and obs=,
746         as POSIX requires.
747         * src/dd.c (scanargs): Implement it.
748         * tests/dd/misc (outbytes): Test it.
749         * doc/coreutils.texi (dd invocation): Specify that bs=N
750         overrides later ibs and obs, undoing part of the
751         previous change.  (The behavior was wrong.)
753 2006-12-20  Jim Meyering  <jim@meyering.net>
755         "rm -rf /etc/motd" (run by non-root) now prints a diagnostic.
756         * src/remove.c (remove_entry): Handle EACCES for a non-directory, too.
757         Don't let a non-directory get by with errno == EPERM, either.
758         Check the file type directly (using cached stat value), rather
759         than trying to guess it from errno values.
760         Karl Berry reported that a cross-partition "mv /etc/issue ~"
761         failed with the um,... suboptimal diagnostic,
762         "mv: cannot remove `/etc/issue': Not a directory".
763         * tests/rm/Makefile.am (TESTS): Add fail-eacces.
764         * tests/rm/fail-eacces: New file.
765         * NEWS: Mention that both mv and rm are affected.
767         "cut -f 2- A B" no longer triggers a double-free bug
768         * src/cut.c (cut_fields): Set file-scoped global to NULL after
769         freeing it.  This avoids a double-free (and core dump on some systems)
770         for this usage: "echo 1>a; echo 2>b; cut -f2- a b".  Reported by
771         James Hunt in <http://bugzilla.redhat.com/220312>.
772         * NEWS: List this bug fix.
773         * THANKS: Mention him.
774         * tests/misc/cut: New file.
775         * tests/misc/Makefile.am (TESTS): Add cut.
777 2006-12-15  Jim Meyering  <jim@meyering.net>
779         * tests/cp/open-perm-race: Correct the gdb-existence check.
780         Don't run either subsequent gdb command in a sub-shell.
781         Reported by Thomas Schwinge.
782         * THANKS: bring up to date.
784 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
786         Make sure cp -p isn't too generous with file permissions.
787         * tests/cp/Makefile.am (TESTS): Add file-perm-race.
788         * tests/cp/file-perm-race: New file.
790         Ensure cp -pR --parents isn't too generous with parent permissions.
791         * tests/cp/Makefile.am (TESTS): Add parent-perm-race.
792         * tests/cp/parent-perm-race: New file.
794 2006-12-14  Jim Meyering  <jim@meyering.net>
796         * tests/chgrp/default-no-deref: Don't assume that files are created
797         with the primary group by default.  That's not true in a directory
798         with the set-GID bit set.
800         Don't hang when there's no input tty.
801         * tests/cp/open-perm-race: Skip this test if there is no
802         controlling input `terminal'.
804         Test for a hard-to-detect race fix, using gdb.
805         * tests/cp/open-perm-race: New file, to test for the
806         cp --preserve=ownership fix of 2006-12-06.
808         * tests/cp/Makefile.am (TESTS_ENVIRONMENT): Define abs_top_builddir.
809         (TESTS): Add open-perm-race.
811         * src/chgrp.c (main): Don't prohibit -RLh, aka -RL with --no-dereference.
812         * src/chown.c (main): Likewise.
813         * src/chown-core.c (change_file_owner): Add to a comment.
814         * tests/chown/preserve-root: Add tests.
816         * NEWS: --preserve-root now works with chgrp, chmod, and chown.
817         * src/chmod.c (process_file): Do honor the --preserve-root option.
818         * src/chown-core.c (change_file_owner): Likewise, but here, also
819         handle the case in which a traversal would go "through" a symlink
820         to root.  Reported by Matthew M. Boedicker
821         * tests/chown/preserve-root: Test for the above.
822         * tests/chown/Makefile.am (TESTS): Add preserve-root.
824         * NEWS: Mention the chmod fix induced by the 2006-12-11 change
825         to gnulib's m4/openat.m4.
827 2006-12-13  Andreas Schwab  <schwab@suse.de>
829         Don't fail if mv/acl test succeeds.
830         * tests/mv/acl (skip): Check for acl support in the file system.
831         * tests/mv/Makefile.am (XFAIL_TESTS): Remove.
832         (TESTS_ENVIRONMENT): Pass CONFIG_HEADER.
834 2006-12-13  Paul Eggert  <eggert@cs.ucla.edu>
836         Remove some arbitrary restrictions on size fields, so that
837         commands like "sort -k 18446744073709551616" no longer fail merely
838         because 18446744073709551616 doesn't fit in uintmax_t.  The trick
839         is that these fields can all be treated as effectively infinity;
840         their exact values don't matter, since no internal buffer can be
841         that long.
842         * src/join.c (string_to_join_field): Verify that SIZE_MAX <=
843         ULONG_MAX if the code assumes this.  Silently truncate too-large
844         values to SIZE_MAX, as the remaining code will do the right thing
845         in this case.
846         * src/sort.c (parse_field_count): Likewise.
847         * src/uniq.c (size_opt, main): Likewise.
848         * tests/join/Test.pm (bigfield): New test.
849         * tests/sort/Test.pm (bigfield): New test.
850         * tests/uniq/Test.pm (121): New test.
852 2006-12-13  Jim Meyering  <jim@meyering.net>
854         * tests/chgrp/default-no-deref: New test.
855         * tests/chgrp/Makefile.am (TESTS): Add default-no-deref.
857 2006-12-12  Jim Meyering  <jim@meyering.net>
859         * src/system.h (SETVBUF): Remove definition, now that the
860         autoconf macro, AC_FUNC_SETVBUF_REVERSED, does nothing.
861         * src/tee.c (tee_files): s/SETVBUF/setvbuf/.
862         * src/od.c (open_next_file): Likewise.
864 2006-12-09  Jim Meyering  <jim@meyering.net>
866         * man/Makefile.am (.x.1): Make help2man use $(PACKAGE_STRING) as the
867         "source".  I.e. "GNU coreutils 6.7".
869         * NEWS: With the change from "-pre" to "-dirty" suffix, also change
870         from NEXT_VER-pre to CUR_VER-dirty.  So, this is 6.7-dirty.
871         * configure.ac (AC_INIT): s/6.8-dirty/6.7-dirty/.
873         * tests/uniq/Test.pm (test_vector): Skip the pipe-reading test
874         whenever uniq is expected to fail.  This should catch the other case
875         [test #112] in which uniq emits "cat: write error: Broken pipe" on
876         some systems.
878 2006-12-08  Jim Meyering  <jim@meyering.net>
880         Include bootstrap tool version info in the announcement form.
881         * Makefile.maint (gnulib_snapshot_date): Define.
882         (announcement): Use two new announce-gen options,
883         --bootstrap-tools and --gnulib-snapshot-date.
884         * Makefile.cfg (gnulib_dir): Set.
886         Post-release version change.
887         * NEWS: Add a line for 6.8-dirty.
888         * configure.ac (AC_INIT): Set new version string.
890 2006-12-07  Jim Meyering  jim@meyering.net
892         Version 6.7.
893         * NEWS: Record release date.  Remove '-pre' suffix.
894         * configure.ac (AC_INIT): Remove version string suffix.
896 2006-12-07  Jim Meyering  <jim@meyering.net>
898         Make the output of "make check" more reproducible.
899         * tests/touch/empty-file: Use envvar-check, so "make check" doesn't
900         evoke diagnostics like this when COLUMNS=0 in the environment:
901         ls: ignoring invalid width in environment variable COLUMNS: 0
902         * tests/touch/no-rights: Likewise.
903         * tests/help-version: Likewise.
904         * tests/uniq/Test.pm: Don't perform the pipe-reading version of test
905         118, since it emits "cat: write error: Broken pipe" on some systems.
907 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
909         * NEWS: Document the cp -p fix for special bits.
910         * src/copy.c (set_owner): Now returns a three-way result, so
911         that the caller can clear the special bits.  All callers changed.
912         (copy_reg): Don't set the special bits if chown failed.
913         (copy_internal): Likewise.
914         * tests/cp/special-bits: Test this fix.
916 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
918         * NEWS: Document the cp --preserve=ownership fix.
919         * m4/jm-macros.m4 (coreutils_MACROS): Check for fchmod.
920         * src/copy.c (fchmod_or_lchmod): New function.
921         (copy_reg): New arg OMITTED_PERMISSIONS.  All uses changed.
922         Omit confusing and unused ", dst_mode" arg to 'open' without O_CREAT.
923         When creating a file, use O_EXCL, so we're more likely to detect
924         funny business by other processes.  At the end, if permissions
925         were omitted, chmod them back in.
926         (copy_internal): If the ownership might change, omit some permissions
927         at first, then restore them after chowning the file.
928         * src/cp.c (make_dir_parents_private): Likewise.
929         * src/copy.c (cached_umask): New function.
930         * src/copy.h (cached_umask): New decl.
932 2006-12-06  Jim Meyering  <jim@meyering.net>
934         Make the output of "make check" more reproducible.
935         * tests/misc/date-sec: Don't emit any diagnostic about sleeping.
937 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
939         * src/install.c (install_file_in_file): Preserve time stamps
940         before changing owner or file mode bits, for consistency with
941         other coreutils programs.
943 2006-12-03  Jim Meyering  <jim@meyering.net>
945         * tests/misc/date-sec: Output a fixed string.
947         * NEWS: du --one-file-system (-x) would skip subdirectories of any
948         directory listed as second or subsequent command line argument.
949         * tests/du/one-file-system: New file.  Test for today's fts.c fix.
950         * tests/du/Makefile.am (TESTS): Add one-file-system.
951         Reported by Mike Frysinger.
953 2006-12-02  Jim Meyering  <jim@meyering.net>
955         * tests/du/basic: Generate 4KB file simply using printf, rather than
956         seq+head.  This avoids a spurious "Broken pipe" diagnostic from seq.
958 2006-11-28  Jim Meyering  <jim@meyering.net>
960         * tests/mv/no-target-dir: Detect a buggy rename syscall.  If found,
961         skip this test.  This happens at least on ia64 linux-2.4.19 w/ext3.
962         Reported by Matthew Woehlke.
964         * tests/mv/dir2dir: Also accept EBUSY.
965         Reported by Matthew Woehlke.
967 2006-11-27  Jim Meyering  <jim@meyering.net>
969         * Makefile.maint (patch-check): Rewrite to diagnose failure.
970         * src/c99-to-c89.diff: Adjust shred.c offsets.
972 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
974         Improve the check for departures from C89, and fix the departures
975         I found.
976         * Makefile.maint (my-distcheck): Also check for C89 compatibility
977         as best we can with GCC.
978         * src/stat.c (PRINTF_OPTION): Omit comma before } in enum
979         declaration; C89 doesn't allow this.
980         * src/dcgen: Don't generate string literals longer than
981         what C89 requires support for.
982         * src/cut.c (usage): Don't use string literals longer than
983         what C89 requires support for.
984         * src/date.c (usage): Likewise.
985         * src/dd.c (usage): Likewise.
986         * src/du.c (usage): Likewise.
987         * src/ls.c (usage): Likewise.
988         * src/od.c (usage): Likewise.
989         * src/readlink.c (usage): Likewise.
990         * src/seq.c (usage): Likewise.
991         * src/shred.c (usage): Likewise.
993 2006-11-26  Mike Frysinger  <vapier@gentoo.org>
995         Recognize new archive, audio and image formats.
996         Give audio files a separate color.
997         * src/dircolors.hin: Add comments for common .sh and .csh scripts.
998         Add .bz2, .tbz2, .tz, .rar, .ace, .zoo, .cpio, .7z, .rz as archive
999         suffixes.  Add .mng, .pcx, .m2v, .mkv, .ogm, .mp4, .m4v, .mp4v, .vob,
1000         .qt, .nuv, .wmv, .asf, .rm, .rmvb, .flc, .yuv as image formats.
1001         Add .aac, .au, .mid, .midi, .mka, .ra as audio suffixes.  Change
1002         audio color to 00;36 to differentiate from image/video color.
1004 2006-11-26  Jim Meyering  <jim@meyering.net>
1006         * Makefile.maint (patch-check): Compile patched sources with
1007         CFLAGS='-Wdeclaration-after-statement -Werror', to ensure that
1008         no violations remain.
1010         * src/c99-to-c89.diff: Remove 3 bogus hunks.
1012         * src/remove.c (fd_to_subdirp): Remove unused parameter, ds.
1013         Update callers.
1015         * src/c99-to-c89.diff: Adjust for changes in rm.c and in remove.c.
1017         * src/rm.c (main): Remove unnecessary (assuming C99) braces.
1019 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
1021         Port parts of the code to C89 to minimize the need for c99-to-c89.diff,
1022         while trying to retain the readability of C99 as much as possible.
1023         * src/remove.c (rm_1): Remove decl of local, fd_cwd.
1024         Replace each of two uses with literal AT_FDCWD.
1025         (cache_stat_init): Return its argument, for convenience.
1026         Update the caller in remove_dir.
1027         (AD_pop_and_chdir): Return prev_dir rather than storing through
1028         a pointer argument.  All uses changed.
1029         (AD_ensure_initialized): New function.
1030         (AD_mark_helper): Use it, to avoid the need for declaration
1031         after statement.
1032         (rm): Move cycle_check_init call into callee...
1033         (rm_1): ...here.
1034         Use an else clause in place of a "continue" statement.
1035         (close_preserve_errno): Remove.
1036         (fd_to_subdirp): Rewrite to avoid the need for decl after statement.
1038 2006-11-25  Jim Meyering  <jim@meyering.net>
1040         * Makefile.am (EXTRA_DIST): Remove announce-gen from here, too.
1042 2006-11-24  Theodoros V. Kalamatianos  <thkala@softlab.ece.ntua.gr> (tiny change)
1044         * tests/du/inacc-dest: Skip this test when running as root.
1046 2006-11-23  Jim Meyering  <jim@meyering.net>
1048         * announce-gen: Remove file.  It's moving to gnulib.
1049         * bootstrap: Pull it from gnulib/build-aux instead.
1050         * Makefile.maint (announcement): Reflect move to ./build-aux.
1052         * tests/du/deref-args: Use "printf %65536s x" to create a 64KB file,
1053         rather than a pipeline that would sometimes evoke a diagnostic
1054         like "seq: write error: Broken pipe".
1056         * tests/help-version: Suppress dd transfer rate output.
1058         * configure.ac (AC_INIT): Bump to 6.7-pre, not 6.6-pre.
1060 2006-11-22  Jim Meyering  <jim@meyering.net>
1062         * announce-gen (print_news_deltas): Fix silly, but harmless typo:
1063         change "(:?..." to "(?:..." in regexps.
1065         Post-release version change.
1066         * NEWS: Add a line for 6.7-pre.
1067         * configure.ac (AC_INIT): Bump to 6.7 and add "-pre" suffix.
1069         Version 6.6.
1070         * NEWS: Record release date.  Remove "-pre" suffix.
1071         * configure.ac (AC_INIT): Remove "-pre" suffix from version string.
1073         * announce-gen: Remove unused --release-archive-directory option.
1074         (print_news_deltas): Accept new adjective, "Noteworthy", in addition
1075         to the old "Major".
1076         Match version numbers in NEWS using tighter regular expressions.
1077         (main): Require the --gpg-key-id=ID option.
1078         * Makefile.maint (announcement): Don't use now-removed
1079         --release-archive-directory=... option.
1081         * NEWS: Mention the three noteworthy changes, all fixed via gnulib.
1083 2006-11-21  Jim Meyering  <jim@meyering.net>
1085         * tests/rm/one-file-system: Upon setup failure (e.g., mount failure),
1086         skip the test rather than failing.  Reported by Michael Deutschmann.
1088         * tests/rm/fail-eperm: Use the "(exit N); exit N" idiom,
1089         rather than just "exit N".
1091         Arrange for "make check-root" to run the new root-only test.
1092         * tests/Makefile.am (t7): New target, to run tests/ls/nameless-uid.
1093         (all_t): Add t7.
1095 2006-11-20  Jim Meyering  <jim@meyering.net>
1097         Add a root-only test for today's lib/idcache.c fix.
1098         * tests/ls/nameless-uid: New file.
1099         * tests/ls/Makefile.am (TESTS): Add nameless-uid.
1100         (TESTS_ENVIRONMENT): Add PERL to the list.
1102 2006-11-19  Jim Meyering  <jim@meyering.net>
1104         * tests/tail-2/assert-2: Mark as a very-expensive test, because I
1105         find the 7-second sleep annoyingly long.  Besides, this test is
1106         probably far too specific and timing sensitive ever to trigger again.
1107         * tests/tail-2/assert: Likewise.
1109         Post-release version change.
1110         * NEWS: Add a line for 6.6-pre.
1111         * configure.ac (AC_INIT): Bump to 6.6 and add "-pre" suffix.
1113         Version 6.5.
1114         * NEWS: Record release date.  Remove "-cvs" suffix.
1115         * configure.ac (AC_INIT): Remove "-cvs" suffix from version string.
1117 2006-11-18  Jim Meyering  <jim@meyering.net>
1119         "ln --backup f f" produces a misleading diagnostic:
1120         ln: creating hard link `f' => `f': No such file or directory
1121         * src/ln.c (do_link): Give a better diagnostic in this unusual case.
1122         (do_link): Rename local: s/lstat_ok/dest_lstat_ok/.
1123         * tests/ln/Makefile.am (TESTS): Add hard-backup.
1124         * tests/ln/hard-backup: New test for the above.
1125         * NEWS: Mention this fix.
1127 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1129         * bootstrap.conf (gnulib_modules): Add sys_stat, since we use it
1130         directly too.
1131         * lib/.cvsignore, lib/.gitignore: Add root-dev-ino.c, root-dev-ino.h.
1132         * m4/.cvsignore, m4/.gitignore: Add root-dev-ino.m4.
1133         * src/ls.c (DIRED_FPUTS_LITERAL, PUSH_CURRENT_DIRED_POS):
1134         Omit unnecessary parenthesization of args.
1135         * src/od.c (EQUAL_BLOCKS): Likewise.
1136         * src/system.h (STREQ, ASSIGN_STRDUPA): Likewise.
1138 2006-11-16  Jim Meyering  <jim@meyering.net>
1140         * tests/tail-2/append-only: If chattr +a fails, exit 77 (to tell
1141         automake we're skipping this test), and give a diagnostic to tell
1142         the user the same thing.  Reported by Mike Grayson.
1144 2006-11-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1146         * man/Makefile.am (dist_man_MANS): Replace all optional manpages
1147         with `$(MAN)', computed at configure time; also, list them ...
1148         (optional_mans): ... in this new variable.
1149         (max_aux, EXTRA_DIST): Ensure that we distribute all manpages.
1151 2006-11-16  Jim Meyering  <jim@meyering.net>
1153         Help valgrind see that there is no leak in dd.c.
1154         * src/dd.c (dd_copy): Declare real_buf and real_obuf to be static,
1155         so we need not free them at all.  This is easier than freeing
1156         both buffers at each of the early "return"s.
1158         * src/csplit.c (load_buffer): Plug an inconsequential leak.
1160 2006-11-15  Jim Meyering  <jim@meyering.net>
1162         * .x-po-check: Exclude gl/ files.  Otherwise, po-check would
1163         complain that some of gl/lib/*.[ch] are not listed in POTFILES.in.
1165 2006-11-14  Jim Meyering  <jim@meyering.net>
1167         * gl/m4/root-dev-ino.m4: Now that this is part of a real "module",
1168         remove the now-unnecessary use of AC_LIBSOURCES.
1170         Adapt to new version of gnulib-tool.
1171         * gl/modules/root-dev-ino: New file.
1172         * lib/root-dev-ino.c, lib/root-dev-ino.h: Move these files ...
1173         * gl/lib/root-dev-ino.c, gl/lib/root-dev-ino.h: ... to here.
1174         * m4/root-dev-ino.m4: Move this file ...
1175         * gl/m4/root-dev-ino.m4: ... to here.
1177         * bootstrap.conf (gnulib_modules): Add root-dev-ino.
1179 2006-11-13  Jim Meyering  <jim@meyering.net>
1181         * src/sort.c (insertkey): Use xmemdup, rather than xmalloc+assignment.
1182         From Paul Eggert.
1184         Plug another technically-unimportant leak in sort.
1185         * src/sort.c (main): Don't allocate memory for each new key here.
1186         (insertkey): Allocate memory for each key here, instead.
1187         (key_init): Rename from new_key.  Don't allocate.
1189         * src/sort.c (main): Plug a tiny memory leak.
1190         Move declaration of local "minus" down to be nearer point of use.
1192 2006-11-12  Jim Meyering  <jim@meyering.net>
1194         du would exit early, when encountering an inaccessible directory
1195         Reported by Mike Frysinger, in
1196         http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/8831
1197         * tests/du/inacc-dest: New test, based on an example from Mike Frysinger.
1198         * tests/chgrp/no-x: Remove the "fts_read failed: ..."
1199         diagnostic from the expected output when using native fdopendir.
1200         * tests/chmod/no-x: Likewise.
1201         * tests/du/no-x: Likewise.
1202         * NEWS: Mention this bug fix.
1203         * tests/du/Makefile.am (TESTS): Add inacc-dest.
1205         * Makefile.maint (sc_cast_of_x_alloc_return_value): Add an exclusion
1206         for xalloc.h itself.
1208         Avoid false-positive when testing via valgrind.
1209         * tests/mv/atomic: Grep strace output for a more specific pattern
1210         than just "unlink", since that got a false positive when testing
1211         under valgrind: unlink("/tmp/valgrind_proc_9657_cmdline_A51E9991") = 0
1212         * tests/mv/Makefile.am (TESTS_ENVIRONMENT): Define EGREP.
1214 2006-10-28  Jim Meyering  <jim@meyering.net>
1216         * Makefile.maint (patch-check): Make it easier to regenerate
1217         the src/c99-to-c89.diff file.  E.g., I do this:
1218         make patch-check REGEN_PATCH=1; ediff src/c99-to-c89.diff new-diff
1220         * src/c99-to-c89.diff: Update to reflect new offsets in rm.c.
1222 2006-10-26  Jim Meyering  <jim@meyering.net>
1224         * src/system.h (ftello): Add a compile-time check for the highly
1225         unlikely condition of off_t narrower than long int, rather than
1226         handling it at run time.  Based on a patch from Paul Eggert.
1228 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1230         * tests/chmod/c-option: When double-quoting part of a word, prefer
1231         to double-quote the whole word.  This is a bit easier to read (at
1232         least for me), and in some cases it avoids a shell bug with Tru64
1233         4.0 sh reported by Nelson H. F. Beebe.  For example, instead of
1234         "$abs_srcdir"/../setgid-check we now write
1235         "$abs_srcdir/../setgid-check".
1236         * tests/cp/cp-parents: Likewise.
1237         * tests/du/inaccessible-cwd: Likewise.
1238         * tests/du/long-from-unreadable: Likewise.
1239         * tests/install/basic-1: Likewise.
1240         * tests/install/trap: Likewise.
1241         * tests/misc/close-stdout: Likewise.
1242         * tests/mkdir/concurrent-1: Likewise.
1243         * tests/mkdir/p-1: Likewise.
1244         * tests/mkdir/p-3: Likewise.
1245         * tests/mkdir/parents: Likewise.
1246         * tests/mkdir/perm: Likewise.
1247         * tests/readlink/can-e: Likewise.
1248         * tests/readlink/can-f: Likewise.
1249         * tests/readlink/can-m: Likewise.
1250         * tests/rm/inaccessible: Likewise.
1251         * tests/rm/unread3: Likewise.
1252         * tests/touch/no-create-missing: Likewise.
1254         * lib/.cvsignore: Add uinttostr.c.
1256 2006-10-25  Jim Meyering  <jim@meyering.net>
1258         Portability to Tru64 V4.0.
1259         * src/system.h (ftello) [!HAVE_FSEEKO && !defined ftello]:
1260         Define inline replacement function.
1261         This (along with a yesterday's fix for autoconf's
1262         _AC_SYS_LARGEFILE_MACRO_VALUE macro) makes it so coreutils
1263         now builds once more on Tru64 V4.0.  Reported by Nelson Beebe.
1265 2006-10-25  Bruno Haible  <bruno@clisp.org>
1267         * src/cat.c (infile): Add "const" to declaration.
1268         * src/csplit.c (prefix): Likewise.
1269         * src/printf.c (cfcc_msg): Likewise.
1270         * src/tail.c (valid_file_spec): Likewise.
1271         * src/cut.c (cut_file): Likewise, for a parameter.
1272         * src/expr.c (str_value): Likewise.
1273         * src/fold.c (fold_file): Likewise.
1274         * src/pr.c (init_header): Likewise.
1275         * src/dircolors.c (dc_parse_stream): Likewise, for a local.
1276         * src/tr.c (make_printable_str): Likewise.
1277         * src/nl.c (body_type, header_type, footer_type, current_type):
1278         (separator_str, build_type_arg, nl_file): Likewise, for many.
1279         * src/paste.c (main): Don't assign a read-only string to 'optarg'.
1280         * src/tac.c (separator, tac_seekable, copy_to_temp): Likewise.
1282 2006-10-25  Jim Meyering  <jim@meyering.net>
1284         * tests/sample-test: Update copyright year list to include only
1285         the current year, since this is what I'll want in any new test.
1287 2006-10-24  Jim Meyering  <jim@meyering.net>
1289         * src/c99-to-c89.diff: Update to reflect new offsets.
1291         * NEWS: new feature: rm accepts new option: --one-file-system
1292         Suggested by Steve McIntyre in <http://bugs.debian.org/392925>.
1293         * src/remove.h (struct rm_options) [one_file_system]: New member.
1294         * src/rm.c (rm_option_init): Initialize it.
1295         (usage): Document the option.
1296         * src/mv.c (rm_option_init): Likewise.
1297         * src/remove.c (remove_dir): With --one-file-system and --recursive,
1298         for each directory command line argument, do not affect a file system
1299         different from that of the starting directory.  And give a diagnostic.
1300         * src/rm.c (ONE_FILE_SYSTEM): New enum.
1301         (main): Handle new option.
1302         * tests/rm/one-file-system: Test the above.
1303         * tests/rm/Makefile.am (TESTS): Add one-file-system.
1304         * tests/Makefile.am (check-root): Add the rm/one-file-system
1305         test to the list.
1306         (EXTRA_DIST): Add other-fs-tmpdir.
1308         * tests/mv/setup: Removed.  Renamed to...
1309         * tests/other-fs-tmpdir: ...this new file.
1310         * tests/mv/Makefile.am (EXTRA_DIST): Remove setup.
1311         * tests/mv/acl: Reflect renaming: use ../other-fs-tmpdir.
1312         * tests/mv/backup-is-src: Likewise.
1313         * tests/mv/hard-link-1: Likewise.
1314         * tests/mv/leak-fd: Likewise.
1315         * tests/mv/mv-special-1: Likewise.
1316         * tests/mv/part-fail: Likewise.
1317         * tests/mv/part-hardlink: Likewise.
1318         * tests/mv/part-rename: Likewise.
1319         * tests/mv/part-symlink: Likewise.
1320         * tests/mv/partition-perm: Likewise.
1321         * tests/mv/to-symlink: Likewise.
1322         * tests/mv/into-self-2: Likewise.
1324         Don't let a failure in one test stop "make -k" from running the others.
1325         * tests/Makefile.am (t1 t2 t3 t4 t5): New targets.
1326         (check-root): Depend on them, rather than executing the five
1327         commands in a single rule.  Reported by Greg Schafer.
1329 2006-10-23  Bob Proulx  <bob@proulx.com>  (tiny change)
1331         * Makefile.maint (alpha beta major): Use a better log message for
1332         the automatic commit of .prev-version.
1334 2006-10-23  Jim Meyering  <jim@meyering.net>
1336         * tests/misc/pwd-long: Undo last change, since it made Perl invoke
1337         pwd via a shell.  Instead, ensure that the absolute name of the
1338         pwd binary consists solely of reasonable characters.
1339         Whoops.  Don't exec the perl script.  Otherwise, the sh-trap-based
1340         clean-up code isn't run.
1342         * NEWS: Add a line for 6.5-cvs.
1343         * configure.ac (AC_INIT): Bump to 6.5 and add "-cvs" suffix.
1345 2006-10-22  Jim Meyering  <jim@meyering.net>
1347         Version 6.4.
1349         * NEWS: Record the 6.4 release date.
1350         * configure.ac (AC_INIT): Remove "-cvs" suffix from version string.
1352         * Makefile.maint: Complete the adaptation to function with a working
1353         directory that is using git (rather than cvs) for version control.
1355 2006-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1357         * tests/chmod/c-option: Double-quote instances of `$abs_srcdir'.
1358         * tests/cp/cp-parents: Likewise.
1359         * tests/mkdir/parents: Likewise.
1360         * tests/mkdir/perm: Likewise.
1362         * tests/sample-test: Quote variables containing absolute build
1363         tree paths.  In the cleanup trap, make sure `cd' succeeds before
1364         `chmod'ing and `rm'ing the temporary files.
1365         * tests/chgrp/basic: Likewise.
1366         * tests/chgrp/deref: Likewise.
1367         * tests/chgrp/no-x: Likewise.
1368         * tests/chgrp/posix-H: Likewise.
1369         * tests/chgrp/recurse: Likewise.
1370         * tests/chmod/c-option: Likewise.
1371         * tests/chmod/equal-x: Likewise.
1372         * tests/chmod/equals: Likewise.
1373         * tests/chmod/inaccessible: Likewise.
1374         * tests/chmod/no-x: Likewise.
1375         * tests/chmod/octal: Likewise.
1376         * tests/chmod/setgid: Likewise.
1377         * tests/chmod/umask-x: Likewise.
1378         * tests/chmod/usage: Likewise.
1379         * tests/chown/basic: Likewise.
1380         * tests/chown/deref: Likewise.
1381         * tests/chown/separator: Likewise.
1382         * tests/cp/acl: Likewise.
1383         * tests/cp/backup-1: Likewise.
1384         * tests/cp/backup-dir: Likewise.
1385         * tests/cp/backup-is-src: Likewise.
1386         * tests/cp/cp-HL: Likewise.
1387         * tests/cp/cp-deref: Likewise.
1388         * tests/cp/cp-i: Likewise.
1389         * tests/cp/cp-mv-backup: Likewise.
1390         * tests/cp/cp-parents: Likewise.
1391         * tests/cp/deref-slink: Likewise.
1392         * tests/cp/dir-rm-dest: Likewise.
1393         * tests/cp/dir-slash: Likewise.
1394         * tests/cp/dir-vs-file: Likewise.
1395         * tests/cp/fail-perm: Likewise.
1396         * tests/cp/into-self: Likewise.
1397         * tests/cp/link: Likewise.
1398         * tests/cp/link-no-deref: Likewise.
1399         * tests/cp/link-preserve: Likewise.
1400         * tests/cp/no-deref-link1: Likewise.
1401         * tests/cp/no-deref-link2: Likewise.
1402         * tests/cp/no-deref-link3: Likewise.
1403         * tests/cp/perm: Likewise.
1404         * tests/cp/preserve-2: Likewise.
1405         * tests/cp/r-vs-symlink: Likewise.
1406         * tests/cp/same-file: Likewise.
1407         * tests/cp/slink-2-slink: Likewise.
1408         * tests/cp/sparse: Likewise.
1409         * tests/cp/special-bits: Likewise.
1410         * tests/cp/src-base-dot: Likewise.
1411         * tests/cp/symlink-slash: Likewise.
1412         * tests/dd/not-rewound: Likewise.
1413         * tests/dd/skip-seek2: Likewise.
1414         * tests/dd/unblock-sync: Likewise.
1415         * tests/du/2g: Likewise.
1416         * tests/du/8gb: Likewise.
1417         * tests/du/basic: Likewise.
1418         * tests/du/deref: Likewise.
1419         * tests/du/deref-args: Likewise.
1420         * tests/du/exclude: Likewise.
1421         * tests/du/fd-leak: Likewise.
1422         * tests/du/hard-link: Likewise.
1423         * tests/du/inaccessible-cwd: Likewise.
1424         * tests/du/long-from-unreadable: Likewise.
1425         * tests/du/long-sloop: Likewise.
1426         * tests/du/no-deref: Likewise.
1427         * tests/du/no-x: Likewise.
1428         * tests/du/restore-wd: Likewise.
1429         * tests/du/slash: Likewise.
1430         * tests/du/slink: Likewise.
1431         * tests/du/trailing-slash: Likewise.
1432         * tests/du/two-args: Likewise.
1433         * tests/fmt/long-line: Likewise.
1434         * tests/install/basic-1: Likewise.
1435         * tests/install/create-leading: Likewise.
1436         * tests/install/d-slashdot: Likewise.
1437         * tests/install/trap: Likewise.
1438         * tests/ln/misc: Likewise.
1439         * tests/ln/target-1: Likewise.
1440         * tests/ls/color-dtype-dir: Likewise.
1441         * tests/ls/dangle: Likewise.
1442         * tests/ls/dired: Likewise.
1443         * tests/ls/file-type: Likewise.
1444         * tests/ls/follow-slink: Likewise.
1445         * tests/ls/infloop: Likewise.
1446         * tests/ls/inode: Likewise.
1447         * tests/ls/m-option: Likewise.
1448         * tests/ls/no-arg: Likewise.
1449         * tests/ls/recursive: Likewise.
1450         * tests/ls/rt-1: Likewise.
1451         * tests/ls/stat-dtype: Likewise.
1452         * tests/ls/stat-failed: Likewise.
1453         * tests/ls/stat-vs-dirent: Likewise.
1454         * tests/misc/cat-proc: Likewise.
1455         * tests/misc/close-stdout: Likewise.
1456         * tests/misc/csplit: Likewise.
1457         * tests/misc/date-sec: Likewise.
1458         * tests/misc/false-status: Likewise.
1459         * tests/misc/head-c: Likewise.
1460         * tests/misc/head-pos: Likewise.
1461         * tests/misc/mknod: Likewise.
1462         * tests/misc/nl: Likewise.
1463         * tests/misc/nohup: Likewise.
1464         * tests/misc/pathchk1: Likewise.
1465         * tests/misc/printf: Likewise.
1466         * tests/misc/printf-hex: Likewise.
1467         * tests/misc/pwd-long: Likewise.
1468         * tests/misc/shuf: Likewise.
1469         * tests/misc/sort-rand: Likewise.
1470         * tests/misc/split-a: Likewise.
1471         * tests/misc/split-fail: Likewise.
1472         * tests/misc/split-l: Likewise.
1473         * tests/misc/stat-fmt: Likewise.
1474         * tests/misc/tac-continue: Likewise.
1475         * tests/misc/wc-files0: Likewise.
1476         * tests/mkdir/concurrent-1: Likewise.
1477         * tests/mkdir/p-1: Likewise.
1478         * tests/mkdir/p-2: Likewise.
1479         * tests/mkdir/p-3: Likewise.
1480         * tests/mkdir/p-slashdot: Likewise.
1481         * tests/mkdir/p-thru-slink: Likewise.
1482         * tests/mkdir/p-v: Likewise.
1483         * tests/mkdir/parents: Likewise.
1484         * tests/mkdir/perm: Likewise.
1485         * tests/mkdir/t-slash: Likewise.
1486         * tests/mv/acl: Likewise.
1487         * tests/mv/atomic: Likewise.
1488         * tests/mv/backup-dir: Likewise.
1489         * tests/mv/childproof: Likewise.
1490         * tests/mv/diag: Likewise.
1491         * tests/mv/dir-file: Likewise.
1492         * tests/mv/dir2dir: Likewise.
1493         * tests/mv/dup-source: Likewise.
1494         * tests/mv/hard-2: Likewise.
1495         * tests/mv/hard-3: Likewise.
1496         * tests/mv/hard-4: Likewise.
1497         * tests/mv/hard-link-1: Likewise.
1498         * tests/mv/hard-verbose: Likewise.
1499         * tests/mv/i-2: Likewise.
1500         * tests/mv/i-3: Likewise.
1501         * tests/mv/i-4: Likewise.
1502         * tests/mv/i-5: Likewise.
1503         * tests/mv/i-link-no: Likewise.
1504         * tests/mv/into-self-4: Likewise.
1505         * tests/mv/leak-fd: Likewise.
1506         * tests/mv/mv-special-1: Likewise.
1507         * tests/mv/no-target-dir: Likewise.
1508         * tests/mv/part-fail: Likewise.
1509         * tests/mv/part-hardlink: Likewise.
1510         * tests/mv/part-rename: Likewise.
1511         * tests/mv/part-symlink: Likewise.
1512         * tests/mv/partition-perm: Likewise.
1513         * tests/mv/perm-1: Likewise.
1514         * tests/mv/reply-no: Likewise.
1515         * tests/mv/trailing-slash: Likewise.
1516         * tests/mv/update: Likewise.
1517         * tests/od/od-N: Likewise.
1518         * tests/od/x8: Likewise.
1519         * tests/readlink/can-e: Likewise.
1520         * tests/readlink/can-f: Likewise.
1521         * tests/readlink/can-m: Likewise.
1522         * tests/readlink/rl-1: Likewise.
1523         * tests/rm/cycle: Likewise.
1524         * tests/rm/dangling-symlink: Likewise.
1525         * tests/rm/deep-1: Likewise.
1526         * tests/rm/dir-no-w: Likewise.
1527         * tests/rm/dir-nonrecur: Likewise.
1528         * tests/rm/dot-rel: Likewise.
1529         * tests/rm/empty-inacc: Likewise.
1530         * tests/rm/f-1: Likewise.
1531         * tests/rm/fail-2eperm: Likewise.
1532         * tests/rm/hash: Likewise.
1533         * tests/rm/i-1: Likewise.
1534         * tests/rm/i-no-r: Likewise.
1535         * tests/rm/ignorable: Likewise.
1536         * tests/rm/inaccessible: Likewise.
1537         * tests/rm/interactive-always: Likewise.
1538         * tests/rm/interactive-once: Likewise.
1539         * tests/rm/ir-1: Likewise.
1540         * tests/rm/isatty: Likewise.
1541         * tests/rm/no-give-up: Likewise.
1542         * tests/rm/r-1: Likewise.
1543         * tests/rm/r-2: Likewise.
1544         * tests/rm/r-3: Likewise.
1545         * tests/rm/r-4: Likewise.
1546         * tests/rm/readdir-bug: Likewise.
1547         * tests/rm/rm1: Likewise.
1548         * tests/rm/rm2: Likewise.
1549         * tests/rm/rm3: Likewise.
1550         * tests/rm/rm4: Likewise.
1551         * tests/rm/rm5: Likewise.
1552         * tests/rm/sunos-1: Likewise.
1553         * tests/rm/unread2: Likewise.
1554         * tests/rm/unread3: Likewise.
1555         * tests/rmdir/fail-perm: Likewise.
1556         * tests/rmdir/t-slash: Likewise.
1557         * tests/shred/exact: Likewise.
1558         * tests/shred/remove: Likewise.
1559         * tests/sum/sysv: Likewise.
1560         * tests/tail-2/append-only: Likewise.
1561         * tests/tail-2/assert: Likewise.
1562         * tests/tail-2/assert-2: Likewise.
1563         * tests/tail-2/big-4gb: Likewise.
1564         * tests/tail-2/fflush: Likewise.
1565         * tests/tail-2/infloop-1: Likewise.
1566         * tests/tail-2/proc-ksyms: Likewise.
1567         * tests/tail-2/start-middle: Likewise.
1568         * tests/tail-2/tail-n0f: Likewise.
1569         * tests/tee/basic: Likewise.
1570         * tests/tee/dash: Likewise.
1571         * tests/touch/fail-diag: Likewise.
1572         * tests/touch/no-create-missing: Likewise.
1573         * tests/touch/not-owner: Likewise.
1574         * tests/touch/obsolescent: Likewise.
1575         * tests/touch/read-only: Likewise.
1576         * tests/touch/relative: Likewise.
1578 2006-10-21  Jim Meyering  <jim@meyering.net>
1580         * NEWS: (cp --backup fix): Fix a typo.
1582         * .gitignore: Remove some references to files in subdirectories.
1583         * build-aux/.gitignore, doc/.gitignore, lib/.gitignore: New files.
1584         * m4/.gitignore, po/.gitignore, src/.gitignore: Likewise.
1586         * src/copy.c (copy_internal): Add a comment saying why we prefer
1587         mknod over mkfifo.
1589         Enable an fts optimization (call lstat only for directories,
1590         on some file system types) also with the --preserve-root option
1591         of chown or chgrp.
1592         * src/chown-core.c (change_file_owner): Compare fts_statp-based
1593         dev/ino against root dev/ino only for directories.
1594         (chown_files): Don't let the root_dev_ino setting influence whether
1595         we use FTS_NOSTAT: fts always sets *fts_statp for a directory.
1597 2006-10-20  Jim Meyering  <jim@meyering.net>
1599         * src/od.c (usage): Change description of default to use "-w16",
1600         not the now-invalid "-w 16" syntax.  From Dan Jacobson.
1602 2006-10-19  Jim Meyering  <jim@meyering.net>
1604         * bootstrap: Add names to each .gitignore file (if it exists)
1605         as well as to .cvsignore.
1607         * Makefile.maint (po-check): This rule didn't detect the new use
1608         of "gettext" (as opposed to the use of "_" everywhere else) in
1609         lib/xstrtol.h.  Adjust the grep regexp so that now it does.
1611 2006-10-18  Paul Eggert  <eggert@cs.ucla.edu>
1613         * src/copy.c (copy_reg): Rewrite slightly to avoid duplicate code
1614         when opening dst_name.
1615         (copy_reg, copy_internal): Use (SYSCALL != 0) rather than plain
1616         (SYSCALL) to test for failure in a system call.
1618         * src/copy.c (copy_internal): Use mknod rather than mkfifo to copy
1619         a fifo.  This preserves the special mode bits on Solaris 10, which
1620         is compatible with what Solaris 10 cp -R does.
1622         * src/copy.c (copy_internal): Remove redundant and confusing local
1623         variable src_type.
1625         * src/copy.c (copy_internal): Don't pass mkdir a mode greater than
1626         7777.  This matches historical 'cp' behavior and avoids some
1627         (though not all) implementation-defined behavior of mkdir.
1628         * src/cp.c (make_dir_parents_private): Likewise.
1629         * src/copy.c (copy_internal): Don't pass 'open' a mode greater
1630         than 777.  This is required by POSIX.  It doesn't make any difference
1631         in actual behavior on any host that I know of.
1633 2006-10-17  Jim Meyering  <jim@meyering.net>
1635         * src/dd.c (usage): Use two spaces (not one) to separate the
1636         "fdatasync" option string from its description, so help2man formats
1637         the derived man page properly.  Reported by Samuel Thibault
1638         in <http://bugs.debian.org/393649>.
1640 2006-10-16  Jim Meyering  <jim@meyering.net>
1642         * .x-sc_trailing_blank: Remove names of files that are no longer
1643         version-controlled.
1645 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
1647         * src/groups.sh (version): Reword message to match the other programs.
1648         Problem reported by Eric Blake.
1650 2006-10-14  Jim Meyering  <jim@meyering.net>
1652         * Makefile.maint (headers_with_interesting_macro_defs): Define.
1653         (.re-defmac, sc_always_defined_macros): New rules.
1655         * src/system.h (EXIT_FAILURE, EXIT_SUCCESS): Remove definitions.
1656         Instead, include "exit.h".  This hereby retires the work-around for
1657         "Sony NEWS-OS Release 4.0C"'s bug due to "#define EXIT_FAILURE 0".
1659         * src/cksum.c (uint_fast32_t): Don't define.
1660         Instead, include <stdint.h>.
1662         * src/pinky.c (S_IWGRP): Don't define.
1663         It's already defined by "stat-macros.h" (included via system.h).
1665         * Makefile.cfg: Remove cruft that's now handled via bootstrap.
1666         * Makefile.maint: Likewise, remove these targets/rules/variables:
1667         (local_updates, update, cvs-update, wget_files, get-targets): Remove.
1668         (cvs_files, wget-update, automake_repo): Likewise.
1669         Move the comment about cvsu to build-aux/vc-list-files,
1670         where cvsu is actually used.
1672         * Makefile.maint (cvs-update): Use $(CVS), not "cvs".
1674         Work also when the working directory (with e.g. coreutils sources)
1675         is version controlled with git, rather than CVS.
1676         * bootstrap (CVS_only_file): Test for the existence of README-cvs,
1677         rather than CVS.
1678         In messages and comments, say e.g., "checked-out sources",
1679         rather than "CVS sources".
1680         (version_controlled_file): New function.  Work for git as well as
1681         for CVS.  Don't use grep's -q option.
1682         (slurp): Call it here, in place of CVS-specific code.
1684         * NEWS: cp -r --backup dir1 dir2, would rename an existing dir1/dir2
1685         to dir1/dir2~.
1686         * src/copy.c (copy_internal): Although we do create a backup of each
1687         destination directory when in move mode, don't do that when copying.
1688         Reported by Peter Breitenlohner, in
1689         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/8616>.
1690         * tests/cp/backup-dir: New file.  Test for the above.
1691         * tests/cp/Makefile.am (TESTS): Add backup-dir.
1693 2006-10-13  Jim Meyering  <jim@meyering.net>
1695         More chown/chgrp dereferencing-related fixes.
1696         * src/chown-core.c (change_file_owner): Don't use fts_statp if
1697         we're dereferencing symlinks.
1698         Reverse conjuncts, so that we use dereference file_stats
1699         (aka ent->fts_statp) only *after* we've confirmed that
1700         chopt->affect_symlink_referent is true.  Otherwise, we might
1701         use ent->fts_statp uninitialized.
1702         Don't turn on FTS_NOSTAT when dereferencing symlinks.
1703         * tests/chown/deref: Update the expected diagnostic, now that
1704         this test case (trying to use "chown --dereference ..." on a
1705         dangling symlink) takes a different code path.
1707 2006-10-13  Paul Eggert  <eggert@cs.ucla.edu>
1709         Sync from Bison, as follows:
1711         2006-10-01  Paul Eggert  <eggert@cs.ucla.edu>
1713         Fix problems with translating English-language diagnostics.
1714         * bootstrap: Fix bug introduced in recent bootstrap changes, with
1715         respect to bison-runtime pot generation.  The YY_ stuff
1716         wasn't being captured.
1718 2006-10-13  Jim Meyering  <jim@meyering.net>
1720         * src/chown-core.c (change_file_owner): Use fstatat, not stat,
1721         now that we're using fts_open with FTS_CWDFD.
1722         * tests/chgrp/posix-H: Add --preserve-root to an invocation of
1723         chgrp, to exercise the above fix.
1724         * NEWS: Mention the above.
1726         * src/du-tests: Clean up a little, though it's still not portable.
1728         * .vg-suppressions: Add 3 more for debian unstable.
1730         * tests/ls/Test.pm: Remove long-unused file.
1731         * Makefile.am (EXTRA_DIST): Add bootstrap.conf.
1732         Suggestions from Bruno Haible.
1734 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1736         * Makefile.am (THANKS-to-translators): Add missing $(srcdir).
1737         (MAINTAINERCLEANFILES): Add .kludge-stamp.
1738         * man/Makefile.am (MAINTAINERCLEANFILES): Typo $(dist_man_MANS)
1739         instead of $(man_MANS).
1741 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1743         * configure.ac: Avoid compiler warnings about default return
1744         type in function definitions and unused variables in tests.
1745         * src/who.c (print_user) [HAVE_UT_HOST]: hostlen is only needed
1746         if this is #defined.
1748 2006-10-12  Jim Meyering  <jim@meyering.net>
1750         * configure.ac: Reflect s/gl_MACROS/coreutils_MACROS/ renaming.
1751         Call gl_INIT directly, rather than through the above.
1753 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1755         * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
1756         variable was sometimes used without being initialized.  This
1757         messed up the installation of the INSTALL file in some cases.
1759 2006-10-11  Jim Meyering  <jim@meyering.net>
1761         * src/ls.c (usage): Correct description of -s, --size.
1762         It works even without -l.  Suggestion from Karl Berry.
1764 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
1766         * src/ls.c (quote_name): Use initializer rather than memset to
1767         initialize an object to zero.  This is easier to read and is less
1768         likely to introduce a runtime error due to a mixup.  It causes
1769         gcc -W to issue a warning, but you can work around this by
1770         appending -Wno-missing-field-initializers.
1771         * src/pathchk.c (portable_chars_only): Likewise.
1772         * src/shred.c (main): Likewise.
1773         * src/stty.c (main): Likewise.
1774         * src/tr.c (card_of_complement): Likewise.
1775         * src/wc.c (wc): Likewise.
1777 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
1779         * src/sort.c (usage): Mention again that sort fields are origin 1.
1781         * NEWS: Fix typo: iso-8602 -> iso-8601.  Problem reported by
1782         Bob Proulx.
1784         * bootstrap (usage, main program, symlink_to_gnulib): Add option
1785         --copy.  Inspired by a suggestion from Bruno Haible.
1787 2006-10-09  Jim Meyering  <jim@meyering.net>
1789         Avoid a compiler warning.
1790         * src/pathchk.c (portable_chars_only): Initialize variable of type
1791         mbstate_t via memset, rather than via '{0}'.  Patch from Bruno Haible.
1793 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
1795         Fix bug reported today by Mike Frysinger: mkdir -pv is logging the
1796         wrong file name in some cases.  Lars Wendler reported a bug in
1797         my original fix.
1798         * src/install.c (make_ancestor): New arg COMPONENT.
1799         * src/mkdir.c (make_ancestor): Likewise.
1800         * tests/install/basic-1: Check for install -Dv bug.
1801         * tests/mkdir/Makefile.am (TESTS): Add p-v.
1802         * tests/mkdir/p-v: New file, to test this bug.
1804 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
1806         * src/chgrp.c: Don't include lchown.h; no longer needed.
1807         * src/chown.c: Likewise.
1809         * tests/ls/stat-dtype: Use a dynamic test to decide whether the
1810         current file system has useful d_type info.
1812         * src/dd.c (flags): noatime and nofollow now depend on
1813         HAVE_WORKING_O_NOATIME and HAVE_WORKING_O_NOFOLLOW, too.
1814         (usage): Output info about noatime and nofollow only if
1815         they are known to work.
1816         * src/remove.c (AD_push): Inspect HAVE_WORKING_O_NOFOLLOW rather
1817         than O_NOFOLLOW, when testing whether it's possible to avoid a
1818         race condition reliably.
1820 2006-10-05  Jim Meyering  <jim@meyering.net>
1822         * src/c99-to-c89.diff: Update to reflect new offsets.
1824         * tests/install/basic-1: Skip the latter part of this test if the
1825         just-built dd binary is not readable.  Otherwise, this test would fail
1826         when binaries were created as root.  Reported by Bauke Jan Douma in
1827         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/8433>.
1829 2006-10-03  Paul Eggert  <eggert@cs.ucla.edu>
1831         * src/system.h (ST_BLKSIZE): Ceiling at SIZE_MAX / 8 + 1, not at 4
1832         MiB, since XFS hosts can legitimately have large values of
1833         st_blksize.  Problem reported by Tony Ernst in
1834         <http://savannah.gnu.org/bugs/?17903>.
1836 2006-10-04  Jim Meyering  <jim@meyering.net>
1838         * src/remove.c (nonexistent_file_errno): Remove ENAMETOOLONG.
1839         Paul Eggert pointed out that the specified file may exist,
1840         in spite of such an errno value.
1841         * tests/rm/Makefile.am (TESTS): Remove ignore-name-too-long.
1842         * tests/rm/ignore-name-too-long: Remove file.
1843         * NEWS: Update here, too.
1845 2006-10-03  Jim Meyering  <jim@meyering.net>
1847         * tests/rm/fail-eperm: Report failure also if rm is terminated by
1848         a signal.
1850         * src/c99-to-c89.diff: Convert two c99'isms -- one in remove.c
1851         and one in shred.c -- that were added before coreutils-6.3.
1852         Reported by Michael Deutschmann.
1854         * src/c99-to-c89.diff: Update to reflect new offsets.
1856         * src/remove.c (remove_entry): With -f, exit successfully in spite
1857         of a missing file under some very unusual conditions (with errno
1858         being any of ENOENT, ENOTDIR, ENAMETOOLONG).
1860         With --force (-f), rm no longer fails for ENOTDIR.
1861         * src/remove.c (ignorable_missing): New function.
1862         Use it everywhere, rather than open-coding the test.
1863         Andreas Schwab reported the ENOTDIR problem.
1864         (ignorable_missing): Similarly, don't fail for ENAMETOOLONG.
1866         * NEWS: Mention the bug fix.
1867         * tests/rm/ignorable: New file.  Test for the ENOTDIR case.
1868         * tests/rm/ignore-name-too-long: New file. Test for ENAMETOOLONG.
1869         * tests/rm/Makefile.am (TESTS): Add the new file names.
1871         * bootstrap: Undo last change to this file, since now gnulib-tool
1872         sticks with the automake default in generating dependencies.
1874         * NEWS: Add a line for 6.4-cvs.
1875         * configure.ac (AC_INIT): Bump to 6.4 and add "-cvs" suffix.
1877 2006-09-30  Jim Meyering  <jim@meyering.net>
1879         Version 6.3.
1880         * NEWS: Record the 6.3 release date.
1881         * configure.ac (AC_INIT): Remove "-cvs" suffix from version string.
1883         * NEWS: Mention Paul's Solaris 8 vs. 10 work-around.
1885         * src/c99-to-c89.diff: Update offsets.
1887 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
1889         * tests/rm/readdir-bug: Don't use $(...) in a shell script,
1890         as it doesn't work with Solaris /bin/sh.
1892 2006-09-29  Jim Meyering  <jim@meyering.net>
1894         * NEWS: Mention Paul's fix (to gnulib's canon-host.c) for
1895         the pinky segfault.
1897         * tests/seq/basic [neg-2, eq-wid-2]: Comment out tests that
1898         use .1 as the increment.  Actual output varies too much.
1899         [eq-wid-3]: New, commented out test.
1901         * src/shuf.c (read_input): Fix an off-by-one error that
1902         would cause an infloop for piped input of 8KB or more.
1903         * NEWS: Mention the fix.
1904         * tests/misc/shuf: Test for the above fix.
1906         Since any system may be affected by the Darwin readdir bug,
1907         perform the extra rewinddir unconditionally.  The performance
1908         impact of rewinding a directory is negligible.
1909         * src/remove.c (NEED_REWIND): Define to use
1910         CONSECUTIVE_READDIR_UNLINK_THRESHOLD unconditionally.
1912         * tests/seq/basic: Use .11 as the upper bound, in case the ".1"
1913         increment translates to a slightly larger value.
1914         This corrects a test failure on FreeBSD 6.1 reported by Nelson Beebe.
1915         The final expected value wasn't being printed.
1917         Work around a readdir bug in Darwin 7.9.0 (MacOS X 10.3.9) on HFS+
1918         and NFS, whereby rm would not remove all files in a directory.
1919         * src/remove.c (CONSECUTIVE_READDIR_UNLINK_THRESHOLD): Reduce to 10.
1920         (NEED_REWIND): New macro, so that we incur the cost of the work-around
1921         rewinddir only on afflicted systems.
1922         * NEWS: Clarify and correct.
1923         * tests/rm/readdir-bug: New file.  Test for the above fix.
1924         * tests/rm/Makefile.am (TESTS): Add it.
1925         Prompted by testing and analysis from Bruno Haible:
1926         http://lists.gnu.org/archive/html/bug-coreutils/2006-09/msg00326.html
1928 2006-09-28  Paul Eggert  <eggert@cs.ucla.edu>
1930         * tests/rm/fail-eperm: Unset BASH_ENV, CDPATH, and ENV, too;
1931         suggested for Debian stable, which uses Perl 5.8.4.
1933 2006-09-28  Jim Meyering  <jim@meyering.net>
1935         Automatically generated dependencies are important even
1936         when all of the sources in a directory come from gnulib.
1937         * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
1938         option that gnulib-tool adds to what becomes our lib/gnulib.mk.
1940         * tests/rm/fail-eperm: Enable Perl's (-T) taint checking.
1941         Ensure that IFS is set properly and unset PATH.
1942         Sanitize inputs.
1943         Work properly even when the name of the selected file starts with "-".
1944         Invoke rm via "../../src/rm", and adjust expected output.
1945         Prompted by a patch from Tim Waugh.
1947         * README-cvs: Add Bison to the list of required packages.
1949 2006-09-26  Jim Meyering  <jim@meyering.net>
1951         * src/c99-to-c89.diff: Update offsets.
1953         * NEWS: rm works around a bug in Darwin 8.6.1 w/NFS that kept
1954         it from removing a directory containing 188 or more entries.
1955         * src/remove.c (CONSECUTIVE_READDIR_UNLINK_THRESHOLD): Decrease by
1956         20, go work around the buggy readdir on Darwin 8.6.1 with NFS.
1957         Reported by Matthew Woehlke.
1959 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1961         * NEWS: "groups user" no longer outputs "user :"; you need at least
1962         two users.  "groups" now processes options like --help more compatibly.
1963         * src/groups.sh: Implement the option-processing change.
1964         Handle user and group names with special characters more robustly.
1965         Report write errors instead of exiting silently with status 1.
1967 2006-09-26  Jim Meyering  <jim@meyering.net>
1969         * README: Warn not to run autoreconf manually.  Use bootstrap instead.
1971         * src/groups.sh: When invoked with 0 or 1 argument, just exec "id".
1972         Rewrite to avoid using temporary, $status.
1974         * NEWS: Mention the bug fix.
1975         * src/groups.sh: Don't hide a write failure.
1976         Reported by Iain Calder <ic56@rogers.com>.
1978 2006-09-25  Jim Meyering  <jim@meyering.net>
1980         * src/chown.c (usage): Clarify --dereference description.
1981         * src/chgrp.c (usage): Likewise.  Suggestion from Jamie McClelland.
1983 2006-09-24  Jim Meyering  <jim@meyering.net>
1985         * NEWS: Mention these fixes.
1986         * src/copy.c (copy_reg): With --verbose (-v), print
1987         "removed `file_name'" just after unlinking a file.
1988         (copy_internal): Likewise, in three more places.
1989         Marc Lehman reported that "touch x; ln x y; mv -v x y" was silent.
1990         * tests/mv/hard-verbose: New file.  Test for the above fix.
1991         * tests/mv/Makefile.am (TESTS): Add hard-verbose.
1993         * tests/help-version (sync_args): Don't call sync, since it spins up
1994         disks that I've deliberately caused to spin down (but not unmounted).
1996         * NEWS: Mention the improvement to sort.
1998         * tests/tail-2/proc-ksyms: Require that /proc/ksyms be readable
1999         as well as existing.
2001         * tests/ls/stat-dtype: Don't use tmpfs on linux-2.4 or older,
2002         since that predated addition of d_type support.
2004 2006-09-23  Jim Meyering  <jim@meyering.net>
2006         * gl/modules/getloadavg.diff: New file.  Work around the way the latest
2007         version of the getloadavg module interacts with our bootstrap script.
2008         * bootstrap (gnulib_tool_options): Add "--local-dir gl".
2009         * Makefile.am (EXTRA_DIST): Sort file names.
2010         Add bootstrap and gl/modules/getloadavg.diff
2012 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
2014         * bootstrap: Add support for --force.
2015         (usage): New function.  Describe usage less tersely.
2016         (CVS_only_file): New var.
2018         * NEWS: Document fix for cp -i and mv -i.
2019         * src/copy.c (copy_internal): With -i, prompt even if the source
2020         is a directory and the destination is not.  This is required by
2021         POSIX and gives the user a chance to bail out before failing.
2022         * tests/cp/Makefile.am (TESTS): Add cp-i.
2023         * tests/cp/cp-i: New file.
2024         * tests/mv/Makefile.am (TESTS): Add i-5.
2025         * tests/mv/i-5: New file.
2027 2006-09-20  Jim Meyering  <jim@meyering.net>
2029         * NEWS: Mention the chmod bug fix.
2031         * tests/chmod/inaccessible: New test, specifically for this bug.
2032         Based on a test case from Paul Eggert.
2033         * tests/chmod/Makefile.am (TESTS): Add inaccessible.
2035         Fix the 2006-09-18 bug differently.
2036         * src/chmod.c: (process_file): Upon FTS_NS for a top-level file,
2037         tell fts_read to stat the file again, in case it has become
2038         accessible since the initial fts_open call.
2039         * src/chown-core.c (change_file_owner): Likewise.
2041         * src/chmod.c: Revert last change.  There is a better way.
2042         * src/chown-core.c: Likewise.
2044 2006-09-19  Paul Eggert  <eggert@cs.ucla.edu>
2046         * src/ln.c (target_directory_operand): Rewrite to avoid porting
2047         problem on Tandem reported by Matthew Woehlke in
2048         <https://savannah.gnu.org/bugs/?17172>.
2050 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2052         Fix bug where chmod, chown, and chgrp did not process operands
2053         left-to-right in some cases.
2054         * src/chmod.c (wd_errno): New var.
2055         (chmod_file): New function, with most of the contents of the
2056         old prcess_file function.
2057         (process_files): Use it.  This gives file names to fts one
2058         at a time, so that they are processed left-to-right as POSIX
2059         requires.
2060         * src/chown-core.c (wd_errno, chown_files): Likewise.
2061         (chown_file): New function.
2062         * tests/install/basic-1: Redo test so as to not workaround
2063         the chmod bug, thereby testing for it.
2065         * src/shuf.c (main): Quote the entire range when reporting an
2066         invalid one, rather than just the part that contained the error.
2068         * tests/stty/row-col-1: Rewrite to avoid temporary file that is
2069         sometimes left behind if the test is skipped or interrupted.
2071         * bootstrap (symlink_to_gnulib): New function.
2072         (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
2073         to copies-of-gnulib.
2074         (cp_mark_as_generated, slurp, gnulib_files):
2075         Avoid making a copy if it's the same as the old version.
2076         (gnulib_files): Add support for this variable (used by Bison).
2078         * tests/ls/stat-vs-dirent: Fix quoting problem in diagnostic
2079         indicating flaw in kernel.  Reword to say that the flaw isn't
2080         serious for coreutils, since the flaw does affect ls -i.
2082         * tests/chgrp/basic: Fix bug in test case exposed by building on
2083         Solaris 8 in a setgid directory.  The test case incorrectly
2084         assumed that 'symlink' would be in group $g1.
2086 2006-09-18  Jim Meyering  <jim@meyering.net>
2088         * NEWS: Add a line for 6.3-cvs.
2089         * configure.ac (AC_INIT): Bump to 6.3 and add "-cvs" suffix.
2091         Version 6.2.
2092         * NEWS: Record the 6.2 release date.
2093         * configure.ac (AC_INIT): Remove "-cvs" suffix from version string.
2095 2006-09-17  Jim Meyering  <jim@meyering.net>
2097         * tests/chgrp/basic: On an OpenBSD system, rather than failing
2098         due to a known problem, merely warn about it.
2099         Rewrite to avoid testing output of chgrp --verbose and chgrp -c.
2100         Instead, use stat to test file system for desired results, directly.
2101         * tests/chgrp/Makefile.am (TESTS_ENVIRONMENT): Set host_triplet.
2103         * tests/envvar-check: Add more variable names to the list of those
2104         that can affect these programs and tests: _POSIX2_VERSION, COLUMNS,
2105         QUOTING_STYLE, TABSIZE, TERM, TMPDIR.
2107 2006-09-16  Paul Eggert  <eggert@cs.ucla.edu>
2109         * NEWS: Document that mkdir -p and install -d now fork on occasion.
2110         * bootstrap.conf (gnulib_modules): Add savewd.
2111         * src/install.c: Include savewd.h.
2112         (process_dir): New function.
2113         (main, install_file_in_file_parents): Use it, along with the new
2114         savewd module, to avoid some race conditions.
2115         * src/mkdir.c: Include savewd.h.
2116         (struct mkdir_options): New members make_ancestor_function, mode,
2117         mode_bits.
2118         (make_ancestor): Return 1 if the resulting directory is not readable.
2119         (process_dir): New function.
2120         (main): Use it, along with new savewd module, to avoid some
2121         race conditions.  Fill in new slots of struct mkdir_options, so
2122         that callees get the values.
2123         * tests/install/basic-1: Test for coreutils 5.97 bug that was
2124         fixed in coreutils 6.0, and which should still be fixed with
2125         this change.
2126         * tests/mkdir/p-3: Likewise.
2128 2006-09-15  Jim Meyering  <jim@meyering.net>
2130         * bootstrap.conf (gnulib_modules): Add rename-dest-slash.
2131         The 2006-09-08 changes made it so "mv dir new-name/" would
2132         fail on NetBSD 1.6.  This makes it work once again.
2134 2006-09-14  Jim Meyering  <jim@meyering.net>
2136         * src/mv.c (main): Remove unnecessary (always-true) test for 2 <= n.
2137         Instead, since it's a little fragile, assert the condition.
2138         (target_directory_operand): Update comment to reflect latest change.
2140 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
2142         * src/who.c (print_user): Rewrite to avoid warning from
2143         GCC 4.1.1 with -Wall.
2145 2006-09-12  Jim Meyering  <jim@meyering.net>
2147         * tests/mv/atomic: Check for specific strace output, rather than
2148         simply nonempty.  RHEL AS 4 would fail this test due to strace
2149         generating "[ Process PID=14434 runs in 32 bit mode. ]".
2150         Reported by Nelson Beebe.
2152 2006-09-11  Jim Meyering  <jim@meyering.net>
2154         * src/remove.c (remove_dir): Move new cache_stat_init call onto
2155         it's own line.
2156         (rm_1): Move declaration of "st" and new cache_stat_init call
2157         "down" to nearer where they're used.
2158         * src/c99-to-c89.diff: Add another set of curly braces.
2160 2006-09-10  Paul Eggert  <eggert@cs.ucla.edu>
2162         * src/expr.c (eval6): Fix buffer overrun, or bad performance, if
2163         substr's last operand is very large.  Performance problem reported
2164         by Sebastian Kreft.
2166 2006-09-09  Jim Meyering  <jim@meyering.net>
2168         * Makefile.maint (sc_prohibit_jm_in_m4): Don't hang when there
2169         are no .m4 files.
2170         (sc_require_config_h): Skip this test if there are no version-
2171         controlled .c files.
2172         (sc_prohibit_assert_without_use): Likewise.
2174 2006-09-08  Jim Meyering  <jim@meyering.net>
2176         * bootstrap: Export CVS_RSH separate from its assignment, to work
2177         even with Solaris 10's /bin/sh.  Suggestion from Mark D. Baushke.
2179 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2181         * NEWS: tail now ignores the -f option if POSIXLY_CORRECT is set,
2182         no file operand is given, and standard input is any FIFO.
2183         This is in response to Open Group XCU ERN 114.
2184         * src/tail.c (main): Likewise.
2186 2006-09-08  Jim Meyering  <jim@meyering.net>
2188         mv and "cp -r" no longer fail when invoked with two arguments
2189         where the first one names a directory and the second name ends in
2190         a slash and doesn't exist.  E.g., "mv dir B/", for nonexistent B,
2191         now succeeds, once more. This reverts part of the 2004-06-27
2192         change for 5.3.0.
2193         * NEWS: Say the above.
2194         * src/mv.c (target_directory_operand): Don't require (here)
2195         that the target operand "look like" a directory.  This change
2196         pushes the test down to the rename syscall level, where a
2197         "mv dir existing-non-dir/" will mistakenly succeed on older systems
2198         that ignore trailing slashes in the rename destination argument.
2199         * src/cp.c (target_directory_operand): Likewise, but for cp.
2200         * tests/mv/trailing-slash: Exercise the above fixes.
2201         * tests/cp/trailing-slash: New file.
2202         * tests/cp/Makefile.am (EXTRA_DIST): Add trailing-slash.
2204         * bootstrap: Use the previously unused variable, $src,
2205         to avoid repeating "$GNULIB_SRCDIR/$file".
2207         * bootstrap (cp_mark_as_generated): Don't use "local", to
2208         accommodate ancient "/bin/sh".  Suggested by Ralf Wildenhues.
2209         Rename now-global "$src" and "$dst" to have cp_ prefix.
2210         Safer, and avoids confusion.
2212         * bootstrap (cp_mark_as_generated): New function.
2213         (slurp): Use it to prepend editor hints and a warning that
2214         the file we're copying is generated.
2215         Suggestion from Bruce Korb.
2216         (cp_mark_as_generated): Don't add C-style comments for .l or .y files.
2217         Fix last-minute typo.
2219 2006-09-07  Jim Meyering  <jim@meyering.net>
2221         * bootstrap: Revert last change.  There are less disruptive ways
2222         to mark these generated files as read-only.
2224         * src/c99-to-c89.diff: Update to have proper offsets.
2226 2006-09-06  Jim Meyering  <jim@meyering.net>
2228         Ensure that some gnulib-tool-generated files are read-only.
2229         * bootstrap (slurp): Put the body of this function in a sub-shell,
2230         with "umask a-w" so that all new files are read-only.  Remove each
2231         file before we write to it, in case it's read-only.
2232         Make po/Makevars and runtime-po/Makevars read-only, too.
2234 2006-09-05  Jim Meyering  <jim@meyering.net>
2236         * tests/cp/acl: Skip this test when cp lacks ACL support.
2237         * tests/cp/Makefile.am (TESTS_ENVIRONMENT): Set $(CONFIG_HEADER).
2239         * src/c99-to-c89.diff (remove.c): Adapt one hunk to match the new
2240         context from change of 2006-09-02.
2242 2006-09-04  Jim Meyering  <jim@meyering.net>
2244         * README-cvs: Fix typo in update command.
2246 2006-09-03  Jim Meyering  <jim@meyering.net>
2248         * NEWS: Tweak the wording in the new change description so that
2249         no one can think this change causes e.g., `rm -fr foo../' to fail.
2251         * tests/rm/inaccessible: Adjust for movement of config.h to lib/.
2252         Use $CONFIG_HEADER, rather than hard-coding it.
2253         * tests/rm/Makefile.am (TESTS_ENVIRONMENT): Set $CONFIG_HEADER.
2255 2006-09-02  Paul Eggert  <eggert@cs.ucla.edu>
2257         * NEWS: rm now rejects attempts to remove /, ./, and ../.
2258         * src/basename.c: Don't include dirname.h, since system.h does it now.
2259         * src/chmod.c: Likewise.
2260         * src/copy.c: Likewise.
2261         * src/cp.c: Likewise.
2262         * src/df.c: Likewise.
2263         * src/dircolors.c: Likewise.
2264         * src/dirname.c: Likewise.
2265         * src/du.c: Likewise.
2266         * src/install.c: Likewise.
2267         * src/ln.c: Likewise.
2268         * src/ls.c: Likewise.
2269         * src/mkdir.c: Likewise.
2270         * src/mv.c: Likewise.
2271         * src/remove.c: Likewise.
2272         * src/rm.c: Likewise.
2273         * src/rmdir.c: Likewise.
2274         * src/shred.c: Likewise.
2275         * src/split.c: Likewise.
2276         * src/su.c: Likewise.
2277         * src/system.h: Include "dirname.h", since dot_or_dotdot needs it
2278         now.
2279         (dot_or_dotdot): Succeed even if "." or ".." is followed by a
2280         slash.
2281         * src/rm.c (usage, main): --preserve-root is now the default.
2282         * src/remove.h: Fix comment.
2283         * src/remove.c (cache_fstatat, cache_stat_init): New functions.
2284         (cache_statted, cache_stat_ok): New functions.
2285         (write_protected_non_symlink): Remove struct stat ** buf_p arg,
2286         which is no longer needed with the new functions.  All callers
2287         changed.
2288         (prompt, is_dir_lstat, remove_entry, remove_dir):
2289         New struct stat * arg.  All callers changed.
2290         (write_protected_non_symlink, prompt, is_dir_lstat, remove_entry):
2291         (remove_cwd_entries, remove_dir, rm_1):
2292         Use and maintain the file status cache.
2293         (prompt, remove_entry): Omit the first "directory" in the diagnostic
2294         "Cannot remove directory `foo': is a directory".  This causes "rm"
2295         to pass a test case that it would otherwise fail now that it
2296         "knows" more about its argument.  I think the diagnostic is better
2297         without the first "directory" anyway.
2298         (prompt): Remove the no-longer-needed IS_DIR arg; all callers changed.
2299         (rm_1): Reject attempts to remove /, ./, or ../.
2300         * tests/rm/Makefile.am (TESTS): Add r-4.
2301         * tests/rm/r-4: New file.
2303 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2305         * src/stat.c: Include <stddef.h>
2306         (alignof): New macro.
2307         (HAVE_STRUCT_STATXFS_F_FSID___VAL, HAVE_STRUCT_STATXFS_F_FSID_VAL):
2308         Remove.
2309         (STRUCT_STATXFS_F_FSID_IS_INTEGER): New macro.
2310         (FSID_VAL): Remove.
2311         (print_statfs): If f_fsid isn't an integer, grab its words one
2312         at a time in little-endian order.  This is a bit easier to configure
2313         and should avoid a compilation failure on MacOS reported by Bruno
2314         Haible.
2316 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2318         * src/stat.c (HAVE_STRUCT_STATXFS_F_FSID_VAL, FSID_VAL): New macros, to
2319         work around a Mac OS X porting problem reported by Bruno Haible in
2320         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00308.html>.
2321         (print_statfs): Use them.
2323         * bootstrap.conf (gnulib_modules): Add isapipe.
2324         * src/tail.c: Include isapipe.h.
2325         (IS_PIPE_LIKE_FILE_TYPE): Remove.
2326         (IS_TAILABLE_FILE_TYPE): Just list both FIFOs and sockets as
2327         tailable, since this seems to be portable.
2328         (main): Use isapipe, to fix a bug on MacOS X reported by Bruno Haible in
2329         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00304.html>.
2331         * src/system.h (LOCALEDIR): Remove, since configmake.h now defines
2332         it for us.
2334 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2336         * src/copy.c (copy_internal): Don't test whether macros like
2337         S_ISLNK are defined, since they're always defined now.
2338         * src/cp.c (main): Likewise.
2339         * src/ln.c (main): Likewise.
2340         * src/ls.c (get_link_name, make_link_name): Likewise.
2341         * src/mknod.c (main): Likewise.
2342         * src/mkfifo.c (usage): Likewise.
2343         * src/who.c (S_IWGRP): Likewise.
2345         Adjust to recent gnulib changes for the gnulib module.
2346         * bootstrap.conf (gnulib_modules): Add fcntl.
2347         * src/system.h (SEEK_SET, SEEK_CUR, SEEK_END): Remove.  Other code
2348         is already assuming these macros are defined.
2349         (O_DIRECT, O_DIRECTORY, O_DSYNC, O_NDELAY, O_NOATIME, O_NONBLOCK):
2350         (O_NOCTTY, O_NOFOLLOW, O_NOLINKS, O_RSYNC, O_SYNC, O_BINARY, O_TEXT):
2351         Remove; the fcntl module now handles these.
2353         Adjust to recent gnulib changes for the inttypes module.
2354         * bootstrap.conf (gnulib_modules): Remove stdint; add inttypes.
2355         (excluded_files): Don't exclude m4/inttypes-h.m4 or m4/inttypes-pri.m4.
2357         * src/system.h: Don't bother to include <stdint.h>, since we can
2358         now assume inttypes.h does the equivalent of including stdint.h.
2360 2006-08-27  Jim Meyering  <jim@meyering.net>
2362         * src/copy.c (copy_internal): Don't make a backup if the last
2363         component of the source name is "." or "..".
2364         Reported by Andreas Schwab in http://savannah.gnu.org/bugs/?17540.
2365         * NEWS: Mention this.
2366         * tests/cp/src-base-dot: New file.  Test for the above fix.
2367         * tests/cp/Makefile.am (TESTS): Add src-base-dot.
2369         * src/system.h (DOT_OR_DOTDOT): Remove macro.  Rewrite as a...
2370         (dot_or_dotdot): ...new static inline function.
2371         * src/remove.c (rm_1): Reflect this renaming.
2372         * src/ls.c (basename_is_dot_or_dotdot): Likewise.
2374         * src/copy.c (copy_internal): Add comments.
2376 2006-08-26  Paul Eggert  <eggert@cs.ucla.edu>
2378         * src/Makefile.am (AM_CPPFLAGS): Remove -I$(srcdir) and -I../lib,
2379         since Automake supplies them for us.  It always did -I$(srcdir),
2380         and with the recent change to AC_CONFIG_HEADERS in configure.ac it
2381         is now also doing -I../lib.
2383         * bootstrap (get_translations): Skip this if WGET_COMMAND is empty.
2384         Fail if the first "echo" fails.  Suppress diagnostics from "ls po/*.po"
2385         since there might not be any .po files.
2386         (WGET_COMMAND): Set to empty if wget doesn't
2387         seem to be available.
2389 2006-08-26  Jim Meyering  <jim@meyering.net>
2391         This test was failing in some environments.
2392         * tests/ls/color-dtype-dir: Don't rely on eval "`dircolors -b`"
2393         to set LS_COLORS in the environment.
2394         * tests/envvar-check: Instead, ensure that LS_COLORS is not set.
2395         Reported by Bob Proulx.
2397         * src/c99-to-c89.diff: Remove hunk for copy.c; no longer needed.
2399         * Makefile.am (EXTRA_DIST): Remove these files here, too:
2400         .x-sc_no_if_have_config_h, .x-sc_prohibit_assert_without_use,
2401         .x-sc_two_space_separator_in_usage.
2403         Fix "mv --verbose --backup" so its output includes the
2404         " (backup: foo.~1~)" suffix also when backing up a directory.
2405         * NEWS: Report this bug fix.
2406         * src/copy.c (emit_verbose): New function, factored out of...
2407         (copy_internal): ...here.  Use the new function.
2408         * tests/mv/backup-dir: Test for the above fix.
2409         * tests/mv/Makefile.am (TESTS): Add backup-dir.
2411 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2413         * .x-sc_no_if_have_config_h: Remove; no longer needed.
2414         * .x-sc_prohibit_assert_without_use: Remove; it was empty.
2415         * .x-sc_two_space_separator_in_usage: Likewise.
2416         * Makefile.maint (sc_no_have_config_h): Renamed from
2417         sc_no_if_have_config_h, since it now checks that HAVE_CONFIG_H
2418         is absent everywhere.
2419         * bootstrap.conf (gnulib_modules): Add config-h.
2420         * src/shred.c: Include <config.h> unconditionally, since
2421         we now assume config.h exists.
2422         * src/dircolors.c: Likewise.
2424 2006-08-26  Jim Meyering  <jim@meyering.net>
2426         "ls --color" would highlight other-writable and sticky directories
2427         no differently than regular directories on a file system with
2428         dirent.d_type support.
2429         * NEWS: Say the above.
2430         * src/ls.c (gobble_file): With --color, also stat the file when
2431         we know it is a directory.
2432         Derived from an anonymous one-line fix and bug report:
2433         <http://savannah.gnu.org/bugs/?15043>.
2434         * tests/ls/color-dtype-dir: New file.  Test for the above fix.
2435         * tests/ls/Makefile.am (TESTS): Add color-dtype-dir.
2437 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2439         * .cvsignore: Remove stamp-h1.  Add coreutils-*, to ignore
2440         tarballs.
2441         * bootstrap.conf: Add configmake, verify.
2442         * src/.cvsignore: Remove localedir.h.
2443         * src/Makefile.am (localedir, DISTCLEANFILES, localedir.h): Remove;
2444         subsumed by configmake.
2445         * src/system.h: Include configmake.h rather than localedir.h
2446         (LOCALEDIR): New macro.
2448         Rewrite to avoid some unnecessary casts, macros, literals.
2449         * src/shred.c (DEFAULT_PASSES, VERBOSE_UPDATE): Now constants,
2450         not macros.
2451         (SECTOR_SIZE, SECTOR_MASK): New constants.
2452         (fillpattern, dopass, do_wipefd, main): Remove unnecessary casts,
2453         and use the SECTOR_* constants when applicable.  Check for size <
2454         0 rather than size == -1, since negative-size files are a sign of
2455         trouble anyway.
2457 2006-08-25  Bruno Haible  <bruno@clisp.org>
2459         * src/shred.c (dopass): Assume a continuable error if EIO even
2460         if the current position is not a multiple of 512.
2462 2006-08-24  Jim Meyering  <jim@meyering.net>
2464         * src/stat.c (print_statfs): Fix typo: remove extra "sizeof".
2466 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
2468         * src/stat.c (HAVE_STRUCT_STATXFS_F_FSID___VAL): Define.  This
2469         macro was being used without being defined.
2470         (SB_F_NAMEMAX): Remove cast.
2471         (f_fsid) [BeOS]: Likewise.
2472         (OUT_NAMEMAX): Renamed from NAMEMAX_FORMAT, with a new meaning.
2473         All uses changed.
2474         (out_string, out_int, out_uint, out_uint_o, out_uint_x): New
2475         functions.
2476         (xstrcat): Remove.  All uses changed to use the above functions.
2477         (print_statfs, print_stat): 2nd arg is now the prefix len, not the
2478         buffer len.  All uses changed.  Output '?', not '*', for unknown
2479         data or errors.  Do not assume signed values can be interchanged
2480         with unsigned when printing.
2481         (print_statfs): For %i, print the fsid as a single int, not as a
2482         pair.
2483         (print_it): Quote invalid format better.
2485         * NEWS: printf supports the I flag.
2486         * src/printf.c (print_formatted) [glibc 2.2 or later]: Likewise.
2488 2006-08-23  Bruno Haible  <bruno@clisp.org>
2490         * src/stat.c (STRUCT_STATVFS, statfs, f_fsid, f_blocks, f_bfree) [BeOS]:
2491         (f_bavail, f_bsize, STATFS_FRSIZE, f_files, f_ffree) [BeOS]:
2492         (STATXFS_FILE_SYSTEM_TYPE_MEMBER_NAME) [BeOS]: Define.
2494         * src/ls.c (SA_RESTART): Fallback define.
2496 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
2498         * src/system.h (EDQUOT): Define if not already defined.
2499         Problem reported by Bruno Haible for BeOS.
2501         * .cvsignore: Remove config.h, config.hin, as they are now
2502         in lib.
2503         * configure.ac (AC_CONFIG_HEADERS): Move config.h and config.hin
2504         to lib.
2505         * src/Makefile.am (AM_CPPFLAGS): Remove '-I..'; no longer needed.
2507         * bootstrap (slurp): Define gl_LOCK_EARLY instead of gl_LOCK,
2508         to accommodate today's gnulib change.
2510 2006-08-23  Jim Meyering  <jim@meyering.net>
2512         * NEWS: Mention the sweeping infrastructure changes.
2514 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2516         * bootstrap.conf (gnulib_modules): Add gnupload.
2517         * Makefile.maint (emit_upload_commands): gnupload is now
2518         in build-aux.
2519         * gnupload: Remove from CVS, since it's now a gnulib module.
2521         * bootstrap (bootstrap_conf_cleanup): Remove.
2522         (excluded_files): New var.
2523         * bootstrap.conf: Likewise.
2524         * bootstrap (slurp): Exclude files early if they're in the
2525         excluded_files list.  That way, their names don't get put into
2526         .cvsignore.
2528         * aclocal.m4, config.hin, configure:
2529         Remove from CVS, since ./bootstrap generates them automatically.
2530         * .cvsignore: Add INSTALL, Makefile.in, aclocal.m4, config.hin,
2531         configure, *.cache, *.lineno, *.log.
2532         Remove more-specific entries.  This catches files like configure.lineno.
2533         * man/.cvsignore: Add Makefile.in.
2534         * src/.cvsignore: Add Makefile.in.
2535         Remove .version, dir.c, install, mvdir, stamp-v, vdir.c, version.c.
2537         * tests/.cvsignore:
2538         * tests/chgrp/.cvsignore:
2539         * tests/chmod/.cvsignore:
2540         * tests/chown/.cvsignore:
2541         * tests/cp/.cvsignore:
2542         * tests/cut/.cvsignore:
2543         * tests/dd/.cvsignore:
2544         * tests/dircolors/.cvsignore:
2545         * tests/du/.cvsignore:
2546         * tests/expr/.cvsignore:
2547         * tests/factor/.cvsignore:
2548         * tests/fmt/.cvsignore:
2549         * tests/head/.cvsignore:
2550         * tests/install/.cvsignore:
2551         * tests/join/.cvsignore:
2552         * tests/ln/.cvsignore:
2553         * tests/ls/.cvsignore:
2554         * tests/ls-2/.cvsignore:
2555         * tests/md5sum/.cvsignore:
2556         * tests/misc/.cvsignore:
2557         * tests/mkdir/.cvsignore:
2558         * tests/mv/.cvsignore:
2559         * tests/od/.cvsignore:
2560         * tests/pr/.cvsignore:
2561         * tests/readlink/.cvsignore:
2562         * tests/rm/.cvsignore:
2563         * tests/rmdir/.cvsignore:
2564         * tests/seq/.cvsignore:
2565         * tests/sha1sum/.cvsignore:
2566         * tests/shred/.cvsignore:
2567         * tests/sort/.cvsignore:
2568         * tests/stty/.cvsignore:
2569         * tests/sum/.cvsignore:
2570         * tests/tac/.cvsignore:
2571         * tests/tail/.cvsignore:
2572         * tests/tail-2/.cvsignore:
2573         * tests/tee/.cvsignore:
2574         * tests/test/.cvsignore:
2575         * tests/touch/.cvsignore:
2576         * tests/tr/.cvsignore:
2577         * tests/tsort/.cvsignore:
2578         * tests/unexpand/.cvsignore:
2579         * tests/uniq/.cvsignore:
2580         * tests/wc/.cvsignore:
2581         Add Makefile.in.  Sort entries if necessary.  Remove *.I, *.E,
2582         *.X, *.O, *-tests, build-script, mk-script if they're never
2583         created in this directory.
2585 2006-08-22  Bruno Haible  <bruno@clisp.org>
2587         BeOS portability.
2588         * src/uptime.c: Include OS.h if it exists.
2589         (print_uptime): On BeOS, use the get_system_info function (actually a
2590         macro). Loop through utmp entries only if utmp.h or utmpx.h exists.
2591         (uptime): Call read_utmp only if utmp.h or utmpx.h exists.
2593 2006-08-22  Jim Meyering  <jim@meyering.net>
2595         * .cvsignore: Add ABOUT-NLS.
2597         Move the check-AUTHORS rule to be run as part of "make distcheck",
2598         rather than "make check".
2599         * src/Makefile.am (check): Don't depend on check-AUTHORS; it would
2600         cause "make check" to fail on systems unable to build all binaries.
2601         * Makefile.maint (check-AUTHORS): New rule.
2602         (local-checks-available): Add it here.
2603         Reported by Bruno Haible.  Needed for BeOS.
2605 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
2607         * src/df.c (print_header, show_dev): Use a column width that
2608         depends on the block size of -P is specified and not autoscaling.
2609         Problem reported by Gustavo G. Rondina in:
2610         http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00164.html
2612 2006-08-21  Jim Meyering  <jim@meyering.net>
2614         * tests/dircolors/simple (a): Don't fail with an unexpected diagnostic
2615         when the shell variable, SHELL, is not set.
2616         Trigger the failure with "(unset SHELL; make check TESTS=simple)".
2617         Reported by Sven Joachim in <http://bugs.debian.org/355368>.
2619         * src/od.c: Now that HAVE_UNSIGNED_LONG_LONG is no longer defined
2620         in config.h, change the uses to HAVE_UNSIGNED_LONG_LONG_INT.
2621         Otherwise, on a system with 4-byte longs, "od -t u8" fails with this:
2622         od: invalid type string `u8';
2623         this system doesn't provide a 8-byte integral type
2624         FIXME: add a test for this, but skip it when sizeof uintmax < 8.
2626 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
2628         Add a bootstrap procedure, so that the CVS version contains fewer
2629         files and we bootstrap the rest from gnulib, gettext, etc.
2630         * README-cvs: New file.
2631         * bootstrap: New file.
2632         * bootstrap.conf: New file.
2633         * .x-sc_trailing_blank: Remove config-log, .gdb-history.  Add .po.
2634         * configure.ac (AC_PREREQ): Move here from m4/*.m4, for benefit
2635         of gnulib-tool.
2636         (gl_DEFAULT_POSIX2_VERSION, gl_USE_SYSTEM_EXTENSIONS, gl_PERL):
2637         (gl_IGNORE_UNUSED_LIBRARIES): Remove; now done by gnulib.
2638         (gl_EARLY): Add.
2639         (gl_MACROS): Call just after gl_EARLY, just for clarity.
2640         * src/c99-to-c89.diff: Remove patch to ls.c; no longer needed.
2641         * src/kill.c (strtoimax): Remove decl.
2642         * src/ls.c: Include "wcwidth.h" instead of rolling it ourselves.
2643         * src/wc.c: Likewise.
2644         * src/ls.c (sort_files): Rewrite to avoid need for C99-style
2645         declaration, so that we don't need to patch this file.
2646         * src/printf.c (strtoimax, strtoumax): Remove decls.
2647         * src/su.c: Include getpass.h.
2648         (getpass): remove.
2649         * src/system.h: Include mempcpy.h, stpcpy.h, strpbrk.h.
2650         Include inttypes.h unconditionally.
2651         (LONGEST_MODIFIER, PRIdMAX, PRIoMAX, PRIuMAX, PRIxMAX): Remove.
2652         (stpcpy, strndup, strstr, strtoul, mempcpy, CHAR_MIN, CHAR_MAX):
2653         (SCHAR_MIN, SCHAR_MAX, UCHAR_MAX, SHRT_MIN, SHRT_MAX, INT_MAX):
2654         (INT_MIN, INTMAX_MAX, INTMAX_MIN, UINT_MAX, LONG_MAX, ULONG_MAX):
2655         (SIZE_MAX, SSIZE_MAX, UINTMAX_MAX): Remove.
2657         * ABOUT-NLS, INSTALL, Makefile.in, man/Makefile.in:
2658         * src/Makefile.in, tests/Makefile.in, tests/chgrp/Makefile.in:
2659         * tests/chmod/Makefile.in, tests/chown/Makefile.in:
2660         * tests/cp/Makefile.in, tests/cut/Makefile.in:
2661         * tests/dd/Makefile.in, tests/dircolors/Makefile.in:
2662         * tests/du/Makefile.in, tests/expr/Makefile.in:
2663         * tests/factor/Makefile.in, tests/fmt/Makefile.in:
2664         * tests/general/Makefile.in, tests/head/Makefile.in:
2665         * tests/install/Makefile.in, tests/join/Makefile.in:
2666         * tests/ln/Makefile.in, tests/ls/Makefile.in:
2667         * tests/ls-2/Makefile.in, tests/md5sum/Makefile.in:
2668         * tests/misc/Makefile.in, tests/mkdir/Makefile.in:
2669         * tests/mv/Makefile.in, tests/od/Makefile.in:
2670         * tests/pr/Makefile.in, tests/readlink/Makefile.in:
2671         * tests/rm/Makefile.in, tests/rmdir/Makefile.in:
2672         * tests/seq/Makefile.in, tests/sha1sum/Makefile.in:
2673         * tests/shred/Makefile.in, tests/sort/Makefile.in:
2674         * tests/stty/Makefile.in, tests/sum/Makefile.in:
2675         * tests/tac/Makefile.in, tests/tail/Makefile.in:
2676         * tests/tail-2/Makefile.in, tests/tee/Makefile.in:
2677         * tests/test/Makefile.in, tests/touch/Makefile.in:
2678         * tests/tr/Makefile.in, tests/tsort/Makefile.in:
2679         * tests/unexpand/Makefile.in, tests/uniq/Makefile.in:
2680         * tests/wc/Makefile.in:
2681         Remove from CVS, since ./bootstrap generates them automatically.
2683 2006-08-20  Eric Blake  <ebb9@byu.net>
2685         * src/stat.c (USE_STATVFS): Reinstate the patch from 2006-08-15;
2686         the patch from 2006-08-18 broke on cygwin.
2688 2006-08-20  Jim Meyering  <jim@meyering.net>
2690         * NEWS: Add a line for 6.2-cvs.
2691         * configure.ac (AC_INIT): Bump to 6.2 and add "-cvs" suffix.
2693 2006-08-19  Jim Meyering  <jim@meyering.net>
2695         * Version 6.1.
2696         * NEWS: Record the 6.1 release date.
2697         * configure.ac (AC_INIT): Remove "-cvs" suffix from version string.
2699         * tests/Makefile.am (EXTRA_DIST): Add sparse-file.
2701         Avoid test failure when `make check' is run through debuild.
2702         * tests/help-version: Ensure that $SHELL is set to some value
2703         and exported.  Patch from Sven Joachim.  For details, see
2704         <http://bugs.debian.org/355368>.
2706         * tests/ls/stat-dtype: Test for the 2006-08-17 `ls -CF' fix.
2708         * README: Describe potential "pre-C99 build failure", and work-around.
2710         Some of my 2006-07-03 changes to tests/*/Makefile.am were being
2711         backed out due to updates provoked by the copyright changes.
2712         * tests/Makefile.am.in (PATH): Prepend $(VG_PATH_PREFIX), so that
2713         it propagates to the derived Makefile.am files.
2714         ($(srcdir)/Makefile.am): Mark generated .am files as read-only,
2715         so we don't mistakenly edit them again.
2716         * tests/cut/Makefile.am: Regenerate.
2717         * tests/head/Makefile.am: Likewise.
2718         * tests/join/Makefile.am: Likewise.
2719         * tests/pr/Makefile.am: Likewise.
2720         * tests/sort/Makefile.am: Likewise.
2721         * tests/tac/Makefile.am: Likewise.
2722         * tests/tail/Makefile.am: Likewise.
2723         * tests/test/Makefile.am: Likewise.
2724         * tests/tr/Makefile.am: Likewise.
2725         * tests/uniq/Makefile.am: Likewise.
2726         * tests/wc/Makefile.am: Likewise.
2728         * NEWS: Fix cp --sparse so that it preserves tail-end sparseness, even
2729         when the file's apparent size is not a multiple of its block size.
2730         * src/copy.c (copy_reg): Don't write a NUL before calling ftruncate.
2731         For some file sizes, writing that single byte would unnecessarily
2732         waste a few file blocks.  That write may have been necessary in the
2733         early days of Linux, but now, removing it should be safe.
2734         Based on a patch by Alan Curry: <http://bugs.debian.org/370792>
2735         * tests/cp/sparse: New test for the above.
2736         * tests/cp/Makefile.am (TESTS): Add sparse.
2738         * tests/sparse-file: New file, essence factored out of...
2739         * tests/du/8gb: ... here.  Use the new script.
2741 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
2743         * src/system.h (select_plural): Reduce by 1000000, not 1000, since
2744         the CVS gettext manual now suggests 1000000.
2746 2006-08-18  Bruno Haible  <bruno@clisp.org>
2748         Add support for NetBSD 3.0.
2749         * src/stat.c (USE_STATVFS): Set to 1 if 'struct statvfs' has a field
2750         f_fstypename.
2751         (STATXFS_FILE_SYSTEM_TYPE_MEMBER_NAME): Define also if 'struct statvfs'
2752         has a field f_fstypename.
2753         This undoes the 2006-08-15 to src/stat.c.
2755 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
2757         Copyright notice fixes.
2759         * COPYING: Upgrade to latest version from FSF.
2761         * src/uname.c: Use (C) in copyright notice.
2763         * .vg-suppressions: Add copyright notice.
2764         * ChangeLog: Likewise.
2765         * ChangeLog-2005: Likewise.
2766         * Makefile.am: Likewise.
2767         * NEWS: Likewise.
2768         * README: Likewise.
2769         * README-valgrind: Likewise.
2770         * TODO: Likewise.
2771         * announce-gen: Likewise.
2772         * man/Makefile.am: Likewise.
2773         * man/chmod.x: Likewise.
2774         * man/chown.x: Likewise.
2775         * man/df.x: Likewise.
2776         * man/du.x: Likewise.
2777         * man/rm.x: Likewise.
2778         * src/dircolors.hin: Likewise.
2779         * src/du-tests: Likewise.
2780         * src/extract-magic: Likewise.
2781         * src/tac-pipe.c: Likewise.
2782         * src/wheel-gen.pl: Likewise.
2783         * tests/Coreutils.pm: Likewise.
2784         * tests/Makefile.am.in: Likewise.
2785         * tests/acl: Likewise.
2786         * tests/envvar-check: Likewise.
2787         * tests/expensive: Likewise.
2788         * tests/group-names: Likewise.
2789         * tests/help-version: Likewise.
2790         * tests/mk-script: Likewise.
2791         * tests/priv-check: Likewise.
2792         * tests/rwx-to-mode: Likewise.
2793         * tests/sample-test: Likewise.
2794         * tests/setgid-check: Likewise.
2795         * tests/chgrp/basic: Likewise.
2796         * tests/chgrp/deref: Likewise.
2797         * tests/chgrp/no-x: Likewise.
2798         * tests/chgrp/posix-H: Likewise.
2799         * tests/chgrp/recurse: Likewise.
2800         * tests/chmod/c-option: Likewise.
2801         * tests/chmod/equal-x: Likewise.
2802         * tests/chmod/equals: Likewise.
2803         * tests/chmod/no-x: Likewise.
2804         * tests/chmod/octal: Likewise.
2805         * tests/chmod/setgid: Likewise.
2806         * tests/chmod/umask-x: Likewise.
2807         * tests/chmod/usage: Likewise.
2808         * tests/chown/basic: Likewise.
2809         * tests/chown/deref: Likewise.
2810         * tests/chown/separator: Likewise.
2811         * tests/cp/Makefile.am: Likewise.
2812         * tests/cp/acl: Likewise.
2813         * tests/cp/backup-1: Likewise.
2814         * tests/cp/backup-is-src: Likewise.
2815         * tests/cp/cp-HL: Likewise.
2816         * tests/cp/cp-deref: Likewise.
2817         * tests/cp/cp-mv-backup: Likewise.
2818         * tests/cp/cp-parents: Likewise.
2819         * tests/cp/deref-slink: Likewise.
2820         * tests/cp/dir-rm-dest: Likewise.
2821         * tests/cp/dir-slash: Likewise.
2822         * tests/cp/dir-vs-file: Likewise.
2823         * tests/cp/fail-perm: Likewise.
2824         * tests/cp/into-self: Likewise.
2825         * tests/cp/link: Likewise.
2826         * tests/cp/link-no-deref: Likewise.
2827         * tests/cp/link-preserve: Likewise.
2828         * tests/cp/no-deref-link1: Likewise.
2829         * tests/cp/no-deref-link2: Likewise.
2830         * tests/cp/no-deref-link3: Likewise.
2831         * tests/cp/perm: Likewise.
2832         * tests/cp/preserve-2: Likewise.
2833         * tests/cp/r-vs-symlink: Likewise.
2834         * tests/cp/same-file: Likewise.
2835         * tests/cp/slink-2-slink: Likewise.
2836         * tests/cp/special-bits: Likewise.
2837         * tests/cp/symlink-slash: Likewise.
2838         * tests/cut/Makefile.am: Likewise.
2839         * tests/cut/Test.pm: Likewise.
2840         * tests/dd/misc: Likewise.
2841         * tests/dd/not-rewound: Likewise.
2842         * tests/dd/skip-seek: Likewise.
2843         * tests/dd/skip-seek2: Likewise.
2844         * tests/dd/unblock-sync: Likewise.
2845         * tests/dircolors/simple: Likewise.
2846         * tests/du/2g: Likewise.
2847         * tests/du/8gb: Likewise.
2848         * tests/du/Makefile.am: Likewise.
2849         * tests/du/basic: Likewise.
2850         * tests/du/deref: Likewise.
2851         * tests/du/deref-args: Likewise.
2852         * tests/du/exclude: Likewise.
2853         * tests/du/fd-leak: Likewise.
2854         * tests/du/files0-from: Likewise.
2855         * tests/du/hard-link: Likewise.
2856         * tests/du/inaccessible-cwd: Likewise.
2857         * tests/du/long-from-unreadable: Likewise.
2858         * tests/du/long-sloop: Likewise.
2859         * tests/du/no-deref: Likewise.
2860         * tests/du/no-x: Likewise.
2861         * tests/du/restore-wd: Likewise.
2862         * tests/du/slash: Likewise.
2863         * tests/du/slink: Likewise.
2864         * tests/du/trailing-slash: Likewise.
2865         * tests/du/two-args: Likewise.
2866         * tests/expr/basic: Likewise.
2867         * tests/factor/basic: Likewise.
2868         * tests/fmt/basic: Likewise.
2869         * tests/fmt/long-line: Likewise.
2870         * tests/general/Makefile.am: Likewise.
2871         * tests/general/atgeneral.m4: Likewise.
2872         * tests/general/dd.at: Likewise.
2873         * tests/head/Makefile.am: Likewise.
2874         * tests/head/Test.pm: Likewise.
2875         * tests/install/basic-1: Likewise.
2876         * tests/install/create-leading: Likewise.
2877         * tests/install/d-slashdot: Likewise.
2878         * tests/install/trap: Likewise.
2879         * tests/join/Makefile.am: Likewise.
2880         * tests/join/Test.pm: Likewise.
2881         * tests/ln/backup-1: Likewise.
2882         * tests/ln/misc: Likewise.
2883         * tests/ln/sf-1: Likewise.
2884         * tests/ln/target-1: Likewise.
2885         * tests/ls/Makefile.am: Likewise.
2886         * tests/ls/Test.pm: Likewise.
2887         * tests/ls/dangle: Likewise.
2888         * tests/ls/dired: Likewise.
2889         * tests/ls/file-type: Likewise.
2890         * tests/ls/follow-slink: Likewise.
2891         * tests/ls/infloop: Likewise.
2892         * tests/ls/inode: Likewise.
2893         * tests/ls/m-option: Likewise.
2894         * tests/ls/no-arg: Likewise.
2895         * tests/ls/recursive: Likewise.
2896         * tests/ls/rt-1: Likewise.
2897         * tests/ls/stat-dtype: Likewise.
2898         * tests/ls/stat-failed: Likewise.
2899         * tests/ls/stat-vs-dirent: Likewise.
2900         * tests/ls/symlink-slash: Likewise.
2901         * tests/ls/time-1: Likewise.
2902         * tests/ls-2/tests: Likewise.
2903         * tests/md5sum/basic-1: Likewise.
2904         * tests/md5sum/newline-1: Likewise.
2905         * tests/misc/Makefile.am: Likewise.
2906         * tests/misc/base64: Likewise.
2907         * tests/misc/basename: Likewise.
2908         * tests/misc/cat-proc: Likewise.
2909         * tests/misc/close-stdout: Likewise.
2910         * tests/misc/csplit: Likewise.
2911         * tests/misc/date: Likewise.
2912         * tests/misc/date-sec: Likewise.
2913         * tests/misc/df: Likewise.
2914         * tests/misc/dirname: Likewise.
2915         * tests/misc/expand: Likewise.
2916         * tests/misc/false-status: Likewise.
2917         * tests/misc/fold: Likewise.
2918         * tests/misc/head-c: Likewise.
2919         * tests/misc/head-elide-tail: Likewise.
2920         * tests/misc/head-pos: Likewise.
2921         * tests/misc/mknod: Likewise.
2922         * tests/misc/nice: Likewise.
2923         * tests/misc/nl: Likewise.
2924         * tests/misc/nohup: Likewise.
2925         * tests/misc/paste-no-nl: Likewise.
2926         * tests/misc/pathchk1: Likewise.
2927         * tests/misc/printf: Likewise.
2928         * tests/misc/printf-hex: Likewise.
2929         * tests/misc/pwd-long: Likewise.
2930         * tests/misc/sha224sum: Likewise.
2931         * tests/misc/sha256sum: Likewise.
2932         * tests/misc/sha384sum: Likewise.
2933         * tests/misc/sha512sum: Likewise.
2934         * tests/misc/shuf: Likewise.
2935         * tests/misc/sort-merge: Likewise.
2936         * tests/misc/sort-rand: Likewise.
2937         * tests/misc/split-a: Likewise.
2938         * tests/misc/split-fail: Likewise.
2939         * tests/misc/split-l: Likewise.
2940         * tests/misc/stat-fmt: Likewise.
2941         * tests/misc/stat-printf: Likewise.
2942         * tests/misc/tac-continue: Likewise.
2943         * tests/misc/test-diag: Likewise.
2944         * tests/misc/tty-eof: Likewise.
2945         * tests/misc/wc-files0: Likewise.
2946         * tests/misc/wc-files0-from: Likewise.
2947         * tests/mkdir/concurrent-1: Likewise.
2948         * tests/mkdir/p-1: Likewise.
2949         * tests/mkdir/p-2: Likewise.
2950         * tests/mkdir/p-3: Likewise.
2951         * tests/mkdir/p-slashdot: Likewise.
2952         * tests/mkdir/p-thru-slink: Likewise.
2953         * tests/mkdir/parents: Likewise.
2954         * tests/mkdir/perm: Likewise.
2955         * tests/mkdir/special-1: Likewise.
2956         * tests/mkdir/t-slash: Likewise.
2957         * tests/mkdir/writable-under-readonly: Likewise.
2958         * tests/mv/Makefile.am: Likewise.
2959         * tests/mv/acl: Likewise.
2960         * tests/mv/atomic: Likewise.
2961         * tests/mv/backup-is-src: Likewise.
2962         * tests/mv/childproof: Likewise.
2963         * tests/mv/diag: Likewise.
2964         * tests/mv/dir-file: Likewise.
2965         * tests/mv/dir2dir: Likewise.
2966         * tests/mv/dup-source: Likewise.
2967         * tests/mv/force: Likewise.
2968         * tests/mv/hard-2: Likewise.
2969         * tests/mv/hard-3: Likewise.
2970         * tests/mv/hard-4: Likewise.
2971         * tests/mv/hard-link-1: Likewise.
2972         * tests/mv/i-1: Likewise.
2973         * tests/mv/i-2: Likewise.
2974         * tests/mv/i-3: Likewise.
2975         * tests/mv/i-4: Likewise.
2976         * tests/mv/i-link-no: Likewise.
2977         * tests/mv/into-self: Likewise.
2978         * tests/mv/into-self-2: Likewise.
2979         * tests/mv/into-self-3: Likewise.
2980         * tests/mv/into-self-4: Likewise.
2981         * tests/mv/leak-fd: Likewise.
2982         * tests/mv/mv-special-1: Likewise.
2983         * tests/mv/no-target-dir: Likewise.
2984         * tests/mv/part-fail: Likewise.
2985         * tests/mv/part-hardlink: Likewise.
2986         * tests/mv/part-rename: Likewise.
2987         * tests/mv/part-symlink: Likewise.
2988         * tests/mv/partition-perm: Likewise.
2989         * tests/mv/perm-1: Likewise.
2990         * tests/mv/reply-no: Likewise.
2991         * tests/mv/setup: Likewise.
2992         * tests/mv/to-symlink: Likewise.
2993         * tests/mv/trailing-slash: Likewise.
2994         * tests/mv/update: Likewise.
2995         * tests/mv/vfat: Likewise.
2996         * tests/od/od-N: Likewise.
2997         * tests/od/x8: Likewise.
2998         * tests/pr/Makefile.am: Likewise.
2999         * tests/pr/Test.pm: Likewise.
3000         * tests/readlink/can-e: Likewise.
3001         * tests/readlink/can-f: Likewise.
3002         * tests/readlink/can-m: Likewise.
3003         * tests/readlink/rl-1: Likewise.
3004         * tests/rm/Makefile.am: Likewise.
3005         * tests/rm/cycle: Likewise.
3006         * tests/rm/dangling-symlink: Likewise.
3007         * tests/rm/deep-1: Likewise.
3008         * tests/rm/dir-no-w: Likewise.
3009         * tests/rm/dir-nonrecur: Likewise.
3010         * tests/rm/dot-rel: Likewise.
3011         * tests/rm/empty-inacc: Likewise.
3012         * tests/rm/empty-name: Likewise.
3013         * tests/rm/f-1: Likewise.
3014         * tests/rm/fail-2eperm: Likewise.
3015         * tests/rm/fail-eperm: Likewise.
3016         * tests/rm/hash: Likewise.
3017         * tests/rm/i-1: Likewise.
3018         * tests/rm/i-no-r: Likewise.
3019         * tests/rm/inaccessible: Likewise.
3020         * tests/rm/interactive-always: Likewise.
3021         * tests/rm/interactive-once: Likewise.
3022         * tests/rm/ir-1: Likewise.
3023         * tests/rm/isatty: Likewise.
3024         * tests/rm/no-give-up: Likewise.
3025         * tests/rm/r-1: Likewise.
3026         * tests/rm/r-2: Likewise.
3027         * tests/rm/r-3: Likewise.
3028         * tests/rm/rm1: Likewise.
3029         * tests/rm/rm2: Likewise.
3030         * tests/rm/rm3: Likewise.
3031         * tests/rm/rm4: Likewise.
3032         * tests/rm/rm5: Likewise.
3033         * tests/rm/sunos-1: Likewise.
3034         * tests/rm/unread2: Likewise.
3035         * tests/rm/unread3: Likewise.
3036         * tests/rm/unreadable: Likewise.
3037         * tests/rmdir/fail-perm: Likewise.
3038         * tests/rmdir/ignore: Likewise.
3039         * tests/rmdir/t-slash: Likewise.
3040         * tests/seq/basic: Likewise.
3041         * tests/sha1sum/basic-1: Likewise.
3042         * tests/sha1sum/sample-vec: Likewise.
3043         * tests/shred/exact: Likewise.
3044         * tests/shred/remove: Likewise.
3045         * tests/sort/Makefile.am: Likewise.
3046         * tests/sort/Test.pm: Likewise.
3047         * tests/sort-time/Makefile: Likewise.
3048         * tests/sort-time/README: Likewise.
3049         * tests/sort-time/rand-gen: Likewise.
3050         * tests/stty/basic-1: Likewise.
3051         * tests/stty/row-col-1: Likewise.
3052         * tests/sum/basic-1: Likewise.
3053         * tests/sum/sysv: Likewise.
3054         * tests/tac/Makefile.am: Likewise.
3055         * tests/tac/Test.pm: Likewise.
3056         * tests/tail/Makefile.am: Likewise.
3057         * tests/tail/Test.pm: Likewise.
3058         * tests/tail-2/Makefile.am: Likewise.
3059         * tests/tail-2/append-only: Likewise.
3060         * tests/tail-2/assert: Likewise.
3061         * tests/tail-2/assert-2: Likewise.
3062         * tests/tail-2/big-4gb: Likewise.
3063         * tests/tail-2/fflush: Likewise.
3064         * tests/tail-2/infloop-1: Likewise.
3065         * tests/tail-2/proc-ksyms: Likewise.
3066         * tests/tail-2/start-middle: Likewise.
3067         * tests/tail-2/tail-n0f: Likewise.
3068         * tests/tee/basic: Likewise.
3069         * tests/tee/dash: Likewise.
3070         * tests/test/Makefile.am: Likewise.
3071         * tests/test/Test.pm: Likewise.
3072         * tests/touch/Makefile.am: Likewise.
3073         * tests/touch/dangling-symlink: Likewise.
3074         * tests/touch/empty-file: Likewise.
3075         * tests/touch/fail-diag: Likewise.
3076         * tests/touch/fifo: Likewise.
3077         * tests/touch/no-create-missing: Likewise.
3078         * tests/touch/no-rights: Likewise.
3079         * tests/touch/not-owner: Likewise.
3080         * tests/touch/obsolescent: Likewise.
3081         * tests/touch/read-only: Likewise.
3082         * tests/touch/relative: Likewise.
3083         * tests/tr/Makefile.am: Likewise.
3084         * tests/tr/Test.pm: Likewise.
3085         * tests/tr/failures: Likewise.
3086         * tests/tsort/basic-1: Likewise.
3087         * tests/unexpand/basic-1: Likewise.
3088         * tests/uniq/Makefile.am: Likewise.
3089         * tests/uniq/Test.pm: Likewise.
3090         * tests/wc/Makefile.am: Likewise.
3091         * tests/wc/Test.pm: Likewise.
3093 2006-08-17  Jim Meyering  <jim@meyering.net>
3095         ls -CF would misalign columns in some cases.
3096         * src/ls.c (get_type_indicator): New function.  extracted from...
3097         (print_type_indicator): ...here.  Use it.
3098         (length_of_file_name_and_frills): Use it here, too, rather than
3099         assuming stat.st_mode is valid.
3100         Reported by Andreas Schwab, here:
3101         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/7774>
3102         See the test for this above. FYI, I did ls -CF /proc and visually
3103         inspected the result.
3105         * src/copy.c (copy_internal, same_file_ok): Adjust comments not
3106         to mention the now-removed cp_options.xstat member.
3108         * Makefile.maint (patch-check): Adapt to work now that the patch
3109         modifies more than one file in src/.
3111         With this patch, permit building with Solaris cc on Solaris 7.
3112         * src/c99-to-c89.diff: Add diffs to convert more c99-isms.
3113         This integrates patches from Bruno Haible.
3115 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
3117         Fix some problems reported by Bruno Haible.
3118         * tests/chmod/setgid (abs_srcdir): Remove; not used or needed.
3119         Skip this test if "chmod g+s d" silently does nothing.
3120         * tests/ls-2/tests: Skip this test suite if we can't set up files
3121         properly for the setuid-etc test.  This simplifies some of the
3122         hacks we were using to work around porting problems.
3124 2006-08-16  Jim Meyering  <jim@meyering.net>
3126         * tests/cp/Makefile.am: Don't mark "acl" as XFAIL.
3127         * tests/cp/acl: Instead, skip the test if either setfacl
3128         or getfacl fails.
3129         Reported by Michael Stone.
3131 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
3133         * tests/lang-default (LC_ALL): Set to "C", so we get
3134         English-language diagnostics.  Unset the other variables; it
3135         should be portable to use 'unset' for this stuff nowadays.
3136         Problem reported by Bruno Haible.  Using "C" reverses the
3137         2000-10-22 change to fileutils in this area.
3139         Fix bugs when printing plurals of numbers that are not
3140         unsigned long int values.
3141         * src/system.h (select_plural): New function.
3142         * src/md5sum.c (digest_check): Use select_plural to avoid bug.
3143         * src/uptime.c (print_uptime): Likewise.
3144         * src/dd.c (print_stats): Likewise.  Also, don't use ngettext to
3145         print a floating point number, as reducing to 0 or 1 doesn't work
3146         for some languages.  Instead, just use "s" for seconds since it
3147         doesn't need a plural form.
3149 2006-08-16  Bruno Haible  <bruno@clisp.org>
3151         Old versions of gzip would write --help output to stderr, and it
3152         would be annoying to see that in the output of every "make" command.
3153         * Makefile.maint (gzip_rsyncable): Throw away stderr output of
3154         "gzip --help".
3156 2006-08-16  Andreas Schwab  <schwab@suse.de>
3158         * tests/cp/acl: Don't use non-portable == operator for test.
3160 2006-08-16  Jim Meyering  <jim@meyering.net>
3162         * tests/ls/stat-dtype: Use stat to test file system type, rather
3163         than df -T, in case /etc/mtab lies.  Reported by Michael Stone.
3165 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3167         * NEWS: Mention that df exits with nonzero status if it generates
3168         no output.  This change was in 6.0 but inadvertently unmentioned.
3169         * src/df.c (file_systems_processed): Renamed from n_valid_args, and now
3170         a boolean.
3171         (show_dev): Don't set it until we actually output something.
3172         Print the header if this is the first output.
3173         (main): Don't print a header, as that is now show_dev's job.
3174         * tests/misc/Makefile.am (TESTS): Add df.
3175         * tests/misc/df: New file.
3177 2006-08-15  Eric Blake  <ebb9@byu.net>
3179         * src/stat.c (USE_STATVFS): Define to 0 if f_type is needed, but
3180         statvfs.f_type not present.  See
3181         <http://savannah.gnu.org/bugs/?func=detailitem&item_id=16325>.
3183 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3185         * src/dd.c (print_stats): Don't substitute "1" for number, as this
3186         causes confusion for the Hungarian translators.  Problem reported
3187         by Egmont Koblinger here:
3188         http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/7726
3190 2006-08-15  Jim Meyering  <jim@meyering.net>
3192         * .x-sc_require_config_h: Add lib/at-func.c.
3194         * NEWS: Add a line for 6.1-cvs.
3195         * configure.ac (AC_INIT): Bump to 6.1 and add "-cvs" suffix.
3197 2006-08-15  Jim Meyering  <jim@meyering.net>
3199         * Version 6.0.
3200         * NEWS: Record the 6.0 release date.
3201         * configure.ac (AC_INIT): Remove "-cvs" suffix from version string.
3203         * TODO: Add an item (convert to use gnulib-tool), add to the plan
3204         for id-vs-getgrouplist, and remove a few completed items.
3206         * Makefile.maint (alpha beta major): Fix syntax error.
3208 2006-08-13  Jim Meyering  <jim@meyering.net>
3210         * src/shred.c (usage): Don't indent the second line of an item.
3211         Otherwise, help2man would misformat the output.
3212         Reported by Adam Buchbinder in <https://launchpad.net/bugs/48917>.
3214 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
3216         * configure.ac (AM_GNU_GETTEXT): Upgrade to need-formatstring-macros.
3217         Suggested by Eric Blake to avoid problems like
3218         <http://lists.gnu.org/archive/html/bug-coreutils/2006-07/msg00087.html>.
3220 2006-08-11  Jim Meyering  <jim@meyering.net>
3222         * tests/ls/stat-vs-dirent: Too many (losing) systems trigger the
3223         failure that this test checks for (stat/dirent inode mismatch at
3224         a mount point), so continue to give a diagnostic about the failure,
3225         but don't actually count it as a failure.
3227 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
3229         * ABOUT-NLS: Update from gettext 0.15.
3230         * configure.ac (AM_GNU_GETTEXT_VERSION): Update from 0.13.1 to 0.15.
3232         * src/csplit.c (struct control): Remove fastmap member.
3233         (extract_regexp): Allocate fastmap separately, since otherwise
3234         it might move due to a realloc.  This fixes a bug that led
3235         to a core dump on 64-bit sparc Solaris 10 (Sun Studio 10).
3237 2006-08-10  Jim Meyering  <jim@meyering.net>
3239         * tests/ls/stat-dtype: If "." is tmpfs, skip this test unless uname -s
3240         reports "Linux".  This avoids a failure on Solaris 10's tmpfs.
3241         Redirect both stdout and stderr of df invocations.
3243         * src/dircolors.hin: Add a TERM directive for each of the following:
3244         ansi, color-xterm, gnome, konsole, kterm, rxvt-cygwin,
3245         rxvt-cygwin-native, screen.linux, xterm-256color.
3246         Sort the TERM directives.
3247         From Mike Frysinger.
3249 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3251         * src/dd.c (usage): Warn about oflag=append without conv=notrunc.
3252         See Debian bug 373736.
3254         * src/dircolors.hin: Add mlterm, rxvt-unicode; this fixes Debian
3255         bug 317503.
3257         * src/.cvsignore: Add shuf.
3259         * Makefile.maint: Remove the po-update procedure; it doesn't
3260         work with the new repository on http://www.iro.umontreal.ca/.
3261         For now I guess we'll have to fix things by hand.
3262         (do-po-update, po-update): Remove.  All references removed.
3264         * src/shuf.c (next_line): New function.
3265         (read_input): Use it, to avoid relying on GCC-specific behavior
3266         with void * arithmetic.  Problem reported by Bob Proulx.
3267         * Makefile.maint (my-distcheck): Compile with -Wpointer-arith
3268         to detect this sort of problem automatically in the future.
3270 2006-08-09  Jim Meyering  <jim@meyering.net>
3272         * src/ls.c: Add a compile-time check to ensure that filetype
3273         and filetype_letter have the same number of elements.
3275         * tests/misc/sort-rand: Remove use of --seed=S.
3277 2006-08-08  Paul Eggert  <eggert@cs.ucla.edu>
3279         Add a command 'shuf', and modify shred and sort to use the new
3280         random number generator library of 'shuf'.
3282         * AUTHORS: Add shuf.
3283         * README: Likewise.
3284         * NEWS: Likewise.  Mention new --random-source option for shred
3285         and sort.  Move "sort +1 -2" notice to the appropriate section,
3286         and clarify its role with respect to POSIXLY_CORRECT.
3287         * man/.cvsignore: Add shuf.1.
3288         * man/Makefile.am (dist_man_MANS): Add shuf.1.
3289         (shuf.1): New dependency.
3290         * man/shuf.x: New file.
3291         * src/Makefile.am (bin_PROGRAMS): Add shuf.
3292         (EXTRA_DIST): Remove rand-isaac.c.
3293         (shuf_LDADD): New macro.
3294         * src/rand-isaac.c: Remove, moving most of its contents to
3295         lib/rand-isaac.c.
3296         * src/shuf.c: New file.
3297         * src/shred.c: Use new random-number interface rather than rand-isaac.c.
3298         Don't include rand-isaac.c; include randint.h and randread.h instead.
3299         (RANDOM_SOURCE_OPTION): New enum.
3300         (long_opts, usage, main): New option --random-source.
3301         * src/sort.c: Likewise.
3302         * src/shred.c (struct irand_state, irand_init, irand32, irand_mod): Remove.
3303         All callers changed to use randint interface.
3304         (fillrand): Remove.  All callers changed to use randread interface.
3305         (dopass): Remove dependency on ISAAC buffer size.
3306         (genpattern): Don't wipe the random state here.
3307         (randint_source): New static var.
3308         (clear_random_data): New function.
3309         (main): Allocate random source, and arrange to wipe it on exit.
3310         * src/sort.c: Include md5.h, randread.h, xmemxfrm.h.
3311         (longopts, usage, main): Remove undocumented --seed option;
3312         it's now replaced by --random-source.
3313         (rand_state, get_hash): Remove.
3314         (randread_source): New static var.
3315         (random_state, cmp_hashes, compare_random): New functions; they guarantee
3316         no collisions in the random hash function.
3317         (keycompare): Use compare_random for -R; don't fall back on comparing
3318         via memcoll, since compare_random does the right thing.
3319         * tests/misc/Makefile.am (TESTS): Add shuf.
3320         * tests/misc/shuf: New file.
3322 2006-07-29  Paul Eggert  <eggert@cs.ucla.edu>
3324         * src/copy.c (set_author): Preserve the st_author field via the
3325         file descriptor dest_desc.
3327 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
3329         * NEWS: chmod now preserves setuid and setgid bits on directories
3330         if you use a numeric mode with them clear, e.g., "chmod 755 DIR".
3332         Fix test case problems if working directory is setgid,
3333         reported by Bob Proulx.
3334         * tests/cp/fail-perm: Use symbolic mode so that we clear
3335         setgid bit more reliably on directories.
3336         * tests/mkdir/special-1 (set_mode_string): Likewise.
3338 2006-07-27  Jim Meyering  <jim@meyering.net>
3340         * src/chgrp.c (usage): Use correct grammar in description of the
3341         --reference option
3342         * src/chown.c (usage): Likewise.
3344 2006-07-26  Thomas Schwinge  <tschwinge@gnu.org>  (tiny change)
3346         * src/copy.c (set_author) [HAVE_STRUCT_STAT_ST_AUTHOR]:
3347         Correctly access SRC_SB's element ST_AUTHOR.
3349 2006-07-26  Jim Meyering  <jim@meyering.net>
3351         * tests/ls/stat-failed: Adapt to match new expected output.
3352         From Paul Eggert.
3354         * src/ls.c (print_color_indicator): Test for S_IFREG first, rather
3355         than having the code test for all of the other types first.
3356         Hoist the set-uid/gid-testing code "up" into this new block.
3357         Classify any other type of file (e.g., S_TYPEISSHM, etc.) as
3358         C_ORPHAN, not as C_FILE.
3360 2006-07-26  Jim Meyering  <jim@meyering.net>
3362         Checking in a change from Paul.
3364         2006-07-25  Paul Eggert  <eggert@cs.ucla.edu>
3366         * src/ls.c (DT_INIT): Remove.  All uses removed.
3367         (enum filetype): Use an ordinary enum rather than trying to keep
3368         the values in sync with DT_FIFO etc.  That way, we don't have
3369         to make special assumptions about them.  All uses changed.
3370         (whiteout): New constant member of enum filetype.
3371         (filetype_letter): New constant, for use with enum filetype.
3372         (FILETYPE_INDICATORS): New initializer list.
3373         (print_dir): Add case for DT_WHT.
3374         (gobble_file): If stat fails, don't discard information from
3375         readdir; instead, preserve it so it can be printed.
3376         (print_long_format): Fall back on readdir result if stat info
3377         is not available.  Use "?" to denote each unknown mode char,
3378         instead of an overall "?", since we now know some of the mode
3379         typically.
3380         (print_type_indicator): Now that MODE isn't necessarily
3381         useful, guard all uses.
3382         Now that two blocks in the type-checking tree can set "type = C_FILE",
3383         move the suffix-handling code out and down.
3385 2006-07-26  Jim Meyering  <jim@meyering.net>
3387         Prepare for the above change.
3388         * src/ls.c [struct fileinfo] (stat_ok): Rename from stat_failed,
3389         and adjust uses.  From a patch by Paul Eggert.
3391 2006-07-26  Jim Meyering  <jim@meyering.net>
3393         * src/ls.c: Correct indentation/formatting in a few places.
3395 2006-07-25  Paul Eggert  <eggert@cs.ucla.edu>
3397         * tests/cp/fail-perm: Use "chmod 0500" rather than "chmod 500".
3398         Problem report and fix from Bob Proulx.
3399         * NEWS: Clarify the "chmod 0500" news, and correct the vague
3400         statements about compatibility with BSD.
3402 2006-07-25  Jim Meyering  <jim@meyering.net>
3404         * src/ls.c (gobble_file): When handling a stat-failed entry,
3405         print the entry name not the absolute_name -- to be consistent
3406         with the usual case.
3407         * tests/ls/stat-failed: Update accordingly.
3409         * src/ls.c: Add parens around the new uses of ?: ternary operator.
3411         * src/dircolors.hin: Mention that ORPHAN refers not just to dangling
3412         symlinks.
3414         Get --dired offsets right when handling stat-failed entries.
3415         * src/ls.c (print_long_format): Be careful to increment P by the
3416         appropriate amount, even when inode_number_width and nlink_width
3417         are zero.
3418         * tests/ls/stat-failed: Test for the above.
3420         * src/ls.c (gobble_file) [USE_ACL]: Don't use-uninitialized the
3421         have_acl member.  That would happen for a directory with both a
3422         non-stat'able entry and one with an ACL.
3424         * src/ls.c (gobble_file): Make it so failure to stat a
3425         non-command-line file provokes an exit status of 1, not 0.
3426         Say "cannot access" rather than "cannot stat".
3427         * tests/ls/stat-failed: New file/test, for the above.
3428         * tests/ls/Makefile.am (TESTS): Add stat-failed.
3429         * tests/ls-2/tests (no-a-isdir-b): Update to reflect addition
3430         of "cannot access " to diagnostic.
3432         * src/ls.c: Declare stat_failed to be "bool", not "int" everywhere.
3434         * src/ls.c [enum filetype] (command_line): Remove member.  Not needed.
3435         Replace all occurrences of "type == command_line" with the
3436         equivalent, "command_line_arg".
3438         * src/ls.c: Apply the stat-failed parts of Red Hat's
3439         coreutils-selinux.patch.  From Ulrich Drepper.
3440         This makes it so files not mentioned on the command line (e.g.,
3441         names read from a directory that *is* mentioned on the command
3442         line) for which stat fails are still listed.  With --color,
3443         such files are colored just like ORPHANs (aka dangling symlinks).
3445         * src/df.c (n_valid_args): Declare global to be static.
3447 2006-07-24  Jim Meyering  <jim@meyering.net>
3449         * tests/ls/stat-dtype: Skip this test on reiserfs, since that file
3450         system lacks d_type support.
3452 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
3454         * man/chmod.x: Update to reflect recent changes to coreutils.texi.
3456 2006-07-21  Jim Meyering  <jim@meyering.net>
3458         * src/su.c (usage): Correct typo in --help output: s/commmand/command/
3459         Reported by Tim Waugh.
3460         Also remove the comment duplicating much of --help output.
3462         * src/ls.c (FILE_TYPE_INDICATOR_OPTION): Reposition this new
3463         name so the list remains alphabetized.
3465         Fix another bug: ls --indicator-style=file-type would call
3466         stat for a symlink, even though it wasn't always needed.
3467         In some cases, that unnecessary stat would cause ls to fail.
3468         * src/ls.c (gobble_file): Don't treat symlinks specially (in
3469         requiring a stat syscall).  Remove the offending exclusion.
3471         * NEWS: Mention the fix.
3473         * tests/ls/stat-dtype: New file/test, for the above fix.
3474         Also exercises the new df feature, below.
3476         * src/df.c (main): Fail and don't print the headers if no
3477         file system is processed.  This makes it easy to test whether
3478         a specified directory is on a file system of a given type or types.
3479         Otherwise, applications would have had to parse df's output.
3480         E.g., is "." either ext3 or reiserfs: df -t ext3 -t reiserfs .
3482         Fix a bug: ls --file-type worked like --indicator-style=slash,
3483         rather than like --indicator-style=file-type.
3484         * src/ls.c (FILE_TYPE_INDICATOR_OPTION): New enum member.
3485         (long_options): Map "file-type" to FILE_TYPE_INDICATOR_OPTION,
3486         not to 'p'.
3487         (decode_switches): Handle new case: FILE_TYPE_INDICATOR_OPTION.
3488         * NEWS: Mention the fix.
3489         * tests/ls-2/tests (file-type): New test, for the above fix.
3491 2006-07-19  Jim Meyering  <jim@meyering.net>
3493         * src/ls.c (print_dir): Give a better diagnostic for failed opendir.
3495         * Makefile.am (EXTRA_DIST): Add build-aux/vc-list-files.
3497 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
3499         * NEWS: chmod, install, and mkdir now leave setgid and setuid bits
3500         of directories alone unless you specify them explicitly.
3501         install and mkdir now implement X correctly.
3502         install now creates parent directories with mode 755, without
3503         changing their owner or group.
3504         * src/chmod.c (process_file): Adjust to mode_adjust API change.
3505         * src/install.c: Include mkancesdirs.h.
3506         (announce_mkdir, make_ancestor): New functions.
3507         (DEFAULT_MODE): New macro, specifying initial value of 'mode'.
3508         (mode): Use it.
3509         (dir_mode, dir_mode_bits): New vars.
3510         (main): Set dir modes separately from nondir, so that the X
3511         op of -m works correctly.
3512         (main): Remove cwd_errno cruft, since make_dir_parents no longer
3513         affects cwd.  Adjust to new make_dir_parents API.
3514         (install_file_in_file_parents): 2nd arg is now char *, not char
3515         const *.  Use mkancesdirs instead of rolling our own code.
3516         (change_attributes): Don't worry about AFS, since that kludge
3517         should not be needed any more.
3518         * src/mkdir.c (struct mkdir_options): New struct.
3519         (announce_mkdir, make_ancestor): New functions.
3520         (main): Use them.  Adjust to mode_adjust API change.  Stick with
3521         umask 0.  Use make_dir_parents for all the work.
3522         * src/mkfifo.c (main): Adjust to new mode_adjust API.
3523         * src/mknod.c (main): Likewise.
3524         * tests/chmod/setgid: Do the setgid test instead of bailing.
3525         * tests/mkdir/p-3: Remove re_protect case that no longer applies.
3526         GNU chmod now behaves like other versions of chmod.
3527         * tests/mkdir/perm: Add a test for the X bug.
3529 2006-07-14  Paul Eggert  <eggert@cs.ucla.edu>
3531         * src/base64.c (do_decode): Output to parameter OUT, not to stdout.
3532         This doesn't fix any bugs, since OUT always equals stdout, but it
3533         makes the code easier to understand.
3535 2006-07-14  Jim Meyering  <jim@meyering.net>
3537         * Makefile.maint (CVS_LIST): Use new file, build-aux/vc-list-files,
3538         rather than open-coding it.  Now supports mercurial, too.
3539         * .hgignore: New file.
3540         * Makefile.am (EXTRA_DIST): Add .hgignore, which ignores nearly
3541         all generated files, including ones like configure and po/*.po
3542         that are currently version-controlled in cvs.
3544         * Makefile.am (EXTRA_DIST): Add a few more .??* files.
3545         They've been in CVS, just haven't been distributed before this.
3546         Distribute ChangeLog-2005, too.
3547         (MAINTAINERCLEANFILES): Add THANKS-to-translators.
3549 2006-07-11  Paul Eggert  <eggert@cs.ucla.edu>
3551         * src/system.h: Assume <dirent.h> exists, since gnulib assumes
3552         this now as well.
3554 2006-07-09  Jim Meyering  <jim@meyering.net>
3556         * tests/mv/dir2dir: Adjust so failing with ENOTEMPTY is ok, too.
3557         That happens with Linux/tmpfs.
3558         * tests/mv/Makefile.am (TESTS): Add dir2dir.
3560 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
3562         Adjust to recent updates from gnulib.
3563         * src/dd.c (apply_translations): Use toupper rather than
3564         islower followed by toupper; it's simpler and typically
3565         faster now that we assume at least C89 semantics.  Similarly
3566         for tolower.
3567         * src/sort.c (inittables): Likewise.
3568         * src/expand.c (expand): Don't assume that isprint etc. return
3569         booleans (needed for pre-C99 hosts).
3570         * src/fmt.c (check_punctuation): Likewise.
3571         * src/ptx.c (initialize_regex, fix_output_parameters): Likewise.
3572         * src/tr.c (is_char_class_member): Likewise.
3573         * src/unexpand.c (unexpand): Likewise.
3574         * src/join.c (is_blank): Remove; no longer needed.  All uses
3575         replaced by isblank (to_uchar (...)).
3576         * src/pinky.c (create_fullname): Don't assume char is unsigned.
3577         * src/printf.c (print_esc): Likewise.
3578         * src/ptx.c (SKIP_NON_WHITE, SKIP_WHITE, SKIP_WHITE_BACKWARDS):
3579         (copy_unescaped_string): Likewise.
3580         * src/stat.c (print_it): Likewise.
3581         * src/system.h (_D_EXACT_NAMELEN): Renamed from NLENGTH, for
3582         convenience on GNU systems.  All uses changed.  Don't bother
3583         looking for any dirent.h substitute other than ndir.h.
3584         (D_INO): Remove unnecessary parentheses.
3585         (IN_CTYPE_DOMAIN, ISGRAPH, ISPRINT, ISALNUM, ISALPHA):
3586         (ISCNTRL, ISLOWER, ISPUNCT, ISSPACE, ISUPPER, ISXDIGIT):
3587         (ISDIGIT_LOCALE, TOLOWER, TOUPPER): Remove.  All uses changed
3588         to ctype.h equivalents.
3589         (isblank): Renamed from ISBLANK.  Check for HAVE_DECL_ISBLANK too.
3590         All uses changed.
3592 2006-07-08  Jim Meyering  <jim@meyering.net>
3594         * tests/mv/dir2dir: New file, test for 2006-07-05 fix in copy.c.
3596         * Makefile.maint (sc_the_the): New rule.
3598         * src/dd.c (skip): Remove one of two adjacent "the"s in a comment.
3599         * tests/Coreutils.pm (run_tests): Remove one of two adjacent "then"s
3600         in a comment.
3602 2006-07-07  Jim Meyering  <jim@meyering.net>
3604         * NEWS: Mention that mv can now remove an empty destination directory,
3605         and give an example.  Prompted by a report from Florent Bayle.
3607 2006-07-05  Jim Meyering  <jim@meyering.net>
3609         * src/ls.c (usage): Correct the description of -G: it is useful
3610         only in a long listing.  Reported by Martin Pool in
3611         <https://launchpad.net/distros/ubuntu/+source/coreutils/+bug/51653>.
3613         * man/chmod.x: Correct the description of the sticky bit.  Reported
3614         by Chris Moore via Ian Jackson in <http://bugs.debian.org/376745>.
3616         * src/copy.c (copy_internal): Don't work around old NFS clients like
3617         SunOS-4.1.4 and Irix 5.3 that set errno to values like EIO and
3618         ENOTEMPTY upon failed rename.  Otherwise, we risk misinterpreting
3619         a banal failure as a recursive move-into-self failure.
3620         Reported by Florent Bayle in <http://bugs.debian.org/376749>.
3622         * src/c99-to-c89.diff: Regenerate, to remove fuzz.
3624 2006-07-03  Jim Meyering  <jim@meyering.net>
3626         Plug another unusual leak.
3627         (AD_mark_helper): Free malloc'd filename if hash_insert says
3628         that string is already in the hash table.
3630         The dev/inode of the topmost directory in each hierarchy were not
3631         being recorded.
3632         * src/remove.c (remove_cwd_entries): Don't call cycle_check here.
3633         (AD_push): Call it from here instead.
3635         Fix two small leaks.
3636         * src/remove.c (AD_stack_clear): New function.
3637         (rm_1): Use it.
3638         (AD_pop_and_chdir): Free *prev_dir just before longjmp.
3640         * tests/Makefile.am, tests/*/Makefile.am: (TESTS_ENVIRONMENT):
3641         Add $VG_PATH_PREFIX as a prefix to $PATH
3643         * tests/envvar-check (vars): Add CDPATH and POSIXLY_CORRECT.
3644         * tests/Makefile.am (evar-check): Remove rule.
3645         (EXTRA_DIST): Remove .env-warn.
3646         * tests/.env-warn: Remove file.  No longer used.
3647         Suggestion from Eric Blake.
3649 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
3651         * src/system.h: Include <stdint.h> unconditionally, since we
3652         now assume the stdint module.
3654 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
3656         * NEWS: With no operand, 'tail -f' now silently ignores the '-f'
3657         only if standard input is a FIFO or pipe and POSIXLY_CORRECT is set.
3658         * src/tail.c (main): Implement this.
3659         * tests/tail/Test.pm (f-pipe-1): Renamed from f-1.
3660         (test_vector): Set POSIXLY_CORRECT for the f-pipe-* tests.
3662 2006-07-01  Jim Meyering  <jim@meyering.net>
3664         * src/ln.c (do_link): Use new, shorter URL, for ag-review link.
3666         * .x-sc_require_config_h: Add ^lib/xstrtold\.c$, so make distcheck
3667         passes once again.
3669 2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
3671         * NEWS: seq now uses long double internally rather than double.
3672         It now defaults to a minimal fixed point format if possible.
3673         It lets you use %a, %A, %E, %F, %G.
3674         * src/Makefile.am (seq_LDADD): Remove $(SEQ_LIBM); add $(POW_LIB).
3675         * src/seq.c: Don't include <math.h> or <xstrtol.h>; no longer needed.
3676         (isfinite) [!defined isfinite]: New macro.
3677         (separator, terminator): Now points to const.
3678         (first, step, last): Remove.
3679         (usage): Update to match new behavior.
3680         (struct operand, operand): New type.
3681         (scan_arg): Renamed from scan_double_arg, since we no longer use double.
3682         All uses changed.
3683         Compute and return a value of type operand, not double.
3684         (long_double_format): Renamed from valid_format, and now returns a
3685         new format with an "L" added if needed, if the original format was
3686         valid.  Allow %a, %A, %E, %F, and %G formats.
3687         (print_numbers): Take numeric values as args rather than from globals.
3688         Print long double, not double.
3689         (get_width_format): Remove.
3690         (get_default_format): New function.
3691         (main): Implement new way of calculating default format.
3692         Don't worry about locale's representation of the decimal point, since
3693         the arguments are always processed in the C locale.
3694         * tests/seq/basic (neg-2): Adjust to new default format.
3695         (eq-wid-1, eq-wid-2): Resurrect these tests, since the new
3696         implementation should do the right thing.
3698 2006-06-30  Jim Meyering  <jim@meyering.net>
3700         * tests/stty/basic-1: Work around an intermittent test failure
3701         on HP-UX 11.11.  Report and analysis from Bob Proulx.
3702         http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/7475
3704 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
3706         * NEWS: Support obsolete usages like "sort +1 -2" even when
3707         conforming to POSIX 1003.1-2001, since this is a pure extension to
3708         POSIX.  Problem reported by Christian in:
3709         http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00220.html
3710         * src/sort.c (main): Implement this.
3712         * src/system.h (CLOSEDIR): Remove.  All uses changed to closedir.
3713         Autoconf 2.60 says this stuff was obsolete.
3715 2006-06-28  Jim Meyering  <jim@meyering.net>
3717         * src/c99-to-c89.diff: Regenerate, to remove fuzz.
3719 2006-06-28  Bob Proulx  <bob@proulx.com>  (tiny change)
3721         * tests/mv/i-link-no: Work around HP-UX /bin/sh tracing problem
3722         (set -x when VERBOSE=yes) when stderr is redirected before stdout
3723         causing shell tracing of the stdout redirection to be written to
3724         the stderr file.  Avoid problem and test failure on HP-UX by
3725         redirecting stderr last.
3726         * tests/dd/unblock-sync: Order shell file redirections for
3727         stderr and stdout in the common style.
3728         tests/acl: Likewise.
3730 2006-06-27  Jim Meyering  <jim@meyering.net>
3732         * tests/misc/cat-proc: Try to avoid any spurious numeric
3733         differences in frequently-changing /proc/cpuinfo.
3734         Reported by Nelson Beebe.
3736 2006-06-26  Jim Meyering  <jim@meyering.net>
3738         Attempt rmdir (actually, unlinkat-with-AT_REMOVEDIR) upon any
3739         fd_to_subdirp failure, not just when errno == EACCES.
3740         * src/remove.c (remove_dir): Use unlinkat-with-AT_REMOVEDIR, not
3741         rmdir, here, even though rmdir may happen to be adequate.
3743         * NEWS: rm no longer fails to remove an empty, unreadable directory
3744         * src/remove.c (remove_cwd_entries): If we can't open a directory,
3745         and the failure is not being ignored, try to remove the directory
3746         with rmdir (aka unlinkat-with-AT_REMOVEDIR), in case it's empty.
3747         Problem report and test case from Paul Eggert in
3748         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/7425>.
3750         * tests/rm/empty-inacc: New test, for the above.
3752         Avoid a segfault for wc --files0=- < /dev/null.
3753         * src/wc.c (compute_number_width): Return right away if nfiles == 0.
3755 2006-06-25  Jim Meyering  <jim@meyering.net>
3757         * NEWS: wc accepts a new option --files0-from=FILE, where FILE
3758         contains a list of NUL-separated file names.
3760         * src/wc.c: Include "readtokens.h".
3761         (usage): Describe the new option, and adjust the `Usage':
3762         with this option, no FILE may be specified on the command line.
3763         (main): Handle the new option.
3764         * tests/misc/wc-files0: New tests, for the above.
3765         * tests/misc/wc-files0-from: Likewise.
3766         * tests/misc/Makefile.am (TESTS): Add wc-files0.
3768 2006-06-24  Jim Meyering  <jim@meyering.net>
3770         * src/md5sum.c (DIGEST_BUFFER): Remove now-unused definitions.
3772 2006-06-22  Jim Meyering  <jim@meyering.net>
3774         * src/tee.c (tee_files): Rename from tee, to avoid conflict with
3775         the function in glibc's <fcntl.h>.  Reported by Andreas Schwab.
3777 2006-06-19  Jim Meyering  <jim@meyering.net>
3779         * Makefile.cfg (local-checks-to-skip): Add changelog-check,
3780         so this check is not run as part of "make distcheck".
3782 2006-06-18  Bob Proulx  <bob@proulx.com>  (tiny change)
3784         * tests/misc/pwd-long: Fix typo (s/neq/ne/) in previous change.
3786 2006-06-18  Jim Meyering  <jim@meyering.net>
3788         * tests/misc/pwd-long: Make error output a little clearer.
3790 2006-06-17  Jim Meyering  <jim@meyering.net>
3792         * tests/rm/inaccessible: Skip this test on systems without openat
3793         support.  Reported by Bob Proulx.
3795 2006-06-15  Bob Proulx  <bob@proulx.com>  (tiny change)
3797         * tests/misc/mknod: Improve permission checks to handle
3798         running mkdir test in set-gid directories.
3800 2006-06-14  Jim Meyering  <jim@meyering.net>
3802         * tests/du/basic: Revamp not to hard-code file system block sizes.
3804 2006-06-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3806         * tests/du/Makefile.am (TESTS_ENVIRONMENT): Pass $(PERL), for
3807         files0-from test.
3809 2006-06-11  Jim Meyering  <jim@meyering.net>
3811         * .gitignore: New file.
3812         * Makefile.am (EXTRA_DIST): Add .gitignore.
3814         Setting TIME_STYLE=long-iso in the environment would make the
3815         cp/same-file test fail.
3816         * tests/envvar-check (vars): Add TIME_STYLE to the list.
3817         * tests/cp/same-file: Revert last change.
3818         Source the envvar-check script, to ensure that TIME_STYLE
3819         settings don't affect these tests.
3821 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
3823         * tests/cp/same-file: Execute 'ls' in the C locale, so that it
3824         uses POSIX time stamp formats.  Problem reported by John Nixon in
3825         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00062.html>.
3827 2006-06-10  Jim Meyering  <jim@meyering.net>
3829         * NEWS: Mention the AIX-strndup-bug vs. dircolors workaround.
3831         Require a "Version N.M" line at the top of the ChangeLog
3832         file only when making the actual release, not when running
3833         "make distcheck".
3834         * Makefile.maint (maintainer-distcheck): Don't depend on
3835         changelog-check.
3836         (alpha beta major): Depend on it here, instead.
3838 2006-06-08  Jim Meyering  <jim@meyering.net>
3840         Ensure that cat works with any of the options, -A -v -e -E -T,
3841         when applied to files in /proc and /sys, even when the FIONREAD
3842         ioctl produces nonsensical results.  Before this change, cat would
3843         produce no output (or truncated output), for some linux kernels.
3845         * src/cat.c (write_pending): New function, factored out of cat.
3846         (cat): Also interpret a negative ioctl/FIONREAD count as indicating
3847         that there are bytes to read.  Some versions of linux-2.6.16 do that.
3848         Write any pending output before returning.
3849         Reported by Dan Jacobson in <http://bugs.debian.org/370583>.
3850         * NEWS: Mention this bug fix.
3851         * tests/misc/cat-proc: New file.  Test for the above.
3852         * tests/misc/Makefile.am (TESTS): Add cat-proc.
3854 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
3856         * src/expr.c (eval4): Detect overflow properly when multiplying
3857         INTMAX_MIN * -1.
3859 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
3861         * NEWS: The 'expr' command now detects and reports integer overflow.
3862         (It would be better to use extended precision instead, but that
3863         would be more work.)
3864         * src/expr.c (integer_overflow): New function.
3865         (eval4, eval3): Check for integer overflow.
3867 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
3869         Fix problems when building with Solaris/SVR4/etc. make, which uses a
3870         different and somewhat bogus implementation of VPATH.  In the
3871         directory tests/misc, rename tests whose names might appear in the
3872         Automake-generated rules.  For example, we can't use a test named
3873         'test', since Automake generates a rule that contains the text
3874         "if test -f ./$$tst; ...", and this might expand to something like
3875         "if ../../../coreutils-6.0/tests/misc/test -f ./$$test; ...",
3876         which executes the 'test' script rather than the 'test' command.
3877         * tests/misc/false-status: Renamed from tests/misc/false.
3878         * tests/misc/pwd-long: Renamed from tests/misc/pwd.
3879         * tests/misc/sort-merge: Renamed from tests/misc/sort.
3880         ($prog): Set to 'sort' rather than to $PROG.
3881         * tests/misc/test-diag: Renamed from tests/misc/test.
3882         * tests/misc/Makefile.am (PROG): Take the basename of $$tst,
3883         in case Solaris make has prepended the directory.
3884         (TESTS): Adjust to above renamings.
3885         * tests/misc/expand: Don't assign to PROG; no longer needed
3886         now that Makefile.am sets PROG to the basename.
3887         * tests/misc/fold: Likewise.
3889 2006-06-03  Jim Meyering  <jim@meyering.net>
3891         Make `cp --link --no-dereference' work also on systems where the
3892         link system call cannot create a hard link to a symbolic link.
3893         * src/copy.c (copy_internal) [LINK_FOLLOWS_SYMLINKS]: Don't use
3894         the link syscall on a symlink when it would do the wrong thing.
3895         Based on the patch by Aurelien Jarno: <http://bugs.debian.org/329451>
3896         * tests/cp/link-no-deref: New file/test for the above.
3897         * tests/cp/Makefile.am (TESTS): Add link-no-deref.
3898         * NEWS: Mention the change (doesn't affect Linux).
3900 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
3902         Fix some porting problems in the test cases reported by
3903         Ralf Wildenhues for HP-UX 11.23 in:
3904         http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00238.html
3905         * tests/help-version: Don't assume that \< \> works in sed.
3906         * tests/misc/close-stdout: Don't assume that >&- works.
3907         Add a /dev/full test.
3908         * tests/touch/no-create-missing: Don't assume that >&- works.
3910 2006-05-30  Jim Meyering  <jim@meyering.net>
3912         * src/ls.c (usage): Add `v' to the list of sorting-related options.
3913         From Justin Pryzby.
3915 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3917         * tests/cp/fail-perm: source lang-default.
3918         * tests/rm/inaccessible: Likewise.
3920 2006-05-28  Jim Meyering  <jim@meyering.net>
3922         * tests/rm/inaccessible: AIX 4.3.3 gives a different diagnostic.
3923         Recognize it, too.  Reported by Ralf Wildenhues, in
3924         http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00192.html
3926 2006-05-27  Jim Meyering  <jim@meyering.net>
3928         * src/chgrp.c: Support new options: --preserve-root and
3929         --no-preserve-root.  Somehow this program was skipped when those
3930         options were added to chown, chmod, and rm.  Reported by
3931         vaqflabuopac@spammotel.com in <http://bugs.debian.org/365656>.
3932         * NEWS: Mention this.
3934 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
3936         * NEWS: Remove mention of --seed.  We'll replace it with something
3937         better, and don't want to indicate that it is supported.
3938         * src/sort.c (usage): Likewise.
3940 2006-05-20  Jim Meyering  <jim@meyering.net>
3942         * src/chmod.c (main): Use FTS_PHYSICAL here, too.
3944         * src/du.c (main): Rename local, s/symlink_deref_bit/symlink_deref_bits/
3945         and arrange for -D to set fts' FTS_PHYSICAL bit as well as
3946         FTS_COMFOLLOW.  Spotted by Justin Pryzby.
3948         * gnupload: Merge changes from automake, retaining the ""--to...
3949         kludge to placate overzealous `make distcheck' check.
3951 2006-05-19  Jim Meyering  <jim@meyering.net>
3953         * src/du.c (main): Don't let -D, -L, or -P turn off the internal
3954         FTS_TIGHT_CYCLE_CHECK directory traversal option.
3955         Reported by Justin Pryzby in http://bugs.debian.org/367691
3957 2006-05-15  Jim Meyering  <jim@meyering.net>
3959         * src/cp.c (usage): Correct description of -a: s/-dpR/-dpPR/.
3960         From Tomas Pospisek.
3962 2006-05-13  Jim Meyering  <jim@meyering.net>
3964         * tests/mv/no-target-dir: Test two more cases.
3966 2006-05-11  Jim Meyering  <jim@meyering.net>
3968         mv -T DIR EMPTY_DIR no longer fails unconditionally
3969         * src/copy.c (copy_internal): Don't manually prohibit a move where
3970         the destination is an existing directory.  Sometimes doing that is
3971         valid.  Let the rename system call enforce the rules.  That is
3972         allowed only when the source is a directory and the destination
3973         directory (to be replaced) is empty.  Reported by Eric Blake.
3974         * tests/mv/no-target-dir: New file/test for this.
3975         * tests/mv/Makefile.am (TESTS): Add no-target-dir.
3976         * NEWS: Mention this.
3978         * tests/mv/atomic: New file/test for yesterday's fix.
3979         * tests/mv/Makefile.am (TESTS): Add atomic.
3981         * tests/du/long-sloop: Avoid harmless `ambiguous redirect' diagnostic.
3983 2006-05-10  Jim Meyering  <jim@meyering.net>
3985         * src/copy.c (copy_internal): Don't explicitly unlink the destination
3986         when moving a symlink into the place of an existing non-directory.
3987         Reported by Joshua Hudson.
3988         * NEWS: mention this.
3990 2006-05-07  Jim Meyering  <jim@meyering.net>
3992         * Makefile.maint (patch-check): Fail if patch generates any output,
3993         even merely for changed offsets.
3995         * src/c99-to-c89.diff: Adjust to reflect new offsets.
3997         * NEWS: Mention changes affecting df, pwd, shred.
3999 2006-05-06  Jim Meyering  <jim@meyering.net>
4001         * tests/ls/stat-vs-dirent: New test, to detect the bogus file
4002         system condition where dirent.d_ino != stat.st_ino.
4003         * tests/ls/Makefile.am (TESTS): Add stat-vs-dirent.
4005 2006-05-06  Eric Blake  <ebb9@byu.net>
4007         * tests/ls/inode: Expand to test inode from readdir case.
4008         * tests/ls/follow-slink: Expand to test broken links encountered
4009         implicitly, favoring Solaris 9 and OpenBSD 3.4 behavior.
4011 2006-05-06  Eric Blake  <ebb9@byu.net>
4013         * tests/mv/leak-fd: Work even on case-insensitive file system.
4015 2006-05-04  Jim Meyering  <jim@meyering.net>
4017         * NEWS: Mention the 2006-03-19 pwd-related change that makes
4018         lib/getcwd.c work around inconsistent file system dirent.d_ino data.
4020 2006-05-03  Jim Meyering  <jim@meyering.net>
4022         * src/ls.c (DEFINE_SORT_FUNCTIONS, LIST_SORTFUNCTION_VARIANTS):
4023         Use better macro parameter names: s/basename/key_name/,
4024         s/basefunc/key_cmp_func.  Fix typo in comment.
4026 2006-04-29  Eric Blake  <ebb9@byu.net>
4028         * src/ls.c (main): On systems with d_type, directories_first only
4029         implies format_needs_type, not format_needs_stat.
4031 2006-05-03  Jim Meyering  <jim@meyering.net>
4033         * src/ls.c (xstrcoll_df_version, rev_xstrcoll_df_version): Add space
4034         after comma in arg list, from Eric Blake.
4036 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
4038         * tests/misc/date (relative-3): New test, derived from a bug
4039         report by John Thomas McDole.
4041 2006-04-23  Francesco Montorsi  <fr_m@hotmail.com>
4043         New option for ls: --group-directories-first.
4044         It makes ls list directories before files.
4045         * NEWS [New features]: Mention it.
4046         * src/ls.c (sort_type): Rearrange to use as an array index when
4047         choosing sort function; added new sort_numtypes member for
4048         compile-time check.
4049         (time_type): Add new time_numtypes member for compile-time check.
4050         (directories_first): New global variable.
4051         (GROUP_DIRECTORIES_FIRST_OPTION): New enum.
4052         (long_options): Add --directories-first.
4053         (main): Support new option.
4054         (is_directory): New function.
4055         (extract_dirs_from_files): Use it.
4056         (DIRFIRST_CHECK, DEFINE_SORT_FUNCTIONS)
4057         (LIST_SORTFUNCTION_VARIANTS): New macros.
4058         (sort_functions): New global variable.
4059         (sort_files): Use it.
4060         (usage): Document new option.
4062 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
4064         * src/shred.c (fillrand): The assertion was way too weak, due to
4065         what must be a typo.  Strengthen it to its intended value.
4066         (dopass): Don't use alloca; it's not worth the aggravation here,
4067         since it's used only to get a page-aligned buffer, and page
4068         alignment doesn't buy us much here.  I'm suspicious that alloca
4069         causes problems on some hosts, due to a recent bug report by Adam
4070         Waltman: http://bugs.gentoo.org/130246.
4072 2006-04-18  Jim Meyering  <jim@meyering.net>
4074         * tests/misc/tty-eof: Add new programs, base64, sha224sum, sha256sum,
4075         sha384sum, sha512sum.
4077 2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
4079         * src/chmod.c (describe_change): Adjust to filemode changes.
4080         * src/ls.c (HAVE_ST_DM_MODE): Remove; moved to ../lib/filemode.c.
4081         (print_long_format): Use (new) filemodestring rather than
4082         (old) mode_string, so that we get more file types right, at least
4083         in theory.  Adjust to filemode changes.
4084         * src/stat.c (human_access): Likewise.
4086 2006-04-18  Jim Meyering  <jim@meyering.net>
4088         * src/ptx.c (main) [DEFAULT_IGNORE_FILE]: Remove code to use a default
4089         ignore file.  This has never been enabled.  Reported by Eric Blake.
4091 2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
4093         * src/ln.c (linkfunc): Remove.  This method ran into a compiler/linker
4094         bug in Interix.  Just call symlink or link directly.  All uses changed.
4095         * src/setuidgid.c (main) [! HAVE_SETGROUPS]: Don't call setgroups.
4096         * src/stat.c (USE_STATVFS): New macro.
4097         Include <sys/statvfs.h> and use statvfs only if USE_STATVFS.
4098         (NAMEMAX_FORMAT): define a bit more clearly, now that the
4099         statvfs-using code is a bit more regular.
4100         * src/system.h (sync) [!HAVE_SYNC]: New macro.
4102 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
4104         * NEWS: csplit, nl, expr now conform to POSIX better, and are
4105         more-compatible with traditional Unix, with respect to regular
4106         expressions.
4107         * src/csplit.c (extract_regexp): Set re_syntax_options to a
4108         value that is compatible with what POSIX requires.
4109         * src/nl.c (build_type_arg): Likewise.
4110         * src/expr.c (docolon): Likewise.  Also, don't let anchors match
4111         newline; this fixes an incompatibility with tradition and with POSIX.
4112         Don't warn about leading ^.  POSIX says it is unspecified whether
4113         ^ is a special character, which means that implementations can
4114         either treat it as special or not, but either way a warning is not
4115         allowed (unless the regexp is otherwise invalid).  Instead, anchor
4116         the expression but treat ^ as an anchor; this is the traditional
4117         behavior (e.g., Solaris 10).
4118         (eval4, eval3, eval2): Treat non-numeric args, division by zero,
4119         and the like as invalid expressions (exit status 2), not as
4120         failure of 'expr' (exit status 3).  This is more consistent with
4121         how Solaris behaves.
4122         * tests/expr/basic (fail-a): Adjust exit status to match new expr
4123         behavior, for status 2 versus 3.
4124         (anchor): New test.
4125         (bre1, bre2, bre3, bre4, bre5, bre6, bre7, bre8, bre9, bre10):
4126         (bre11, bre12, bre13, bre14, bre15, bre16, bre17, bre18, bre19, bre20):
4127         (bre21, bre22, bre23, bre24, bre25, bre26, bre27, bre28, bre29, bre30):
4128         (bre31, bre32, bre33, bre34, bre35, bre36, bre37, bre38, bre39, bre40):
4129         (bre41, bre42, bre43, bre44, bre45, bre46, bre47, bre48, bre49, bre50):
4130         (bre51, bre52, bre53, bre54, bre55, bre56, bre57, bre58, bre59, bre60):
4131         (bre61, bre62): New tests.
4132         * tests/misc/csplit: Use \{...\} in test RE, to test that we're
4133         conforming to POSIX.
4135         Port to Solaris 8.
4136         * tests/du/long-from-unreachable: Solaris 8 sh doesn't understand
4137         "if !".  Do not assume that 'sed' can handle long, newline-free input.
4138         * tests/du/long-sloop: Likewise.  Evaluate expr once, not $n times.
4140 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
4142         Adjust to new regex.h API (with new fastmap type), and clean
4143         up the regex storage allocation a bit.
4145         * src/csplit.c (struct control): Put re_compiled member at the
4146         end, since it's large.  Change regexpr member from char * to bool;
4147         all uses changed.  Add new member fastmap.
4148         (extract_regexp): regexp arg is now char const *, not char *.
4149         Don't bother duplicating the regular expression; it's not needed.
4150         Set fastmap from new fastmap member.  Don't bother allocating
4151         a buffer, as the regexp code does a better job than we do.
4152         * src/expr.c (docolon): Allocate and use a fastmap.
4153         Don't bother allocating a buffer.
4154         * src/nl.c (body_fastmap, header_fastmap, footer_fastmap):
4155         New vars.
4156         (build_type_arg): New fastmap arg.  All uses changed.
4157         Don't bother allocating a buffer, but set a fastmap.
4158         * src/ptx.c (context_regex_string, word_regex_string): Remove.
4159         (context_regex, word_regex): New vars, replacing the above.
4160         All uses changed.
4161         (struct regex_data): New type.
4162         (compile_regex): Renamed from alloc_and_compile_regex, since
4163         we no longer allocate storage.  Arg is now a struct regex_data *,
4164         not a const char *.  All uses changed.  Don't allocate the fastmap;
4165         instead, take it from the caller.  Don't convert size_t to int,
4166         to avoid arithmetic overflow problems.  Don't bother freeing
4167         storage afterwards; it's not worth the aggravation.
4168         * src/tac.c (compiled_separator_fastmap): New ver.
4169         (main): Use it.  Don't bother allocating a buffer.
4171 2006-03-30  Jim Meyering  <jim@meyering.net>
4173         * src/dd.c (iwrite): Remove assignment without effect.
4174         Reported by Felix Rauch Valenti.
4176 2006-03-22  Eric Blake  <ebb9@byu.net>
4178         * src/ptx.c (usage): Remove mention of --copyright/-C.
4179         (main): Alias --copyright to --version plus a deprecation warning.
4180         * NEWS: Mention this.
4182 2006-03-27  Jim Meyering  <jim@meyering.net>
4184         * src/Makefile.am (uptime_LDADD): Add $(POW_LIB), for uptime's
4185         use of strtod.  Tiny patch from Nickolai Zeldovich.
4187 2006-03-11  Eric Blake  <ebb9@byu.net>
4189         * tests/misc/dirname: New file.
4190         * tests/basename/Makefile.am: Delete.
4191         * tests/basename/basic: Move to...
4192         * tests/misc/basename: ... this new file.  Add some tests,
4193         including fixed behavior for //.
4194         * tests/misc/Makefile.am (TESTS): Sort.  Add basename, dirname.
4195         * tests/Makefile.am (SUBDIRS): Remove basename.
4196         * configure.ac (AC_CONFIG_FILES): Remove tests/basename.
4198         Improvements to dirname/basename handling on platforms like
4199         cygwin with distinct // and with drive letters.
4200         * NEWS: Document new behavior.
4201         * src/basename.c (main): Don't strip suffix from file system
4202         roots.
4203         * src/cp.c (target_directory_operand): Use new last_component.
4204         (ASSIGN_BASENAME_STRDUPA): Likewise.  Reduce time spent
4205         traversing the string.
4206         * src/dircolors.c (guess_shell_syntax): Use new last_component.
4207         * src/install.c (target_directory_operand, install_file_in_dir):
4208         Likewise.
4209         * src/ln.c (target_directory_operand, main): Likewise.
4210         * src/ls.c (basename_is_dot_or_dotdot): Likewise.
4211         * src/mv.c (target_directory_operand, movefile): Likewise.
4212         * src/remove.c (rm_1): Likewise.
4213         * src/shred.c (wipename): Likewise.
4214         * src/split.c (next_file_name): Likewise.
4215         * src/su.c (log_su, run_shell): Likewise.
4217 2006-03-23  Paul Eggert  <eggert@cs.ucla.edu>
4219         * NEWS: nohup diagnostics are now more precise, and nohup now
4220         redirects stderr to nohup.out if stdout is closed and stderr is a tty.
4221         * src/nohup.c (main): Implement this.
4222         * tests/misc/nohup: Test the new behavior.
4224 2006-03-12  Jim Meyering  <jim@meyering.net>
4226         * src/copy.c (set_author): Rename function, from preserve_author.
4228         * src/remove.c (AD_pop_and_chdir): Use new macro,
4229         CYCLE_CHECK_REFLECT_CHDIR_UP, rather than open-coding it.
4231         * src/system.h (SAME_INODE): Remove definition.
4232         Include "same-inode.h", instead.
4234 2006-03-11  Eric Blake  <ebb9@byu.net>
4236         * src/pwd.c (robust_getcwd): Prepend only one slash, not two.
4238 2006-03-10  Jim Meyering  <jim@meyering.net>
4240         Fix a bug whereby a user with write access to a directory being removed
4241         could cause the removal of that directory to fail with an erroneous
4242         diagnostic about a directory cycle.  Reported by Vineet Chadha.
4244         * NEWS: Mention this.
4245         * src/remove.c (AD_pop_and_chdir): If the directory we're about to
4246         leave (and try to rmdir) is the one whose dev_ino is being used to
4247         detect a cycle, reset cycle_check_state.dev_ino to that of the parent.
4249 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
4251         * NEWS: Document dd's new 'directory' and 'nolinks' flags.
4252         * src/dd.c (set_fd_flags): Handle file-creation flags on file
4253         descriptors, rather than ignoring them.
4254         * tests/dd/misc: Add test cases for append, nofollow, directory,
4255         and nolinks flags.  Simplify redirection to /dev/null in some cases.
4257         * tests/dd/misc: iflags->iflag.  This fixes a typo that meant the
4258         noatime test never tested anything.
4260 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
4262         * src/dd.c (flags, usage): New flags directory, nolinks.
4263         * src/system.h (O_NOLINKS): Define to 0 if not already defined.
4265         * src/ls.c (usage): Mention that -f disables --color.
4266         Problem reported by Niels Möller.
4268 2006-03-03  Justin Pryzby  <pryzbyj@justinpryzby.com>
4270         * man/*.x: Add references to syscalls from utilities of the same name.
4272 2006-03-05  Jim Meyering  <jim@meyering.net>
4274         * tests/help-version: Set SHELL, if not already set, in order to
4275         avoid failure when `make check' is run through debuild;  dircolors
4276         would fail due to lack of $SHELL.  Reported by Sven Joachim.
4278         Make `base64 --wrap=N' work for N=0, and for N larger than SIZE_MAX.
4279         * src/base64.c (wrap_write, do_encode, main): Change type of
4280         parameters and locals, wrap_column, form size_t to uintmax_t.
4281         (main): Adjust to use xstrtoumax, accordingly.
4283 2006-03-03  Jim Meyering  <jim@meyering.net>
4285         Don't fail when run from an environment with SHELL not a Bourne
4286         shell, e.g. `env SHELL=/bin/csh make check' would fail this test.
4287         * tests/dircolors/simple: Invoke each non-failing test with -b.
4288         Reported by Michael Stone.
4290 2006-02-27  Jim Meyering  <jim@meyering.net>
4292         * tests/misc/base64: Derive --decode-using tests from the
4293         encode-based ones.
4295         * tests/misc/base64: Factor out a long constant string.
4296         Split lines to stay within 80 columns.
4298         * tests/misc/Makefile.am (TESTS): Add base64.
4299         * tests/misc/base64: Test base64.  From Simon Josefsson.
4301         * src/base64.c (do_decode): Use correct type for parameter,
4302         ignore_garbage: s/size_t/bool/.
4304         * src/base64.c: Don't include .h files already included by system.h:
4305         <string.h>, <stdlib.h>, <stdbool.h>, <limits.h>, <errno.h>.
4306         Include "system.h" before the other lib/*.h header files.
4307         Include <sys/types.h> before "system.h".
4308         (wrap_write): Remove declaration of unused local, initial_column.
4309         (wrap_write): Correct declaration syntax: s/size_t * V/size_t *V/.
4311         * README: Add base64 to the list.
4313 2006-02-17  Simon Josefsson  <jas@extundo.com>
4315         New program: base64.
4316         * AUTHORS: Mention base64.
4317         * NEWS: Likewise.
4318         * man/Makefile.am: Build base64.1.
4319         * man/base64.x: New file.
4320         * src/Makefile.am (bin_PROGRAMS): Add base64.
4321         * src/base64.c: New file.
4323 2006-02-25  Eric Blake  <ebb9@byu.net>
4325         In ls, avoid calling stat for --inode (-i), when possible.
4326         * src/pwd.c (NOT_AN_INODE_NUMBER, D_INO): Move to ...
4327         * src/system.h: ... here, for use in ...
4328         * src/ls.c (main): ... here.  Prefer dirent.d_ino to stat when
4329         possible.
4330         (gobble_file): Add inode argument.
4331         (print_dir): Pass inode if available.
4332         (usage): Remove inaccuracy.
4334 2006-02-23  Jim Meyering  <jim@meyering.net>
4336         * TODO: Update/correct some obsolete entries.
4338 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
4340         * doc/coreutils.texi (join invocation): Mention `sort -k 1b,1'.
4341         * src/join.c (usage): Likewise.
4342         Documentation problem reported by Philip Kensche.
4344 2006-02-20  Eric Blake  <ebb9@byu.net>
4346         * man/rm.x: Update documentation to match previous patch.
4348 2006-02-18  Eric Blake  <ebb9@byu.net>
4350         New option for rm: --interactive=once (-I).
4351         * NEWS: Document it, along with change to rm --interactive.
4352         * TODO: Remove entry for implementing rm -I
4353         * src/rm.c (INTERACTIVE_OPTION): New enum value.
4354         (interactive_type): New enum.
4355         (long_opts): Let interactive take an optional argument.
4356         (interactive_args, interactive_types): New option arguments.
4357         (usage): Document -I, --interactive=WHEN.  Use program_name
4358         instead of a basename.
4359         (main): New -I option, new behavior to --interactive.
4360         * tests/rm/interactive-once: New tests.
4361         * tests/rm/interactive-always: Ditto.
4362         * tests/rm/Makefile.am (TESTS): Run them.
4364 2006-02-18  Jim Meyering  <jim@meyering.net>
4366         * Makefile.maint (sc_two_space_separator_in_usage): Make the regular
4367         expression match more of the target lines, e.g., those that start with
4368         `-S,' (short option followed by a comma) or that include `=[...]'.
4369         Patch by Nicolas François.
4370         Fix the four offenders thus exposed:
4371         * src/join.c (usage): Use two spaces (not one) to separate the
4372         --first-only option string from its description, so help2man formats
4373         the derived man page properly.
4374         * src/pr.c (usage): Likewise.
4375         * src/uniq.c (usage): Likewise.
4376         * src/install.c (usage): Likewise.
4378 2006-02-15  Jim Meyering  <jim@meyering.net>
4380         * Makefile.maint (alpha beta major): For `make major', ensure that the
4381         version string is of the form N.N[.N]*, where N is one or more digits.
4383 2006-02-14  Jim Meyering  <jim@meyering.net>
4385         * INSTALL: Update from gnulib.
4387 2006-02-13  Jim Meyering  <jim@meyering.net>
4389         * GNUmakefile (all): Emit diagnostics to stderr, not stdout.
4391 2006-02-12  Jim Meyering  <jim@meyering.net>
4393         * Makefile.maint (patch-check): New target.
4394         (local-checks-available): Add to the list.
4396 2006-02-11  Jim Meyering  <jim@meyering.net>
4398         * src/c99-to-c89.diff: New file.
4399         * src/Makefile.am (EXTRA_DIST): Add c99-to-c89.diff.
4401         * .x-po-check: New file, with exclusions so that `make distcheck'
4402         passes once again.
4403         * Makefile.am (EXTRA_DIST): Add .x-po-check.
4405         rm -r must remove an empty directory, even if it is inaccessible.
4406         * src/remove.c (close_preserve_errno): New function.
4407         (fd_to_subdirp): Don't print a diagnostic in this function.
4408         Do it from the callers instead, unless rmdir succeeds.
4409         (remove_cwd_entries, remove_dir): Adjust callers.
4410         * tests/rm/empty-inacc: New test for the above.
4411         * tests/rm/Makefile.am (TESTS): Add empty-inacc.
4412         * NEWS: Mention this bug fix.
4413         * tests/rm/rm2: Adjust two expected diagnostics, now that they're
4414         a tiny bit less precise: cannot remove `a/1': ... instead of
4415         cannot open directory `a/1': ...
4417         * Makefile.maint (syntax-check-rules): Automatically derive this
4418         list of sc_-prefixed rule names.
4420 2006-02-10  Paul Eggert  <eggert@cs.ucla.edu>
4422         * Makefile.maint (CVS_LIST): Don't assume cvsu is available.
4423         (CVS_LIST_EXCEPT): New macro, to simplify exception-processing.
4424         Most uses of CVS_LIST changed to use CVS_LIST_EXCEPT.
4425         (syntax-check-rules): Bring back sc_changelong.  (Hmm, why did it
4426         go away? was that an accident?)
4427         (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
4428         (sc_cast_of_alloca_return_value, sc_space_tab, sc_prohibit_atoi_atof):
4429         (sc_error_exit_success, sc_file_system, sc_no_if_have_config_h):
4430         (sc_system_h_headers, sc_sun_os_names, sc_trailing_blank):
4431         (sc_two_space_separator_in_usage, sc_unmarked_diagnostics):
4432         (sc_obsolete_symbols, sc_changelog, sc_prohibit_jm_in_m4):
4433         (sc_useless_cpp_parens, makefile-check, m4-check, po-check):
4434         (author_mark_check, makefile_path_separator_check):
4435         Output line numbers, to simplify navigation of Emacs *compilation*
4436         buffers.
4437         (sc_prohibit_atoi_atof, sc_file_system):
4438         Rework slightly so that Makefile.maint doesn't get reported as a
4439         violation of its own syntax rules.
4440         (sc_dd_max_sym_length): Use ifneq to do nothing, instead of doing
4441         it at run-time (which didn't work with Bison).  Fix a makefile typo,
4442         caught by Makefile.maint itself: spaces where a tab should be.
4443         (po-check): Check lib/*.[ch] even if not in CVS; used by Bison,
4444         which copies from ../gnulib/lib/*.[ch] to lib/*.[ch].
4445         Ignore djgpp and man subdirectories, to avoid false matches with
4446         Bison and coreutils, respectively.  Use sort -u to remove the
4447         resulting duplicates.
4448         * gnupload: Rework slightly to avoid bogus warning from
4449         sc_two_space_separator_in_usage.
4451 2006-02-10  Jim Meyering  <jim@meyering.net>
4453         Use gzip's --rsyncable option only if it's available.
4454         * Makefile.maint (gzip_rsyncable): New variable.
4455         (GZIP_ENV): Use it.
4457 2006-02-08  Jim Meyering  <jim@meyering.net>
4459         * Makefile.maint (local-checks-available): Define in terms of
4460         the expansion, $(syntax-check-rules), rather than the single,
4461         top-level target `syntax-check', so that it's easier to exclude
4462         individual rules (via $(local-checks-to-skip)).
4463         (tgz-md5, tgz-sha1, ...): Remove now-unused definitions.
4465 2006-02-07  Jim Meyering  <jim@meyering.net>
4467         * src/system.h (!defined O_DIRECT): If O_DIRECTIO is defined (as it
4468         is on Tru64), define O_DIRECT to that.  Patch From James Lemley.
4470         * tests/help-version (expected_failure_status_vdir):
4471         Redirect an expected disk-full diagnostic to /dev/null.
4473 2006-02-06  Jim Meyering  <jim@meyering.net>
4475         * src/unexpand.c (usage): Use two spaces (not one) to separate the
4476         --first-only option string from its description, so help2man formats
4477         the derived man page properly.
4478         * src/rm.c (usage): Likewise for --no-preserve-root.
4479         * src/chown.c (usage): Likewise.
4480         * src/chgrp.c (usage): Likewise.
4482         Add a rule to ensure that the above doesn't happen again.
4483         * Makefile.maint (sc_two_space_separator_in_usage): New rule.
4484         (syntax-check-rules): Add it.
4485         * .x-sc_two_space_separator_in_usage: New empty file.
4486         * Makefile.am (EXTRA_DIST): Add .x-sc_two_space_separator_in_usage.
4488 2006-02-06  Jim Meyering  <jim@meyering.net>
4490         * src/cp.c (usage): Use two spaces (not one) to separate each
4491         option string from its description, so help2man formats the
4492         derived man page properly.
4493         * src/mv.c (usage): Likewise.
4494         Patch from Nicolas François in http://bugs.debian.org/351601.
4496 2006-02-04  Jim Meyering  <jim@meyering.net>
4498         * src/copy.c (copy_internal): cp -RL would fail when encountering
4499         the same directory more than once in the hierarchy beneath a single
4500         command-line argument.  That is legitimate, e.g. when there are
4501         two or more symbolic links, each pointing to some directory that
4502         would not otherwise be copied.  Reported by Christophe LYON.
4503         * tests/cp/cp-deref: New file.  Test for today's fix.
4504         * tests/cp/Makefile.am (TESTS): Add cp-deref.
4505         * NEWS: Document this.
4507 2006-02-03  Jim Meyering  <jim@meyering.net>
4509         * configure.ac: Require automake-1.9.6, not 1.8.3.
4511 2006-02-01  Paul Eggert  <eggert@cs.ucla.edu>
4513         * src/od.c (usage): Mention that -t a ignores high order bit.
4514         Documentation problem reported by Ed Avis.
4516 2006-02-01  Jim Meyering  <jim@meyering.net>
4518         * src/pwd.c (find_dir_entry): Remove unused local, `ent_sb_valid'.
4520 2006-01-30  Paul Eggert  <eggert@cs.ucla.edu>
4522         * src/head.c (main): Use a better diagnostic when someone uses a
4523         trailing numeric option in an invalid way.  Problem reported by
4524         Karl Berry.
4525         * src/tail.c (parse_options): Likewise.
4527 2006-01-30  Jim Meyering  <jim@meyering.net>
4529         * man/wc.x: Include `count' keyword in man page synopsis,
4530         per suggestion from http://bugs.debian.org/181585.
4532 2006-01-24  Paul Eggert  <eggert@cs.ucla.edu>
4534         * src/df.c (show_dev): If the file system claims to have
4535         more available than total blocks, report the number of used
4536         blocks as being total - available (a negative number) rather
4537         than as garbage.  Problem reported by Toralf Foerster.
4539 2006-01-24  Jim Meyering  <jim@meyering.net>
4541         * src/tail.c (tail_forever): Don't exit-nonzero when an attempt
4542         to put a regular file in O_NONBLOCK mode fails with EPERM.
4543         That happens on Linux (up to 2.6.15) when using tail -f on a file with
4544         the append-only attribute.  Reported by Dean Gaudet.  For details,
4545         see http://savannah.gnu.org/bugs/?func=detailitem&item_id=15473.
4546         * NEWS: Mention this fix.
4547         * tests/tail-2/append-only: New file.  Test for the above.
4548         * tests/tail-2/Makefile.am (TESTS): Add append-only.
4549         * tests/Makefile.am (check-root): Add tail-2/append-only
4551 2006-01-21  Jim Meyering  <jim@meyering.net>
4553         * NEWS: Mention fts-related improvements and bug fixes.
4555 2006-01-19  Jim Meyering  <jim@meyering.net>
4557         * tests/fmt/basic (pfx-1, pfx-2): New tests, to demonstrate the bug
4558         reported as http://bugs.debian.org/147577.  Forwarded by Thomas Hood.
4560 2006-01-18  Jim Meyering  <jim@meyering.net>
4562         * tests/du/Makefile.am (TESTS): Add long-from-unreadable.
4564 2006-01-17  Jim Meyering  <jim@meyering.net>
4566         Now that fts no longer changes the current working directory, adjust
4567         its clients accordingly -- note that du.c uses fts but doesn't need
4568         any adjustment, since it doesn't operate on the actual files,
4569         but rather just uses the stat buffers provided by fts.
4571         * src/chown-core.c: Include "openat.h".
4572         Don't include "lchown.h".
4573         (restricted_chown): Accept a new parameter, CWD_FD, and use it in
4574         calling openat, lchownat, chownat, rather than open, lchown, chown.
4575         Update caller.
4576         * src/chmod.c: Include "openat.h".
4577         (process_file): Use chmodat (fts->fts_cwd_fd,... in place of chmod (...
4579         * tests/du/long-from-unreadable: New test, to exercise one small
4580         corner of fts.c.
4582 2006-01-13  Jim Meyering  <jim@meyering.net>
4584         * tests/Makefile.am (SUBDIRS): Add comments discouraging the
4585         addition of new directories under tests/.
4587         * tests/acl: Redirect stdin to /dev/null.  Otherwise, FreeBSD 5.0's
4588         getfacl would hang.
4590 2006-01-12  Jim Meyering  <jim@meyering.net>
4592         * tests/du/long-sloop: Adjust not to hard-code the expected
4593         diagnostic corresponding to ELOOP.  Solaris' diagnostic differs
4594         from that of GNU libc.  Reported by Paul Eggert.
4596         * tests/du/long-sloop: Create file at end of symlink chain.
4598         * tests/misc/test: New file, with a test for one of the
4599         bugs fixed by yesterday's test.c changes.
4600         * tests/misc/Makefile.am (TESTS): Add test.
4602 2006-01-11  Jim Meyering  <jim@meyering.net>
4604         * tests/du/long-sloop: New file.  Test for today's fts.c bug fix.
4605         That bug could make du -L, chgrp -L, or chown -L fail to diagnose
4606         a very long sequence of symbolic links (not necessarily a loop).
4607         * tests/du/Makefile.am (TESTS): Add long-sloop.
4609 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
4611         * src/test.c (test_syntax_error): Append a newline.  All callers
4612         changed, except for the ones that didn't already append a newline.
4613         Bug reported by Eric Blake.
4615 2006-01-11  Jim Meyering  <jim@meyering.net>
4617         * src/system.h (X2NREALLOC): Now that verify_true is no longer
4618         void, cast its result to void, to avoid gcc's warning that
4619         ``left-hand operand of comma expression has no effect''.
4620         (DECIMAL_DIGIT_ACCUMULATE, X2REALLOC): Likewise.
4622 2006-01-10  Jim Meyering  <jim@meyering.net>
4624         * tests/chmod/no-x: Add a test for today's fts.c fix.
4626 2006-01-10  Jim Meyering  <jim@meyering.net>  (tiny change)
4628         * src/ls.c (gobble_file): Use DTTOIF only if it's defined.
4629         This is necessary for Dragonfly.  Patch by Joerg Sonnenberger.
4631 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
4633         * src/system.h (X2NREALLOC, X2REALLOC, DECIMAL_DIGIT_ACCUMULATE):
4634         Use verify_true instead of verify_expr, to sync with gnulib.
4636 2006-01-08  Jim Meyering  <jim@meyering.net>
4638         * src/date.c (usage): Adjust the formatting of the entries for
4639         %::z and %:::z (separate with two spaces, not one) so that help2man
4640         formats them properly.  Reported by Philip Rowlands.
4642 2006-01-06  Paul Eggert  <eggert@cs.ucla.edu>
4644         * configure.ac (gl_IGNORE_UNUSED_LIBRARIES): Add.
4646 2006-01-06  Jim Meyering  <jim@meyering.net>
4648         * Makefile.maint (copyright-check): Use date +%Y in place of
4649         hard-coded 2005.
4651         * src/remove.c (rm_1): Remove `static' attribute on local `status'.
4652         First off, the attribute should have been `volatile' (not static)
4653         to avoid longjmp-related risk of clobber.  Secondly, now there is
4654         no longer any risk of a local variable being clobbered, so there's
4655         no need for any attribute at all.
4657 2006-01-05  Jim Meyering  <jim@meyering.net>
4659         * src/remove.c: Give a few functions the inline attribute.
4660         (AD_pop_and_chdir): Use gotos to avoid some duplication.
4661         (AD_push): Rewrite an assertion so that the entire computation
4662         goes away when assertions are turned off.
4664         * src/tail.c (ENOSYS) [!defined ENOSYS]: Don't define here.
4665         It's already defined in "system.h".
4666         * Makefile.maint: Add a FIXME comment.
4668 2006-01-04  Jim Meyering  <jim@meyering.net>
4670         * ChangeLog: Remove entries from 2005-10-22 and earlier.
4671         * ChangeLog-2005: New file, for entries up to version 5.92.
4673 2006-01-03  Jim Meyering  <jim@meyering.net>
4675         * tests/du/no-x: Also allow a slightly different diagnostic -- the
4676         one you get when using openat-enabled fts.c and du (coming soon).
4677         * tests/chmod/no-x: Likewise.
4678         * tests/chgrp/no-x: Likewise.
4680         * src/system.h (O_DIRECTORY) [!defined O_DIRECTORY]: Define.
4682 2006-01-02  Paul Eggert  <eggert@cs.ucla.edu>
4684         * src/chown-core.c (RC_do_ordinary_chown): New enum value.
4685         (restricted_chown): Return it, if the file cannot be accessed due
4686         to EPERM, or if no uid or gid are required, or if the file is
4687         neither a directory nor a regular file.  Rewrite to avoid gotos.
4688         (change_file_owner): Handle RC_do_ordinary_chown case.
4689         Rewrite to avoid gotos.
4690         * tests/chgrp/basic: Make sure we can change the group of
4691         inaccessible files.
4693         * src/date.c (usage): Explain %g, %G, and %V a bit better.
4695 2006-01-02  Jim Meyering  <jim@meyering.net>
4697         * src/copy.c (set_owner): Correct a comment.
4699         * src/tail.c (parse_options): Change warning to say that --retry
4700         is useful `mainly' (not `only') when following by name.
4701         Reported here: http://bugs.debian.org/273781
4703 2006-01-01  Paul Eggert  <eggert@cs.ucla.edu>
4705         * NEWS: Document that mkfifo and mknod -m no longer set special bits.
4706         * src/copy.c: Include lchmod.h.
4707         (copy_internal): Use lchmod rather than chmod.
4708         * src/cp.c: Include lchmod.h.
4709         (re_protect, make_dir_parents_private): Use lchmod rather than chmod.
4710         * src/mkdir.c: Include lchmod.h.
4711         (usage): Clarify -m's operation.
4712         (main): Use lchmod rather than chmod.  Don't use lchmod unless the
4713         new mode contains bits outside the 777 range.
4714         * src/mkfifo.c (usage): Clarify -m's operation.
4715         (main): If -m is given, don't invoke chmod; use umask 0 instead.
4716         Report an error if -m asks for bits outside the 777 range.
4717         * src/mknod.c (usage, main): Likewise.
4719         * src/mkdir.c, src/mkfifo.c, src/mknod.c: Undo 2005-12-19 changes.
4721 2005-12-27  Jim Meyering  <jim@meyering.net>
4723         * Makefile.maint (sc_obsolete_symbols): Prohibit use of O_NDELAY.
4724         (sc_prohibit_assert_without_use): New rule.
4725         (syntax-check-rules): Add it to the list.
4726         * .x-sc_prohibit_assert_without_use: New empty file.
4727         * Makefile.am (EXTRA_DIST): Add it.
4729         * Makefile.maint (CVS_LIST): Define in terms of $(srcdir).
4731         * cp.c, df.c, link.c, mknod.c, nice.c, sleep.c, unlink.c:
4732         Don't include <assert.h>; it wasn't used.
4734 2005-12-26  Paul Eggert  <eggert@cs.ucla.edu>
4736         * src/chown-core.c (restricted_chown):
4737         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
4738         * src/remove.c (fd_to_subdirp): Open with O_DIRECTORY | O_NOCTTY
4739         | O_NOFOLLOW too, for consistency with other dir-openers.
4740         Use POSIX-preferred O_NONBLOCK rather than O_NDELAY.
4741         (is_empty_dir): Likewise.
4742         * src/shred.c (wipename): Likewise.  Don't bother trying to open
4743         dir for writing, since POSIX prohibits it.
4745 2005-12-22  Jim Meyering  <jim@meyering.net>
4747         * tests/help-version: Redirect stderr to /dev/full, to suppress
4748         write error diagnostic.
4750 2005-12-19  Jim Meyering  <jim@meyering.net>
4752         * src/mkdir.c, src/mknod.c, src/mkfifo.c (main)
4753         Avoid a minor race condition when `-m MODE' is specified, by using
4754         open, fchown, and close rather than just chown.  To do that reliably --
4755         even with an overly restrictive umask -- ensure that each mkdir,
4756         mknod and mkfifo call uses a mode including at least owner-read access.
4757         * src/mknod.c (main): When `-m MODE' is specified, exit nonzero if
4758         the subsequent chown (or equivalent open,fchown,close) fails.
4759         * tests/misc/mknod: New tests.
4760         * tests/misc/Makefile.am (TESTS): Add mknod.
4762 2005-12-17  Jim Meyering  <jim@meyering.net>
4764         * src/remove.c (is_empty_dir): Open with O_NDELAY, so we don't hang,
4765         e.g., on a named pipe.
4766         (OPEN_NO_FOLLOW_SYMLINK): Remove definition.  Use O_NOFOLLOW in
4767         place of all uses, since it is guaranteed (system.h) to be defined.
4769 2005-12-05  Andreas Gruenbacher  <agruen@suse.de>
4771         Add POSIX ACL support
4772         * src/ls.c: Switch back from HAVE_ACL to USE_ACL: The acl() syscall
4773         is no requirement for ACL support; particularly, it does not exist
4774         on systems that have POSIX ACLs.
4775         * src/copy.h (cp_option_init) [umask_kill]: Remove member.
4776         * src/cp.c (umask_kill): With default acls, the umask is not to be
4777         applied.  Remove umask_kill, don't change the process umask, and let
4778         the kernel apply the umask where appropriate.
4779         * src/cp.c (make_dir_parents_private): Fix logic for POSIX ACLs.
4780         * src/copy.c (get_dest_mode): Remove; it is obsolete after removing
4781         umask_kill.
4782         (copy_reg, copy_internal): Use copy_acl and set_acl
4783         instead of fchown/chown. Fix the logic for POSIX ACLs.
4784         (chown_succeded): Remove; we now always copy acls and
4785         preserve S_ISUID, S_ISGID, and S_ISVTX when needed, no matter if we
4786         did a chown before or not.
4787         * src/mv.c, src/install.c (cp_option_init): Don't set umask_kill member.
4788         * src/Makefile.am (dir_LDADD, ls_LDADD, vdir_LDADD, cp_LDADD,
4789         mv_LDADD, ginstall_LDADD): On systems with an ACL library, arrange
4790         to link with it via $(LIB_ACL), for the utilities that need it.
4792 2005-12-16  Paul Eggert  <eggert@cs.ucla.edu>
4794         * src/remove.c (OPENAT_CWD_RESTORE__REQUIRE): Remove.
4795         (OPENAT_CWD_RESTORE__ALLOW_FAILURE): Likewise.
4796         (fd_to_subdirp): Remove openat_cwd_restore_allow_failure arg; its
4797         value is now signified by whether cwd_errno is null.
4798         (fd_to_subdirp, remove_dir, rm_1); Change cwd failure indicator from
4799         pointer-to-bool to pointer-to-errno-value.  All callers changed.
4800         (rm_1): Don't bother setting a local cwd failure flag and then
4801         ORing it into the caller's.  Just set the caller's.
4802         (rm): Use cwd failure errno value to print a slightly-better
4803         diagnostic.
4805 2005-12-15  Jim Meyering  <jim@meyering.net>
4807         * src/stat.c (print_it): Properly handle a backslash at the
4808         end of a --printf format string.  Reported by Paul Eggert.
4809         * tests/misc/stat-printf (end-bs): Add a test for the above.
4811 2005-12-15  Paul Eggert  <eggert@cs.ucla.edu>
4813         * tests/acl: Port to pre-POSIX shells like Solaris 8 /bin/sh.
4814         Don't assume /etc/passwd contains user names; use 'id' instead.
4816 2005-12-15  Jim Meyering  <jim@meyering.net>
4818         stat: revert behavior of --format=FMT (-c)
4819         stat: add new option: --printf=FMT
4820         * NEWS: Mention this.
4821         * src/stat.c (isodigit, octtobin, hextobin): Define.
4822         (PRINTF_OPTION): Define.
4823         (interpret_backslash_escapes, trailing_delim): New globals.
4824         (usage): Document them.  Alphabetize on long option names.
4825         (print_esc_char): New function.
4826         (print_it): Rewrite, in order to handle backslash escapes.
4827         (main): Handle new option.  Set globals for --format, too.
4829         * tests/misc/stat-printf: Test --printf and --format.
4830         * tests/misc/Makefile.am (TESTS): Add stat-printf.
4832 2005-12-14  Paul Eggert  <eggert@cs.ucla.edu>
4834         * NEWS: sort now reports incompatible options.
4835         * src/sort.c (incompatible_options, check_ordering_compatibility):
4836         New functions.
4837         (main): Use them.  Don't bother with a usage message for
4838         "sort -c a b", for consistency with other error diagnostics.
4839         * tests/sort/Test.pm (incompat1, incompat2, incompat3, incompat4):
4840         New tests.
4842         * src/cat.c (main): Undo previous change.  close_stdout already
4843         does the check, so the previous change wasn't necessary.
4845 2005-12-13  Paul Eggert  <eggert@cs.ucla.edu>
4847         * src/cat.c (main): Check for close (STDOUT_FILENO) failure.
4849 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
4851         Install a more-conservative approach for sort -R.  It's the
4852         same basic idea as the existing code, except it uses the full ISAAC
4853         approach (called the "more kosher" approach in the existing comments).
4854         This makes "sort -R" quite a bit slower (about a factor of 2 on my
4855         little tests involving 10000 lines on a 2.4 GHz P4), but I think it's
4856         better to be conservative here at first, and review any performance
4857         improvements carefully.
4858         * .x-sc_require_config_h: Add src/rand-isaac.c.
4859         * src/rand-isaac.h: Remove.  All uses now simply include rand-isaac.c.
4860         * src/Makefile.am (noinst_HEADERS): Remove rand-isaac.h.
4861         (shred_SOURCES, sort_SOURCES): Remove.
4862         (EXTRA_DIST): Add rand-isaac.c.
4863         * src/rand-isaac.c: Revert to what used to be in shred.c, without
4864         changing it to allow for varying numbers of words in the state.
4865         Alter so that we include rand-isaac.c directly rather than
4866         compiling it and linking to it.  Don't include config.h or
4867         system.h; that's the includer's responsibility.
4868         Omit functions that are specific to shred.
4869         (ISAAC_LOG, ISAAC_WORDS, ISAAC_BYTES, struct isaac_state, ind):
4870         (isaac_step, struct irand_state):
4871         Resurrect these, with the same defns that used to be in shred.c.
4872         (ISAAC_SIZE, isaac_new, isaac_copy): Remove.
4873         (isaac_refill, isaac_seed_start, isaac_seed_data, irand_init, irand32):
4874         static again.
4875         (struct isaac_state, isaac_refill, isaac_mix, isaac_init):
4876         (isaac_seed_start, isaac_seed_data, isaac_seed_finish, isaac_seed):
4877         (irand_init, irand32, irand_mod):
4878         Number of words is constant again.
4879         (struct irand_state, irand_init, irand32, irand_mod): Move to shred.c.
4880         * src/shred.c: Include rand-isaac.c rather than rand-isaac.h.
4881         * src/sort.c: Likewise.
4882         * src/shred.c (fillrand, dopass, main): Undo previous change.
4883         (struct irand_state, irand_init, irand32, irand_mod): Moved back here,
4884         from rand-isaac.c.
4885         * src/sort.c: Don't include md5.h; it wasn't needed.
4886         (struct keyfield): Rename random_hash to random, for consistency
4887         with the other member names.  All uses changed.
4888         (usage): Tweak wording to mention STRING for --seed option.
4889         (short_options): Rorder for consistency with other programs.
4890         (rand_state): Now a struct, not a pointer to one.  All uses changed.
4891         (HASH_WORDS, HASH_SIZE): Remove.
4892         (get_hash): Remove comments around resbuf size, since we can assume C89.
4893         Use a "more-kosher" (but slower) approach of invoking isaac_refill.
4894         (keycompare): Adjust to the new get_hash.
4895         Add a FIXME.
4896         (badfieldspec): Omit recently-introduced comment; it isn't needed.
4897         (main): Don't set need_random simply because gkey has it set; that
4898         doesn't necessarily mean we'll need random numbers.
4899         Redo seeding to match new get_hash approach.
4901 2005-12-10  Jim Meyering  <jim@meyering.net>
4903         * src/Makefile.am (noinst_HEADERS): Add rand-isaac.h.
4905         Avoid shred segfault on 64-bit systems.
4906         * src/rand-isaac.c (isaac_refill): Don't try to negate a
4907         local of type uint32_t.  Make the local an `int' instead.
4909         * NEWS: Mention sort's new options.
4911         * src/rand-isaac.c (isaac_mix): Declare to be static.
4912         Mark all other functions as `extern' so the tight-scope
4913         part of `make distcheck' passes once again.
4914         * src/rand-isaac.h (isaac_mix): Remove declaration.
4916         * src/sort.c (get_hash): Change position of `*' in parameter
4917         type to conform with convention.
4918         (main): Split a long line so it fits in 80 columns.
4919         (keycompare): Remove stray SPACE before TAB that was
4920         causing `make distcheck' to fail.
4922         * src/shred.c: Don't include gethrxtime.h.  No longer needed.
4924         * tests/misc/sort-rand: New file: basic tests for the new options.
4925         * tests/misc/Makefile.am (TESTS): Add sort-rand.
4927 2005-12-10  Frederik Eaton  <frederik@ofb.net>
4929         * src/Makefile.am (sort_LDADD): Add $(LIB_GETHRXTIME).
4930         (shred_SOURCES, sort_SOURCES): New macros, so we compile rand-isaac.c.
4931         * src/rand-isaac.c: New file, containing ISAAC code that was in shred.c.
4932         Make state size runtime-configurable.
4933         (isaac_new, isaac_copy): New functions.
4934         * src/rand-isaac.h: New file.
4935         * src/shred.c: Include rand-isaac.h.  Move ISAAC code to rand-isaac.c.
4936         (fillrand, main): Adjust to the fact that the state size is now
4937         runtime-configurable.
4938         * src/sort.c (short_options, long_options, WORDS, keycompare, main):
4939         (usage): Add options --random-sort and --seed to implement a random
4940         shuffle.
4941         Include md5.h and rand-isaac.h.
4942         (get_hash): New function.
4943         (rand_state): New var.
4944         (HASH_WORDS, HASH_SIZE): New macros.
4946 2005-12-09  Paul Eggert  <eggert@cs.ucla.edu>
4948         * tests/dd/misc: Add test for dd iflags=noatime.
4950 2005-12-09  Jim Meyering  <jim@meyering.net>
4952         * src/sort.c (usage): Mention white space vs -b and -t options.
4953         From The Wanderer.
4955 2005-12-09  Eric Blake  <ebb9@byu.net>
4957         * src/test.c (main): Fix misleading comment.
4959 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
4961         * NEWS: Mention dd's new noatime flag.
4962         * src/system.h (O_NOATIME): Define to 0 if not already defined.
4963         * src/dd.c (flags, usage): Add support for noatime flag.
4965 2005-12-07  Jim Meyering  <jim@meyering.net>
4967         Distribute the cvsu script, used only by `make syntax-check'.
4968         * Makefile.am (EXTRA_DIST): Add build-aux/cvsu.
4969         * Makefile.maint (CVS_LIST): Use build-aux/cvsu, now that we
4970         distribute a copy of this script.
4971         * .x-sc_unmarked_diagnostics: Add build-aux/cvsu.
4973         * tests/mv/acl: exit-77 before the trap, not after, if we fail
4974         to create a temporary directory on another partition.
4975         From Andreas Gruenbacher.
4977 2005-12-06  Tomas Pospisek  <tpo@sourcepole.ch>  (tiny change)
4979         * man/basename.x: Cross-reference to dirname and readlink.
4980         * man/dirname.x: Cross-reference to basename and readlink.
4982 2005-12-05  Andreas Gruenbacher
4984         * src/copy.c [!HAVE_FCHOWN]: Define fchown(...) to -1.
4985         (set_owner, preserve_author): New functions, factored out of copy_reg.
4986         (copy_reg): Use them.
4987         (copy_internal): Use them here, too.
4989 2005-12-04  Jim Meyering  <jim@meyering.net>
4991         * src/sleep.c (usage): Say what happens with two or more arguments.
4992         Suggested by Justin Pryzby.
4994         * src/uptime.c (print_uptime): Move decl of `upsecs' into scope
4995         where it's used.
4997 2005-12-03  Jim Meyering  <jim@meyering.net>
4999         * src/rm.c (long_opts): Change the name of each undocumented, for-
5000         testing-only option to start with `-', so that it cannot render
5001         ambiguous any prefix it happens to share with some other option name.
5002         Problem reported by Eric Blake.
5003         * src/head.c (long_options): Likewise.
5004         * src/tail.c (long_options): Likewise.
5006         * tests/misc/head-elide-tail: Update uses of undocumented, for-
5007         testing-only --presume* options to start with `---'.
5008         * tests/rm/dangling-symlink: Likewise.
5009         * tests/rm/dir-no-w: Likewise.
5010         * tests/rm/isatty: Likewise.
5012 2005-11-30  Jim Meyering  <jim@meyering.net>
5014         * Makefile.maint: Add a comment about cvsu.
5016 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
5018         * NEWS: df updates for "none", "proc", inaccessible file systems.
5019         * src/df.c (show_point): Ignore inaccessible file systems.
5020         (usage): -a includes dummy file systems, not size-0 file systems.
5022         * src/od.c (unsigned_long_long_int): Renamed from ulonglong_t,
5023         to avoid collision with POSIX name space.  All uses changed.
5025 2005-11-24  Jim Meyering  <jim@meyering.net>
5027         * tests/Makefile.am (EXTRA_DIST): Add acl to the list.
5028         * tests/acl: Add `$0: ' prefix to diagnostics.
5030         * .x-sc_require_config_h: Add lib/buffer-lcm.c to the list.
5032 2005-11-23  Paul Eggert  <eggert@cs.ucla.edu>
5034         * src/copy.c: Improve performance a bit by optimizing away
5035         unnecessary system calls and going to a block size of at least
5036         8192 (on normal hosts, anyway).  This improved performance 5% on my
5037         Debian stable host (2.4.27 kernel, x86, copying from root
5038         ext3 file system to itself).
5039         Include "buffer-lcm.h".
5040         (copy_reg): Omit last argument.  All callers changed.
5041         Use xmalloc to allocate rather than trusting alloca
5042         (which is unwise with large block sizes).
5043         Declare locals more locally, if possible.
5044         Use uintptr_t words instead of int words, for a bit more speed
5045         when looking for null blocks on 64-bit hosts.
5046         Optimize away reads of zero bytes on regular files.
5047         In the typical case, insist on 8 KiB buffers, at least.
5048         Avoid unnecessary extra call to fstat when checking for sparse files.
5049         Avoid now-unnecessary cast to off_t, and "0L".
5050         Avoid unnecessary test of *new_dst when checking for same owner
5051         and group.
5053 2005-11-22  Paul Eggert  <eggert@cs.ucla.edu>
5055         * src/remove.c (rm): Don't assume C99 for-loop syntax.
5057 2005-11-22  Jim Meyering  <jim@meyering.net>
5059         * src/remove.c (AD_push): Remove debugging cruft.
5061         * tests/rm/unread2 (rm): Change expected diagnostic,
5062         `cannot open directory' to `cannot remove', to align with
5063         new version of rm.
5064         * tests/rm/rm2: Ensure that rm now continues removing entries
5065         even after certain types of failure.
5067         * src/remove.c: Rewrite.  Now, this module is reentrant on systems
5068         that provide openat (Solaris), and on systems like Linux+procfs
5069         where our openat emulation code is reentrant.  This also fixes a
5070         few low-probability leaks and eliminates some code that could,
5071         in very unusual circumstances, cause rm() (via a callee) to exit.
5072         * NEWS: Mention this.
5074         * configure.ac: Put copyright dates all on one line so the
5075         emacs function that updates them works properly.
5077 2005-11-18  Paul Eggert  <eggert@cs.ucla.edu>
5079         * configure.ac (AM_PROG_CC_C_O): Add.  Needed for CVS Automake.
5080         Problem reported by Eric Blake.
5081         (AC_PROG_CC_STDC): Use this instead of AC_PROG_CC, so that
5082         we get a standard-conforming compiler.  This relies on the new
5083         m4/c.m4 file.  Note that it's a bit tricky, since c.m4 doesn't
5084         define AC_PROG_CC_STDC; we are relying on Autoconf 2.59 internals.
5085         m4/c.m4 can go away with Autoconf 2.60 comes out.
5087 2005-11-17  Jim Meyering  <jim@meyering.net>
5089         * src/remove.c (AD_mark_helper): Make a `char *' parameter `const'.
5090         (AD_mark_current_as_unremovable): Likewise, but for a local.
5091         (rm_1): Likewise.
5093         * tests/mv/acl: Let traps handle removing temporary directories.
5095         Expect acl-related tests to fail, until the corresponding
5096         patches are committed.
5097         * tests/mv/Makefile.am (XFAIL_TESTS): Add acl.
5098         * tests/cp/Makefile.am (XFAIL_TESTS): Likewise.
5100         ACL tests, from Andreas Gruenbacher.
5101         * tests/acl, tests/mv/acl, tests/cp/acl: New files.
5102         * tests/mv/Makefile.am (TESTS): Add acl.
5103         * tests/cp/Makefile.am (TESTS): Add acl.
5105         * src/ls.c (basename_is_dot_or_dotdot): Correct wording in comment.
5107 2005-11-16  Paul Eggert  <eggert@cs.ucla.edu>
5109         * NEWS: Improve quality of ln's diagnostics.
5110         * src/ln.c (do_link, usage): Likewise.
5111         (do_link): Don't use alloca on a buffer of unbounded size.
5113 2005-11-16  Jim Meyering  <jim@meyering.net>
5115         * tests/cp/fail-perm: Accommodate HPUX.  It appears to fail
5116         with EACCES rather than EPERM.  Reported by Peter O'Gorman here:
5117         http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/5766
5118         This also affects AIX 4.3.3, according to Ralf Wildenhues, in
5119         http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00192.html
5121 2005-11-14  Jim Meyering  <jim@meyering.net>
5123         * NEWS (sort): Mention consequences of today's mkstemp-safer.c fix.
5125 2005-11-13  Jim Meyering  <jim@meyering.net>
5127         * announce-gen: Accept new option, --gpg-key-id=ID and
5128         emit a blurb telling how to use the .sig files.
5129         * Makefile.cfg (gpg_key_ID): Define.
5130         * Makefile.maint (announcement): Use new option and key.
5132         Require that most .c files include <config.h>.
5133         * Makefile.maint (sc_require_config_h): New rule.
5134         (syntax-check-rules): Add it.
5135         * .x-sc_require_config_h: New file listing exceptions to the
5136         above rule.  Some are legit, others are simply grandfathered in.
5137         * Makefile.am (EXTRA_DIST): Add .x-sc_require_config_h here, too.
5139 2005-11-12  Jim Meyering  <jim@meyering.net>
5141         * src/checksum.h, src/md5.c, src/sha1sum.c: Remove now-unused files.
5143 2005-11-11  Jim Meyering  <jim@meyering.net>
5145         * NEWS: Mention `readlink -f' bug fix in 5.3.0 news.
5146         Mention new readlink options in 5.3.0's `New features' section.
5147         Spotted by Thomas Hood.
5149 2005-11-08  Jim Meyering  <jim@meyering.net>
5151         * NEWS: Merge in changes from b5_9x branch.
5153 2005-11-08  Paul Eggert  <eggert@cs.ucla.edu>
5155         * NEWS: ls now defaults to --time-style='locale', which in turn acts
5156         like --time-style='posix-long-iso' if the locale settings are messed up.
5157         * src/ls.c (decode_switches): Implement this.
5159 2005-11-08  Jim Meyering  <jim@meyering.net>
5161         * tests/du/2g: s/expensive/very expensive/ in a comment.
5162         From Paul Townsend.
5164 2005-10-17  Eric Blake  <ebb9@byu.net>
5166         * src/ls.c (usage): Fix descriptions of --sort, --time.
5167         Reported by Vitaly A. Ostanin.
5169 2005-11-04  Paul Eggert  <eggert@cs.ucla.edu>
5171         * src/ln.c: Include filenamecat.c.
5172         (FILE_BASENAME_CONCAT): Remove.
5173         (do_link): Remove last arg DEST_IS_DIR.  All callers changed.
5174         (main): Use file_name_concat, base_name, and strip_trailing_slashes
5175         instead of FILE_BASENAME_CONCAT.  This simplifies the code, and avoids
5176         the use of alloca.
5178 2005-11-04  Jim Meyering  <jim@meyering.net>
5180         * src/du.c (process_file): Don't overflow for files of size >= 2^31
5181         on systems with stat.st_blocks of a signed 32-bit type.
5182         This bug causes trouble on some AIX 5.1 systems.
5183         Report and trivial patch from Paul Townsend:
5184         <http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00033.html>
5185         * NEWS: Mention this.
5187         * tests/du/2g: New (very-expensive) test for the above-fixed bug.
5188         * tests/du/Makefile.am (TESTS): Add it here.
5189         * tests/very-expensive: New file.
5190         * tests/Makefile.am (EXTRA_DIST): Add it here.
5191         * tests/cp/perm: Mark this test as `very-expensive', too.
5193 2005-11-02  Paul Eggert  <eggert@cs.ucla.edu>
5195         * NEWS: Mention that rm -d and maybe ln -d are scheduled for
5196         removal in 2006.
5197         * src/remove.h (struct rm_options): Remove unlink_dirs.  All uses
5198         removed.
5199         * src/rm.c (usage): Don't mention rm -d.
5201 2005-11-02  Jim Meyering  <jim@meyering.net>
5203         * tests/dd/skip-seek: Fix typo in comment: s/fileutils/coreutils.
5204         From Andreas Schwab.
5206         * tests/dd/unblock-sync: Redirect stderr to /dev/null so the
5207         `M+N records in/out' lines don't pollute `make check' output.
5209         * tests/dd/skip-seek (sk-seek4): New test, to exercise the bug
5210         fixed on 2005-10-31.  This test uses the new, IN_PIPE specifier.
5211         * tests/Coreutils.pm: Accept a new type of input specifier: IN_PIPE,
5212         to indicate that the input file should be piped into the command
5213         under test (via `cat FILE | $prog ...').
5215         * src/remove.c (remove_entry): Emit a better diagnostic when rm
5216         (without -r) fails to remove a directory on a non-Linux system.
5217         This change affects only newer Solaris systems (with priv_*
5218         functions like priv_allocset).  Reported by Keith Thompson.
5220         * tests/rm/dir-nonrecur: New file/test for the above fix.
5221         * tests/rm/Makefile.am (TESTS): Add dir-nonrecur.
5223 2005-11-01  Paul Eggert  <eggert@cs.ucla.edu>
5225         * NEWS: "tail -c 2 FILE" and "touch 0101000000" now operate as
5226         POSIX 1002.1-2001 requires.
5227         * src/tail.c (parse_obsolete_option): Implement this.
5228         Problem reported by Vincent Lefevre.
5229         * src/touch.c (main): Pass PDS_PRE_2000 to posixtime.
5230         * tests/tail/Test.pm (c-2, c-2-minus, c2, c2-minus): New tests.
5231         (test_vector): Add special cases for _POSIX2_VERSION, and
5232         regularize the old ones a bit.
5233         * tests/touch/obsolescent: Add y2000 test.
5235 2005-10-31  Paul Eggert  <eggert@cs.ucla.edu>
5237         * src/dd.c (skip): Fix off-by-one error reported by
5238         Theodoros V. Kalamatianos.
5240 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
5242         * tests/mkdir/p-3: Require that the test be run as non-root.
5243         Problem and trivial fix reported by Theodoros V. Kalamatianos.
5245 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
5247         * src/ln.c (FILE_BASENAME_CONCAT): Omit unnecessary slashes in the
5248         boundary between DEST and SOURCE in the result.
5250 2005-10-26  Dmitry V. Levin  <ldv@altlinux.org>
5252         * src/md5sum.c (main) [!O_BINARY]: Changed default read mode
5253         back to text, to sync with documentation and for backwards
5254         compatibility.
5256 2005-10-25  Jim Meyering  <jim@meyering.net>
5258         * tests/dircolors/simple (other-wr): Add an explicit test for
5259         the dircolors bug (NULL-dereference) fixed yesterday.
5261 2005-10-24  Jim Meyering  <jim@meyering.net>
5263         * src/tac.c (tac_file): When determining whether a file is seekable,
5264         also test whether it is a tty.  Using only the lseek-based test would
5265         give a false positive on Solaris.  Reported by Peter Fales.
5267 2005-10-24  Dmitry V. Levin  <ldv@altlinux.org>
5269         * tests/install/d-slashdot: New test, for "install -d" failure.
5270         * tests/install/Makefile.am (TESTS): Add d-slashdot.
5271         * tests/mkdir/p-slashdot: New test, for "mkdir -p" failure.
5272         * tests/mkdir/Makefile.am (TESTS): Add p-slashdot.
5274 2005-10-24  Jim Meyering  <jim@meyering.net>
5276         * src/dircolors.c (ls_codes): Add missing comma.
5277         Anonymous report and patch from
5278         http://savannah.gnu.org/bugs/?func=detailitem&item_id=14849
5280         * src/dircolors.c: Add compile-time assertion that the slack_codes
5281         and ls_codes arrays have the same number of elements.  This would
5282         have prevented the above-fixed bug.
5284         * src/expand.c (parse_tab_stops): Add a comment to make this function
5285         identical to the one in unexpand.c.
5286         * src/unexpand.c (parse_tab_stops): Adjust syntax to make this function
5287         identical to the one in expand.c.
5289         * src/expand.c (next_file): Don't assume fopen cannot return stdin.
5291 2005-10-23  Jim Meyering  <jim@meyering.net>
5293         * src/md5sum.c (digest_check, main): Use ptr_align rather than
5294         a dangerous pointer-value-to-`unsigned' cast.
5295         * NEWS: mention the new sha* programs.
5296         * AUTHORS: Add new sha* programs.
5298 2005-08-28  David Madore  <david.madore@ens.fr>
5300         Add new programs: sha224sum, sha256sum, sha384sum, sha512sum.
5301         * README: Add their names to the list.
5302         * src/md5sum.c: Provide framework for computing sha-2 hashes.
5303         * src/Makefile.am (sha224sum, sha256sum, sha384sum, sha512sum):
5304         Rules for compiling sha-2 utilities
5305         (noinst_HEADERS): Remove checksum.h.
5306         * man/sha512sum.x, man/sha384sum.x, man/sha256sum.x, man/sha224sum.x:
5307         New files.
5308         * man/Makefile.am (dist_man_MANS): Add the corresponding .1 names.
5309         (sha224sum.1, sha256sum.1, sha384sum.1, sha512sum.1): New dependencies.
5310         * tests/misc/sha224sum, tests/misc/sha256sum: New files.
5311         * tests/misc/sha384sum, tests/misc/sha512sum: New files.
5312         * tests/misc/Makefile.am (TESTS): Add new sha224sum, sha256sum,
5313         sha384sum, sha512sum test scripts here rather that each in its
5314         own directory.
5316 2005-08-28  David Madore  <david.madore@ens.fr>
5318         * tests/sha1sum/basic-1 (million-a): Add the "million a's" test (one
5319         of the FIPS test vectors).
5321 2005-10-23  Jim Meyering  <jim@meyering.net>
5323         * configure.ac: Use 6.0-cvs as the version string.
5324         * NEWS: Adjust accordingly.
5327         -----
5329         Copyright (C) 2005, 2006 Free Software Foundation, Inc.
5331         Copying and distribution of this file, with or without
5332         modification, are permitted provided the copyright notice
5333         and this notice are preserved.