diff options
author | Jim Meyering <jim@meyering.net> | 2000-10-22 12:00:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-10-22 12:00:22 +0000 |
commit | 34b462a9363a05aabc88b8c9e64ac1871b99ec7b (patch) | |
tree | 28bc3bda7b5ac43085c29949871201b260974d36 /old/textutils | |
parent | 82495b5d26e2a6f380688acec0f5487d1f5442ad (diff) | |
download | coreutils-34b462a9363a05aabc88b8c9e64ac1871b99ec7b.tar.xz |
.
Diffstat (limited to 'old/textutils')
-rw-r--r-- | old/textutils/ChangeLog | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index 657dd7669..76c3aa81d 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -1,3 +1,27 @@ +2000-10-22 Jim Meyering <meyering@lucent.com> + + * tests/Makefile.am (SUBDIRS): Add shasum. + * tests/shasum/basic-1: New file. + * configure.in (AC_OUTPUT): Add tests/shasum/Makefile. + + * src/Makefile.am (bin_PROGRAMS): Add shasum. + (md5sum_SOURCES): Define. + (shasum_SOURCES): Define. + + * src/md5sum.c: Factor out the differences between MD5 and SHA1, + and parameterize so this code may be used by both md5sum and the new + program, shasum. Loosely based on a patch from Scott Miller. + * src/checksum.h: New file. + * src/md5.c: New file that simply defines `algorithm'. + * src/shasum.c: Likewise. + + * man/Makefile.am (man_MANS): Add shasum.1. + * man/shasum.x: New file. + + Support 8-byte integers, assuming they're printable with e.g., %lld. + * src/od.c: Add support for printing data as unsigned + long long integers. + 2000-10-21 Jim Meyering <meyering@lucent.com> The command, `yes ''|./cat -n' would stop printing after INT_MAX lines. |