X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=8738d35e711cb731bd1448786299ac2e56de2119;hb=6e46c18097a874ec0e57bf2dd1fb94885050c33e;hp=404b95d9faca2d46b80dd56ba35c2fcd7b0b23c4;hpb=12597d104c0c1d6368eed9a9f1ebacd03f99542e;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index 404b95d9f..8738d35e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,237 @@ +2011-11-19 Simon Josefsson + + * m4/readline.m4 (gl_FUNC_READLINE): Check for readline/history.h. + +2011-11-18 Paul Eggert + + test-getcwd: disambiguate exit status + * tests/test-getcwd.c (test_long_name): Return 0..7. + (main): Exit with an unambiguous exit status. The old + code yielded a mysterious mixture of two failure codes. + + fstatat: fix configuration bug on mingw, OpenBSD 4, Solaris 8 + * lib/fstatat.c (AT_FUNC_NAME): Use HAVE_FSTAT, not + HAVE_WORKING_FSTATAT_ZERO_FLAG, to decide whether to define + rpl_fstatat or fstatat. This should fix the other problem + reported by Kai Habel in + . + A similar problem was reported for OpenBSD 4.6 by Mats Erik Andersson + + and I reproduced it on a Solaris 8 host we still have in production. + +2011-11-18 Jim Meyering + + hash: deprecate poorly-named hash_insert0: use hash_insert_if_absent + * lib/hash.c (hash_insert_if_absent): Rename from hash_insert0. + Add a sentence to the comment. + (hash_insert0): New function that simply calls hash_insert_if_absent. + * lib/hash.h (hash_insert_if_absent): Declare it. + (hash_insert0): Add deprecation attribute. + (_GL_ATTRIBUTE_DEPRECATED): Define. + * lib/di-set.c (di_set_insert): Use hash_insert_if_absent, + not hash_insert0. + * NEWS: Mention it, even though it's not really an incompatible change. + +2011-11-18 Dagobert Michelsen (tiny change) + + openat: avoid compilation failure due to lack of inclusion + * lib/openat.c: Include . + +2011-11-17 Paul Eggert + + * modules/getcwd (Depends-on): Add fdopendir. + This fixes one of the two problems reported by Kai Habel in + . + + modules/crypto/gc-*: simplify dependencies and fix stdalign.h bug + stdalign problem reported by Ian Beckwith in + . + * modules/crypto/gc-arcfour (Depends-on): + Depend conditionally on crypto/arcfour. + * modules/crypto/gc-arctwo (Depends-on): + Depend conditionally on crypto/arctwo. + * modules/crypto/gc-des (Depends-on): + Depend conditionally on crypto/des. + * modules/crypto/gc-hmac-md5 (Depends-on): + Depend conditionally on crypto/hmac-md5. + * modules/crypto/gc-hmac-sha1 (Depends-on): + Depend conditionally on crypto/hmac-sha1. + * modules/crypto/gc-md2 (Depends-on): Remove stdint, minmax. + * modules/crypto/gc-md4 (Depends-on): + Depend conditionally on crypto/md4. + * modules/crypto/gc-md5 (Depends-on): + Depend conditionally on crypto/md5. + * modules/crypto/gc-rijndael (Depends-on): + Depend conditionally on crypto/rijndael. + * modules/crypto/gc-sha1 (Depends-on): + Depend conditionally on crypto/sha1. + * modules/crypto/gc-arcfour: + * modules/crypto/gc-arctwo: + * modules/crypto/gc-des: + * modules/crypto/gc-hmac-md5: + * modules/crypto/gc-hmac-sha1: + * modules/crypto/gc-md2: + * modules/crypto/gc-md4: + * modules/crypto/gc-md5: + * modules/crypto/gc-rijndael: + * modules/crypto/gc-sha1: + (Files, Depends-on, configure.ac): Remove now-unnecessary stuff, + now that the conditional dependencies do the work for us. + +2011-11-17 Jim Meyering + + tests: factor st_ctime-comparison out of two headers + * tests/test-utimens-common.h (ctime_compare): Define. + * tests/test-futimens.h (test_futimens): Replace open-coded equivalent. + * tests/test-lutimens.h (test_lutimens): Likewise. + * tests/test-utimens.h (test_utimens): Likewise. + + test-getcwd: don't leave behind a confdir3/ directory upon interrupt + Invoke the test program via an init.sh-using wrapper. + * tests/test-getcwd.sh: New file. + * modules/getcwd-tests (Files): Add it. + (Makefile.am) [TESTS]: Invoke the shell script wrapper. + +2011-11-01 Gary V. Vaughan + + gitlog-to-changelog: support multi-author commits. + The FSF cares about keeping track of all authors of patches to its + projects, but Git doesn't provide obvious support for multi-author + changesets. Consensus seems to be forming around the use of extra + Signed-off-by inspired lines in the log message formatted as + `Co-authored-by: A U Thor ' for round-tripping + multi-author commits between version control systems. + * gitlog-to-changelog: Extract `Co-authored-by:' lines from the git + log message and output in standard ChangeLog multi-author format. + Reported by Peter Rosin + +2011-11-15 Ben Walton (tiny change) + Bruno Haible + + Fix some modules' file list. + * modules/fstatat (Files): Add m4/lstat.m4. + * modules/openat (Files): Likewise. + * modules/unlinkat (Files): Likewise. + +2011-11-15 Gary V. Vaughan + + maint.mk: fix tight-scope.mk generation in VPATH builds. + * top/maint.mk (tight-scope.mk): Make sure to prefix file + reference with $(srcdir) so that the file is found correctly even + when running `make syntax-check' in a VPATH build. + +2011-11-13 Bruno Haible + Jim Meyering + + Silence successful tests that use 'compare' on AIX, HP-UX, Solaris. + * tests/init.sh (compare): Remove "No differences encountered" or + synonymous output from the 'diff' program. + +2011-11-13 Bruno Haible + + Makefile: Tweak indentation. + * Makefile: Use tab as first character in every line that contains rule + commands. + +2011-11-13 Bruno Haible + + Syntax check for copyright statements. + * check-copyright: New file. + * Makefile (sc_check_copyright): New rule. + +2011-11-13 Simon Josefsson + + * build-aux/git-version-gen: Add --prefix to configure the tag + match string. + +2011-11-13 Simon Josefsson + + * build-aux/git-version-gen: Add --help and --version. + +2011-11-12 Jim Meyering + + revamp the other test-exclude?.sh scripts to use init.sh, too + * tests/test-exclude1.sh: Use init.sh. + * tests/test-exclude2.sh: Likewise. + * tests/test-exclude3.sh: Likewise. + * tests/test-exclude4.sh: Likewise. + * tests/test-exclude5.sh: Likewise. + * tests/test-exclude6.sh: Likewise. + * tests/test-exclude7.sh: Likewise. + * tests/test-exclude8.sh: Likewise. + * modules/exclude-tests (Files): List init.sh. + + test-exclude2.sh, test-exclude5.sh: fail if test-exclude fails + These shell scripts ignored failure of the binary test-exclude, + so making the latter return 77 didn't cause them to be skipped. + * tests/test-exclude5.sh: Exit with test-exclude's error status + when that program fails. Revamp to use init.sh. + * tests/test-exclude2.sh: Likewise. + + test-exclude: fix a typo + * tests/test-exclude.c (main): Test for "leading_dir", not "leading-dir". + +2011-11-11 Bruno Haible + + obstack: Fix compilation error on MSVC 9. + * lib/obstack.c (print_and_abort): Declare with _Noreturn specifier. + +2011-11-11 Jim Meyering + + test-exclude: skip tests rather than failing on deficient systems + * tests/test-exclude.c (main): Skip tests that use FNM_CASEFOLD + and FNM_LEADING_DIR on systems that lack the definitions. This affects + at least Solaris 9. Reported and diagnosed by Dagobert Michelsen in + http://thread.gmane.org/gmane.comp.gnu.grep.bugs/3947/focus=3950 + +2011-11-10 Bruno Haible + + ptsname_r test: Avoid gcc warning on glibc systems. + * tests/test-ptsname_r.c (null_ptr): New function. + (test_errors): Use it. + +2011-11-10 Bruno Haible + + ptsname_r: Avoid compilation error on OSF/1 5.1. + * lib/stdlib.in.h (ptsname_r): Override if REPLACE_PTSNAME_R is 1. + * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize REPLACE_PTSNAME_R. + * m4/ptsname_r.m4 (gl_FUNC_PTSNAME_R): Set REPLACE_PTSNAME_R if the + function is not declared or incompatibly declared. + * modules/stdlib (Makefile.am): Substitute REPLACE_PTSNAME_R. + * modules/ptsname_r (Depends-on, configure.ac): Update. + * doc/glibc-functions/ptsname_r.texi: Mention the OSF/1 problems. + +2011-11-10 Bruno Haible + + fstatat: Make cross-compilation guess succeed everywhere except on AIX. + * m4/fstatat.m4 (gl_FUNC_FSTATAT): Require AC_CANONICAL_HOST. + When cross-compiling, guess yes on all platforms except AIX. + Reported by Ludovic Courtès . + +2011-11-09 Bruno Haible + + ptsname_r tests: Fix bugs. + * tests/test-ptsname_r.c (test_errors): Change return type to 'void'. + Fix ptsname_r calls. Reduce loop rounds to a reasonable amount. + +2011-11-09 Paul Eggert + + fstatat: work with cross-compilation + Problem reported by Ludovic Courtès in + . + * m4/fstatat.m4 (gl_FUNC_FSTATAT): When cross-compiling, report + "cross-compiling" and assume the bug is present. Replace + FSTATAT_ZERO_FLAG_BROKEN with HAVE_WORKING_FSTATAT_ZERO_FLAG with + an inverted sense, to be more conservative about our assumptions. + * lib/fstatat.c (rpl_fstatat): Adjust to renamed macro. + +2011-11-09 Bruno Haible + + Improve MODULES.html output. + * modules/mkfifoat (Description): Use the word "function". + * modules/readlinkat (Description): Likewise. + * modules/symlinkat (Description): Likewise. + 2011-11-09 Eric Blake ptsname_r-tests: new test module