euidaccess: Update a comment.
[gnulib.git] / ChangeLog
index 3fc2c94..d114b35 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,122 @@
+2011-11-19  Bruno Haible  <bruno@clisp.org>
+
+       euidaccess: Update a comment.
+       * lib/euidaccess.c: Update comment about platforms with faccessat.
+
+2011-11-19  Bruno Haible  <bruno@clisp.org>
+
+       openat: Fix file list.
+       * modules/openat (Files): Remove lib/at-func.c.
+
+2011-11-19  Bruno Haible  <bruno@clisp.org>
+
+       fstatat: Simplify.
+       * lib/fstatat.c (AT_FUNC_NAME): Define as fstatat. On platforms where
+       gnulib should define rpl_fstatat, there is a
+       "#define fstatat rpl_fstatat" in <sys/stat.h>.
+
+2011-11-19  Bruno Haible  <bruno@clisp.org>
+
+       Ensure 'inline' can be used in tests/test-utimens-common.h.
+       * modules/fdutimensat-tests (configure.ac): Require AC_C_INLINE.
+       * modules/futimens-tests (configure.ac): Likewise.
+       * modules/utimens-tests (configure.ac): Likewise.
+       * modules/utimensat-tests (configure.ac): Likewise.
+
+2011-11-19  Simon Josefsson  <simon@josefsson.org>
+
+       * lib/hash.c (hash_insert): Use hash_insert_if_absent,
+       not hash_insert0.
+       (hash_insert_if_absent): Doc fix.
+
+2011-11-19  Simon Josefsson  <simon@josefsson.org>
+
+       * m4/readline.m4 (gl_FUNC_READLINE): Check for readline/history.h.
+
+2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
+
+       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
+       <http://lists.gnu.org/archive/html/bug-gnulib/2011-11/msg00237.html>.
+       A similar problem was reported for OpenBSD 4.6 by Mats Erik Andersson
+       <http://lists.gnu.org/archive/html/bug-gnulib/2011-11/msg00239.html>
+       and I reproduced it on a Solaris 8 host we still have in production.
+
+2011-11-18  Jim Meyering  <meyering@redhat.com>
+
+       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  <dam@opencsw.org>  (tiny change)
+
+       openat: avoid compilation failure due to lack of <errno.h> inclusion
+       * lib/openat.c: Include <errno.h>.
+
+2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * modules/getcwd (Depends-on): Add fdopendir.
+       This fixes one of the two problems reported by Kai Habel in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2011-11/msg00237.html>.
+
+       modules/crypto/gc-*: simplify dependencies and fix stdalign.h bug
+       stdalign problem reported by Ian Beckwith in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2011-11/msg00238.html>.
+       * 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  <meyering@redhat.com>
 
+       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.