diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-08-02 05:26:59 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-08-02 05:26:59 +0000 |
commit | 2f2165dc9ea1f93eaa8d943df9887947757eb55e (patch) | |
tree | 34f356f4f01cb6ac7a19076bd785ce9ea86b91c8 /lib/ChangeLog | |
parent | 08eeecbbbb09e9394d5155ee12e4bd0bd56a2904 (diff) | |
download | coreutils-2f2165dc9ea1f93eaa8d943df9887947757eb55e.tar.xz |
uintptr_t and uint32_t port to Solaris 8.
Diffstat (limited to 'lib/ChangeLog')
-rw-r--r-- | lib/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 29133f2b6..20d5a3a42 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,18 @@ +2004-08-01 Paul Eggert <eggert@cs.ucla.edu> + + * md5.c (UNALIGNED_P): Use size_t; in practice, this is just as + good as uintptr_t in checking for alignments, and has fewer + configuration hassles. + * sha1.c (UNALIGNED_P): Likewise. + * md5.h: Don't include <limits.h>. Include <inttypes.h> if available, + as it defines symbols like UINT32_MAX on Solaris 8. + (md5_uint32): Assume uint32_t exists; Autoconf will define it + otherwise (if the host has a 32-bit unsigned type, anyway). + * memchr.c: Don't include inttypes.h or stdint.h. + (UNALIGNED_P): Remove. + (__memchr): Use size_t, not uintptr_t, to test alignment. + * memrchr.c: Likewise, for __memrchr. + 2004-07-30 Paul Eggert <eggert@cs.ucla.edu> * makepath.h: Include <stdbool.h>. |