X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=inline;f=ChangeLog;h=8faa77c467a196b3b0fa6c893689745cd1a88f17;hb=17bdb83ae669a9a01b6c33846a423e832e79557c;hp=a8718ea6ad0dfafcca00a8791201e700f6f93269;hpb=249ccd48463b7e7988b5ff5efaaa8e42ca66e116;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index a8718ea6a..8faa77c46 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,186 @@ +2008-01-31 Jim Meyering + + Use "sizeof VAR", rather than a literal "4". + * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4. + * lib/md4.c (md4_read_ctx): Likewise. + * lib/sha1.c (sha1_read_ctx): Likewise. + +2008-01-31 Simon Josefsson + + * tests/test-sha1.c: New file, based on test-md5.c. + + * modules/crypto/sha1-tests: New file. + +2008-01-31 Simon Josefsson + + * lib/sha1.h (SHA1_DIGEST_SIZE): Define. + +2008-01-31 Jim Meyering + + Prefer "sizeof v" over the equivalent "4". + * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4. + * lib/md5.c (set_uint32): Likewise. + * lib/sha1.c (set_uint32): Likewise. + +2008-01-31 Simon Josefsson + + * lib/sha1.c (set_uint32): Mark function as static. + +2008-01-31 Simon Josefsson + + md2: clarify comments to say that alignment is not required. + * lib/md2.h: Remove warning about alignment in comment. + * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has + never been required. + +2008-01-31 Simon Josefsson + + md4: adapt alignment constraint fix from sha1. + * lib/md4.c (set_uint32): New function, from sha1.c + (md4_read_ctx): Use it. + (md4_finish_ctx): Doc fix. + * lib/md4.h: Doc fix. + +2008-01-31 Simon Josefsson + + md5: adapt alignment constraint fix from sha1. + * lib/md5.c (set_uint32): New function, from sha1.c + (md5_read_ctx): Use it. + (md5_finish_ctx): Doc fix. + * lib/md5.h: Doc fix. + +2008-01-30 Peter Palfrader + + sha1: remove the result buffer alignment constraint + * lib/sha1.c (set_uint32): New function. + (sha1_read_ctx): Rewrite to remove the result buffer alignment + constraint. + (sha1_finish_ctx): Remove comment warning about alignment constraint. + * lib/sha1.h: Likewise. + +2008-01-30 Andreas Schwab + Bruno Haible + + * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include and ensure a + correct definition of LDBL_MIN_EXP. + +2008-01-30 Karl Berry + + * config/srclist-update: try to preserve x bit on updates. + * config/srclistvars.sh: update for karl. + +2008-01-29 Jim Meyering + + vasnprintf.c: Avoid warning about unused label + * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the + "overflow" label definition and associated code with the + same cpp condition that guards the sole use of that label. + +2008-01-26 Bruno Haible + + * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, + gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in. + * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in. + * lib/isnanl-nolibm.h (isnanl): Likewise. + Reported by Paul Eggert . + +2008-01-26 Bruno Haible + + * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in. + * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in. + +2008-01-26 Bruno Haible + + * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the + GCC >= 4.0 built-in. + * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in. + +2008-01-26 Bruno Haible + + Rename isnan, applicable to 'double' only, to isnand. + * modules/isnand-nolibm: Renamed from modules/isnan-nolibm. + (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h. + (configure.ac): Update. + (Include): Replace "isnan.h" with "isnand.h". + * m4/isnand.m4: Renamed from m4/isnan.m4. + (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set + HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c + instead of isnan.c. + * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC + instead of HAVE_ISNAN_IN_LIBC. + (isnand): Renamed from isnan. + * lib/isnand.c: New file. + * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests. + (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c. + (Makefile.am): Update. + * tests/test-isnand.c: Renamed from tests/test-isnan.c. + Include isnand.h instead of isnan.h. + (main): Test isnand instead of isnan. + * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove + isnan-nolibm. + * modules/frexp (Depends-on): Likewise. + * modules/frexp-tests (Depends-on): Likewise. + * modules/frexp-nolibm (Depends-on): Likewise. + * modules/frexp-nolibm-tests (Depends-on): Likewise. + * modules/isfinite (Depends-on): Likewise. + * modules/round-tests (Depends-on): Likewise. + * modules/signbit (Depends-on): Likewise. + * modules/signbit-tests (Depends-on): Likewise. + * modules/snprintf-posix (Depends-on): Likewise. + * modules/sprintf-posix (Depends-on): Likewise. + * modules/trunc-tests (Depends-on): Likewise. + * modules/unistdio/u8-vasnprintf (Depends-on): Likewise. + * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise. + * modules/unistdio/u16-vasnprintf (Depends-on): Likewise. + * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise. + * modules/unistdio/u32-vasnprintf (Depends-on): Likewise. + * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise. + * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise. + * modules/vasnprintf-posix (Depends-on): Likewise. + * modules/vasprintf-posix (Depends-on): Likewise. + * modules/vfprintf-posix (Depends-on): Likewise. + * modules/vsnprintf-posix (Depends-on): Likewise. + * modules/vsprintf-posix (Depends-on): Likewise. + * lib/frexp.c: Include isnand.h instead of isnan.h. + (ISNAN): Set to isnand instead of isnan. + * lib/isfinite.c: Include isnand.h instead of isnan.h. + (gl_isfinited): Use isnand instead of isnan. + * lib/signbitd.c: Include isnand.h instead of isnan.h. + (gl_signbitd): Use isnand instead of isnan. + * lib/vasnprintf.c: Include isnand.h instead of isnan.h. + (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan. + * tests/test-frexp.c: Include isnand.h instead of isnan.h. + (main): Use isnand instead of isnan. + * tests/test-round1.c: Include isnand.h. + (main): Use isnand instead of isnan. + * tests/test-round2.c: Include isnand.h instead of isnan.h. + (ISNAN): Set to isnand instead of isnan. + * tests/test-trunc1.c: Include isnand.h. + (main): Use isnand instead of isnan. + * tests/test-trunc2.c: Include isnand.h instead of isnan.h. + (equal): Use isnand instead of isnan. + * MODULES.html.sh (Mathematics ): Replace isnan-nolibm with + isnand-nolibm. + * NEWS: Mention the change. + +2008-01-25 Paul Eggert + Bruno Haible + + * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether + the GCC builtins for signbits are present and set + REPLACE_SIGNBIT_USING_GCC if so. + * lib/math.in.h (signbit): Define using GCC builtins if + REPLACE_SIGNBIT_USING_GCC is set. + * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize + REPLACE_SIGNBIT_USING_GCC. + * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC. + +2008-01-25 Jim Meyering + + Prefer over "config.h". See autoconf doc for explanation. + * lib/poll.c: Include , not "config.h". + * tests/test-getaddrinfo.c: Likewise. + 2008-01-25 Simon Josefsson * modules/sockets-tests: New file.