X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=cabef931af479e22063a821c64701bfe27c2c8de;hb=49c136f53f6b22e91f2bb4c636e81e5930613d04;hp=15118d94197294404d0eefad32ae7a4b0656f6ed;hpb=908690cb743e69c73b42ae310807b29800c8764b;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index 15118d941..cabef931a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,62 @@ +2011-12-03 Bruno Haible + + Fix module descriptions syntax. + * modules/argv-iter (License): Fix syntax. + * modules/di-set (License): Likewise. + * modules/ino-map (License): Likewise. + Reported by Stefano Lattarini . + +2011-12-02 Paul Eggert + + stdalign: port to Clang 3.0 + Problem reported by Simon Josefsson in + . + * doc/posix-headers/stdalign.texi (stdalign.h): Mention Clang 3.0, + which has but which does not define alignof. + * m4/stdalign.m4 (gl_STDALIGN_H): Check for Clang 3.0's problem. + +2011-12-01 Eric Blake + + mktempd: silence dd usage + * build-aux/mktempd (rand_bytes): Silence dd. + +2011-11-30 Simon Josefsson + + manywarnings: Don't mention gcc version in docstring. + * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Doc fix. Suggested by + Jim Meyering . + +2011-11-30 Jim Meyering + + hash: mark a few floating point constants with "f" suffix + * lib/hash.c (DEFAULT_GROWTH_THRESHOLD, DEFAULT_GROWTH_FACTOR) + (DEFAULT_SHRINK_THRESHOLD, DEFAULT_SHRINK_FACTOR): Mark literal + floating point constants with "f", since they're destined to be + saved/used as "float"s. + +2011-11-29 Paolo Bonzini + + float tests: Correct and re-enable assertion about LDBL_MIN_EXP. + * tests/test-float.c (test_long_double): Correct and re-enable the + assertion about LDBL_MIN_EXP that was disabled on 2011-08-31. + +2011-11-29 Matthew Wala (tiny change) + + Avoid subtracting two pointers that don't point into the same block. + * lib/argp-help.c (hol_append): Reorder pointer subtractions so that + only pointers into the same memory block are subtracted. We cannot + assume that sizeof (ptrdiff_t) == sizeof (void *). + +2011-11-29 Eric Blake + + maint.mk: add syntax check for use of compare from init.sh + * top/maint.mk (sc_prohibit_reversed_compare_failure): New rule, + moved here from coreutils. + + manywarnings: drop -Wunsuffixed-float-constants + * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): C99 does not allow + '1.0D', which is the only way to silence this warning for 'double'. + 2011-11-29 Jim Meyering hash: mark compute_bucket_size with the pure attribute