diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-11-03 23:25:32 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-11-03 23:25:32 +0000 |
commit | 3b39a3022aee4ed928fc717d3fc35425e559d44d (patch) | |
tree | 7179eac64d461038068e8eb0ca0ae9f273304676 | |
parent | 80b4895f7a843205ccfc4b48017a6329d45f3580 (diff) | |
download | coreutils-3b39a3022aee4ed928fc717d3fc35425e559d44d.tar.xz |
Log recent getdate-etc. related changes.
-rw-r--r-- | ChangeLog | 22 | ||||
-rw-r--r-- | lib/ChangeLog | 6 | ||||
-rw-r--r-- | m4/ChangeLog | 6 |
3 files changed, 33 insertions, 1 deletions
@@ -1,7 +1,27 @@ -2004-11-03 Jim Meyering <jim@meyering.net> +2004-11-03 Paul Eggert <eggert@cs.ucla.edu> * Version 5.3.0. + * src/stty.c: Include "vasprintf.h" since we use vasprintf now. + + * src/Makefile.am (check-AUTHORS): Don't assume \? works in a sed + expression; it's not portable. Problem reported by Albert Chin. + Don't invoke a program more than once. + * src/groups.sh (version): New variable, containing author info, + for benefit of AUTHORS check. Use it when acting on --version option. + * AUTHORS: Remove duplicate lines. Remove bogus "chroot:" + in groups line. + + * src/system.h: Don't #define and #undef getopt around <stdlib.h>, + as this breaks the new regime that does "#define getopt rpl_getopt". + Problem reported by Albert Chin for Solaris 9 with Sun cc in: + http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00019.html + I suppose this may cause problems on ancient hosts with + incompatible getopt declarations, but we'll cross that bridge if + the problem gets reported to us by someone who can test the fix. + +2004-11-03 Jim Meyering <jim@meyering.net> + * src/tac.c: quote(...) file names in diagnostics. 2004-10-29 Paul Eggert <eggert@cs.ucla.edu> diff --git a/lib/ChangeLog b/lib/ChangeLog index 0ca26c45b..024a30f85 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,9 @@ +2004-11-03 Paul Eggert <eggert@cs.ucla.edu> + + * unsetenv.c: New file, from gnulib. Needed for new getdate.y. + * Makefile.am (libfetish_a_SOURCES): Remove setenv.c. + * xreadlink.c: Sync from gnulib. + 2004-11-03 Jim Meyering <jim@meyering.net> * Makefile.am (libfetish_a_SOURCES): Add setenv.c and setenv.h. diff --git a/m4/ChangeLog b/m4/ChangeLog index 432e7b49d..e9001a72a 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,9 @@ +2004-11-03 Paul Eggert <eggert@cs.ucla.edu> + + * setenv.m4: New file, from gnulib. + * prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV. + * uint32_t.m4: Sync from gnulib. + 2004-11-02 Paul Eggert <eggert@cs.ucla.edu> * getpass.m4: Sync from gnulib. |