diff options
author | Jim Meyering <jim@meyering.net> | 1995-08-05 03:11:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-08-05 03:11:30 +0000 |
commit | 86c9719f0ae748ed963185943946d1a20aa70f2b (patch) | |
tree | 624b01b4ceb537703b0d91d638e494b6df0eb4eb /old | |
parent | be22aff966b0366b67d00ac8350a2baa5ca4e415 (diff) | |
download | coreutils-86c9719f0ae748ed963185943946d1a20aa70f2b.tar.xz |
.
Diffstat (limited to 'old')
-rw-r--r-- | old/fileutils/ChangeLog | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog index 850f7747b..fe9bf2fc6 100644 --- a/old/fileutils/ChangeLog +++ b/old/fileutils/ChangeLog @@ -1,3 +1,44 @@ +Fri Aug 4 22:11:06 1995 Jim Meyering (meyering@comco.com) + + * install.c (isnumber): Rename to is_number to avoid conflict with + FreeBSD 2.0.5 macro definition. Reported by David O'Brien + (obrien@sea.legent.com). + + * lib/save-cwd.c: New file. + * lib/save-cwd.h: New file. + * lib/Makefile.in (SOURCES, OBJECTS, DISTFILES): Update for new files. + + * configure.in: (AC_REPLACE_FUNCS): Remove fnmatch. + Add check for working fnmatch functions so that + systems providing it don't incur the space overhead of linking + with the version in lib. Cross compiling builds always use the + version in lib. + + * ls.c (decode_switches): Set SORT_TYPE. Before, ls -c was sorting + by name, rather than change time. Reported by Ken Estes + (m-ke0082@sparky.cs.nyu.edu). + + * du.c: (save_cwd, restore_cwd, free_cwd): Remove functions. + New versions have been broken out into save-cwd.c. + (du_files): Adapt to handle status code returned by new versions + of save_cwd and restore_cwd. + (count_entry): Likewise. + + * all programs (main): Include program name in --version output. + + * src/Makefile.in (cp.o): Depend on ../lib/obstack.h. + + * xstrtol.c, xstrtol.h: New files. + * xstrtoul.c, xstrtoul.h: New files. + * lib/Makefile.in (SOURCES, OBJECTS, DISTFILES): Update for new files. + + * chgrp.c (parse_group): Use xstrtoul instead of isnumber; the + latter would silently overflow, accepting a group id larger + than INT_MAX. + (isnumber): Remove now-unused static function. + (change_file_group) [MAXUID]: Give a more descriptive message + when numeric group id is larger than MAXUID. + Sat May 27 00:35:47 1995 Jim Meyering (meyering@comco.com) * system.h [!STDC_HEADERS && HAVE_MEMORY_H]: Include memory.h. @@ -134,7 +175,7 @@ Sat Feb 11 07:52:01 1995 Jim Meyering (meyering@comco.com) * lib/Makefile.in (DISTFILES): Add error.h. - * chgrp.c, chmod.c, chown.c, cp-hash.c, cp.c, df.c, du.c, install.c, + * chgrp.c, chmod.c, chown.c, cp-hash.c, cp.c, df.c, du.c, install.c, ln.c, ls.c, mv.c, mvdir.c, rm.c, touch.c: Rename SAFE_STAT and SAFE_LSTAT to safe_stat and safe_lstat. |