getaddrinfo: Move AC_LIBOBJ invocations to module description.
[pspp] / ChangeLog
index 5a0d7af5c825a62ce4ca04c7b605ad7695162d9c..efeb4c4934868cb09a79f7d88973b5584fda39c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,620 @@
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getaddrinfo: Move AC_LIBOBJ invocations to module description.
+       * m4/getaddrinfo.m4 (gl_GETADDRINFO): Set HAVE_GETADDRINFO, Move
+       AC_LIBOBJ invocations from here...
+       * modules/getaddrinfo (configure.ac): ... to here.
+       (Depends-on): Add conditions.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       inet_pton. getaddrinfo: Respect rules for use of AC_LIBOBJ.
+       * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Set HAVE_INET_PTON. Call
+       AC_CHECK_FUNCS instead of AC_REPLACE_FUNCS. Don't invoke
+       gl_PREREQ_INET_PTON. Move tests for declaration of inet_pton here...
+       (gl_PREREQ_INET_PTON): ... from here.
+       * modules/inet_pton (configure.ac): Invoke AC_LIBOBJ and
+       gl_PREREQ_INET_PTON here.
+       (Depends-on): Update condition.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       inet_ntop. getaddrinfo: Respect rules for use of AC_LIBOBJ.
+       * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Set HAVE_INET_NTOP. Call
+       AC_CHECK_FUNCS instead of AC_REPLACE_FUNCS. Don't invoke
+       gl_PREREQ_INET_NTOP. Move tests for declaration of inet_ntop here...
+       (gl_PREREQ_INET_NTOP): ... from here.
+       * modules/inet_ntop (configure.ac): Invoke AC_LIBOBJ and
+       gl_PREREQ_INET_NTOP here.
+       (Depends-on): Update condition.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       iconv_open: Move AC_LIBOBJ invocations to module description.
+       * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN, gl_REPLACE_ICONV_OPEN): Move
+       AC_LIBOBJ invocations from here...
+       * modules/iconv_open (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       iconv_open, iconv_open-utf: Respect rules for use of AC_LIBOBJ.
+       If module 'iconv_open' is among the main modules and module
+       'iconv_open-utf' is among the tests dependencies, then
+       REPLACE_ICONV_UTF will be defined to 1, hence iconv_open() in lib may
+       return the special iconv_t values. Therefore iconv() and iconv_close()
+       must support these special iconv_t values, already in lib, not only in
+       tests.
+       * m4/iconv_open-utf.m4: New file, extracted from m4/iconv_open.m4.
+       * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke
+       gl_FUNC_ICONV_OPEN_UTF_SUPPORT if present.
+       (gl_FUNC_ICONV_OPEN_UTF): Remove macro.
+       * modules/iconv_open (Files): Add lib/iconv.c, lib/iconv_close.c.
+       (Depends-on): Add the dependencies of iconv_open-utf.
+       * modules/iconv_open-utf (Files): Add m4/iconv_open-utf.m4. Remove
+       m4/iconv_open.m4, lib/iconv.c, lib/iconv_close.c.
+       (Depends-on): Remove modules needed by lib/iconv.c, lib/iconv_close.c.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       group-member: Move AC_LIBOBJ invocations to module description.
+       * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Move AC_LIBOBJ and
+       gl_PREREQ_GROUP_MEMBER invocations from here...
+       * modules/group-member (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       grantpt: Move AC_LIBOBJ invocations to module description.
+       * m4/grantpt.m4 (gl_FUNC_GRANTPT): Move AC_LIBOBJ and gl_PREREQ_GRANTPT
+       invocations from here...
+       * modules/grantpt (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       glob: Move AC_LIBOBJ invocations to module description.
+       * m4/glob.m4 (gl_GLOB): Move AC_LIBOBJ and gl_PREREQ_GLOB invocations
+       from here...
+       * modules/glob (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getusershell: Move AC_LIBOBJ invocations to module description.
+       * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Set HAVE_GETUSERSHELL.
+       Move AC_LIBOBJ invocation from here...
+       * modules/getusershell (configure.ac): ... to here.
+       (Depends-on): Update condition.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       gettimeofday: Move AC_LIBOBJ invocations to module description.
+       * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
+       gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Move AC_LIBOBJ and
+       gl_PREREQ_GETTIMEOFDAY invocations from here...
+       * modules/gettimeofday (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       gettimeofday, tzset: Respect rules for use of AC_LIBOBJ.
+       * modules/tzset (configure.ac): Don't invoke gl_FUNC_TZSET_CLOBBER,
+       just gl_FUNC_TZSET.
+       * m4/tzset.m4 (gl_FUNC_TZSET): New macro.
+       (gl_FUNC_TZSET_CLOBBER): Remove actions.
+       * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Invoke
+       gl_FUNC_TZSET_CLOBBER and its actions here, if present.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getsubopt: Move AC_LIBOBJ invocations to module description.
+       * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Move AC_LIBOBJ and
+       gl_PREREQ_GETSUBOPT invocations from here...
+       * modules/getsubopt (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getpass-gnu: Move AC_LIBOBJ invocations to module description.
+       * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): Set REPLACE_GETPASS. Move
+       AC_LIBOBJ and gl_PREREQ_GETPASS invocations from here...
+       * modules/getpass-gnu (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getpass: Move AC_LIBOBJ invocations to module description.
+       * m4/getpass.m4 (gl_FUNC_GETPASS): Set HAVE_GETPASS. Move AC_LIBOBJ and
+       gl_PREREQ_GETPASS invocations from here...
+       * modules/getpass (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getpagesize: Move AC_LIBOBJ invocations to module description.
+       * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Move AC_LIBOBJ invocation
+       from here...
+       * modules/getpagesize (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getopt: Move AC_LIBOBJ invocations to module description.
+       * m4/getopt.m4 (gl_REPLACE_GETOPT): Remove macro.
+       (gl_FUNC_GETOPT): Inline it here. Move AC_LIBOBJ and gl_PREREQ_GETOPT
+       invocations from here...
+       * modules/getopt-gnu (configure.ac): ... to here.
+       * modules/getopt-posix (configure.ac): ... and here.
+       (Depends-on): Update condition.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getopt, argp: Respect rules for use of AC_LIBOBJ.
+       * m4/argp.m4 (gl_ARGP): Don't invoke gl_REPLACE_GETOPT.
+       (gl_REPLACE_GETOPT_ALWAYS): New macro.
+       * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX): Test whether
+       gl_REPLACE_GETOPT_ALWAYS is defined. Set REPLACE_GETOPT.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getlogin_r: Move AC_LIBOBJ invocations to module description.
+       * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Move AC_LIBOBJ and
+       gl_PREREQ_GETLOGIN_R invocations from here...
+       * modules/getlogin_r (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getlogin: Move AC_LIBOBJ invocations to module description.
+       * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Move AC_LIBOBJ invocation from
+       here...
+       * modules/getlogin (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getloadavg: Move AC_LIBOBJ invocations to module description.
+       * m4/getloadavg.m4 (gl_FUNC_GETDELIM): Set HAVE_GETLOADAVG. Move
+       AC_LIBOBJ and gl_PREREQ_GETLOADAVG invocations from here...
+       * modules/getloadavg (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       gethrxtime: Move AC_LIBOBJ invocations to module description.
+       * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Move code that determines
+       LIB_GETHRXTIME from here...
+       (gl_GETHRXTIME): ... to here. Move AC_LIBOBJ and gl_PREREQ_GETHRXTIME
+       invocations from here...
+       * modules/gethrxtime (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       gethostname: Move AC_LIBOBJ invocations to module description.
+       * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Move AC_LIBOBJ and
+       gl_PREREQ_GETHOSTNAME invocations from here...
+       * modules/gethostname (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getgroups: Move AC_LIBOBJ invocations to module description.
+       * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Move AC_LIBOBJ invocations from
+       here...
+       * modules/getgroups (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getdtablesize: Move AC_LIBOBJ invocations to module description.
+       * m4/getdtablesize.m4 (gl_FUNC_GETDTABLESIZE): Move AC_LIBOBJ
+       invocation from here...
+       * modules/getdtablesize (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getdomainname: Move AC_LIBOBJ invocations to module description.
+       * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Move AC_LIBOBJ and
+       gl_PREREQ_GETDOMAINNAME invocations from here...
+       * modules/getdomainname (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getline: Move AC_LIBOBJ invocations to module description.
+       * m4/getline.m4 (gl_FUNC_GETLINE): Move AC_LIBOBJ and gl_PREREQ_GETLINE
+       invocations from here...
+       * modules/getline (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getline: Simplify.
+       * m4/getline.m4 (gl_PREREQ_GETLINE): Don't invoke gl_FUNC_GETDELIM.
+       It's already handled through the module dependency.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getdelim: Move AC_LIBOBJ invocations to module description.
+       * m4/getdelim.m4 (gl_FUNC_GETDELIM): Set HAVE_GETDELIM. Move AC_LIBOBJ
+       and gl_PREREQ_GETDELIM invocations from here...
+       * modules/getdelim (configure.ac): ... to here.
+       (Depends-on): Fix condition.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getcwd: Move AC_LIBOBJ invocations to module description.
+       * m4/getcwd.m4 (gl_FUNC_GETCWD): Move AC_LIBOBJ and gl_PREREQ_GETCWD
+       invocations from here...
+       * modules/getcwd (configure.ac): ... to here.
+
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getcwd-lgpl: Move AC_LIBOBJ invocations to module description.
+       * m4/getcwd.m4 (gl_FUNC_GETCWD_LGPL): Move AC_LIBOBJ invocation from
+       here...
+       * modules/getcwd-lgpl (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       crypto/gc: Move AC_LIBOBJ invocations to module description.
+       * m4/gc.m4 (gl_GC): Move AC_LIBOBJ invocations from here...
+       * modules/crypto/gc (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fwriting: Move AC_LIBOBJ invocations to module description.
+       * m4/fwriting.m4 (gl_FUNC_FWRITINT): Move AC_LIBOBJ invocation from
+       here...
+       * modules/fwriting (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fwritable: Move AC_LIBOBJ invocations to module description.
+       * m4/fwritable.m4 (gl_FUNC_FWRITABLE): Move AC_LIBOBJ invocation from
+       here...
+       * modules/fwritable (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       futimens: Move AC_LIBOBJ invocations to module description.
+       * m4/futimens.m4 (gl_FUNC_FUTIMENS): Move AC_LIBOBJ invocations from
+       here...
+       * modules/futimens (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       ftruncate: Move AC_LIBOBJ invocations to module description.
+       * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Move AC_LIBOBJ and
+       gl_PREREQ_FTRUNCATE invocations from here...
+       * modules/ftruncate (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fsync: Move AC_LIBOBJ invocations to module description.
+       * m4/fsync.m4 (gl_FUNC_FSYNC): Move AC_LIBOBJ and gl_PREREQ_FSYNC
+       invocations from here...
+       * modules/fsync (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fsusage: Move AC_LIBOBJ invocations to module description.
+       * m4/fsusage.m4 (gl_FUNC_FREOPEN): Move AC_LIBOBJ and
+       gl_PREREQ_FSUSAGE_EXTRA invocations from here...
+       * modules/fsusage (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       freopen: Move AC_LIBOBJ invocations to module description.
+       * m4/freopen.m4 (gl_FUNC_FREOPEN): Move AC_LIBOBJ and gl_PREREQ_FREOPEN
+       invocations from here...
+       * modules/freopen (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       free: Move AC_LIBOBJ invocations to module description.
+       * m4/free.m4 (gl_FUNC_FREE): Move AC_LIBOBJ and missing gl_PREREQ_FREE
+       invocations from here...
+       * modules/free (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       freadable: Move AC_LIBOBJ invocations to module description.
+       * m4/freadable.m4 (gl_FUNC_FREADABLE): Move AC_LIBOBJ invocation from
+       here...
+       * modules/freadable (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fpurge: Move AC_LIBOBJ invocations to module description.
+       * m4/fpurge.m4 (gl_FUNC_FPURGE): Set HAVE_FPURGE. Move AC_LIBOBJ
+       invocations from here...
+       * modules/fpurge (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fpending: Move AC_LIBOBJ invocations to module description.
+       * m4/fpending.m4 (gl_PREREQ_FPENDING): New macro, extracted from
+       gl_FUNC_FPENDING.
+       (gl_FUNC_FPENDING): Move AC_LIBOBJ and gl_PREREQ_FPENDING
+       invocations from here...
+       * modules/fpending (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fopen: Move AC_LIBOBJ invocations to module description.
+       * m4/fopen.m4 (gl_FUNC_FOPEN): Move AC_LIBOBJ and gl_PREREQ_FOPEN
+       invocations from here...
+       * modules/fopen (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fnmatch, fnmatch-gnu: Move AC_LIBOBJ invocations to module description.
+       * m4/fnmatch.m4 (gl_PREREQ_FNMATCH): New macro, extracted from
+       gl_FUNC_FNMATCH_POSIX.
+       (gl_FUNC_FNMATCH_POSIX): Move AC_LIBOBJ and gl_PREREQ_FNMATCH
+       invocations from here...
+       * modules/fnmatch (configure.ac): ... to here.
+       * modules/fnmatch-gnu (configure.ac): ... and here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       flock: Move AC_LIBOBJ invocations to module description.
+       * m4/flock.m4 (gl_FUNC_FLOCK): Move AC_LIBOBJ and gl_PREREQ_FLOCK
+       invocations from here...
+       * modules/flock (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fileblocks: Move AC_LIBOBJ invocations to module description.
+       * m4/fileblocks.m4 (gl_FILEBLOCKS): Move AC_LIBOBJ and
+       gl_PREREQ_FILEBLOCKS invocations from here...
+       * modules/fileblocks (configure.ac): ... to here.
+
+2011-05-06  Bruno Haible  <bruno@clisp.org>
+
+       fflush: Move AC_LIBOBJ invocations to module description.
+       * m4/fflush.m4 (gl_REPLACE_FFLUSH): Remove macro.
+       (gl_FUNC_FFLUSH): Inline it here. Move AC_LIBOBJ and gl_PREREQ_FFLUSH
+       invocations from here...
+       * modules/fflush (configure.ac): ... to here.
+
+2011-05-06  Bruno Haible  <bruno@clisp.org>
+
+       fdopendir: Move AC_LIBOBJ invocations to module description.
+       * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Move AC_LIBOBJ invocations from
+       here...
+       * modules/fdopendir (configure.ac): ... to here.
+       (Depends-on): Improve conditions.
+
+2011-05-06  Bruno Haible  <bruno@clisp.org>
+
+       _Exit: Move AC_LIBOBJ invocations to module description.
+       * m4/_Exit.m4 (gl_FUNC__EXIT): Move AC_LIBOBJ and gl_PREREQ__EXIT
+       invocations from here...
+       * modules/_Exit (configure.ac): ... to here.
+
+2011-05-21  Bruno Haible  <bruno@clisp.org>
+
+       euidaccess: Respect rules for use of AC_LIBOBJ.
+       * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Call AC_CHECK_FUNCS instead of
+       AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_EUIDACCESS invocations
+       from here...
+       * modules/euidaccess (configure.ac): ... to here.
+
+2011-05-06  Bruno Haible  <bruno@clisp.org>
+
+       error: Move AC_LIBOBJ invocations to module description.
+       * m4/error.m4 (gl_ERROR): Inline AC_FUNC_ERROR_AT_LINE. Remove
+       AC_LIBSOURCES invocation. Move AC_LIBOBJ and gl_PREREQ_ERROR
+       invocations from here...
+       * modules/error (configure.ac): ... to here.
+
+2011-05-06  Bruno Haible  <bruno@clisp.org>
+
+       duplocale: Move AC_LIBOBJ invocations to module description.
+       * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Move AC_LIBOBJ and
+       gl_PREREQ_DUPLOCALE invocations from here...
+       * modules/duplocale (configure.ac): ... to here.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       dirfd: Move AC_LIBOBJ invocations to module description.
+       * m4/dirfd.m4 (gl_PREREQ_DIRFD): New macro, extracted from
+       gl_FUNC_DIRFD.
+       (gl_FUNC_DIRFD): Move AC_LIBOBJ and gl_PREREQ_DIRFD invocations from
+       here...
+       * modules/dirfd (configure.ac): ... to here.
+       (Depends-on): Fix condition.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       chown: Respect rules for use of AC_LIBOBJ.
+       * m4/chown.m4 (gl_FUNC_CHOWN): Move AC_LIBOBJ invocations from here...
+       * modules/chown (configure.ac): ... to here.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       chdir-long: Move AC_LIBOBJ invocations to module description.
+       * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Move AC_LIBOBJ and
+       gl_PREREQ_CHDIR_LONG invocations from here...
+       * modules/chdir-long (configure.ac): ... to here.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       canonicalize-lgpl: Move AC_LIBOBJ invocations to module description.
+       * m4/canonicalize.m4 (gl_CANONICALIZE_LGPL): Move AC_LIBOBJ invocation
+       from here...
+       * modules/canonicalize-lgpl (configure.ac): ... to here.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       calloc-posix, calloc-gnu: Move AC_LIBOBJs to module description.
+       * m4/calloc.m4 (gl_REPLACE_CALLOC): Remove macro.
+       (gl_FUNC_CALLOC_GNU, gl_FUNC_CALLOC_POSIX): Instead, just set
+       REPLACE_CALLOC.
+       * modules/calloc-posix (configure.ac): Invoke AC_LIBOBJ here.
+       * modules/calloc-gnu (configure.ac): Likewise.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       btowc: Move AC_LIBOBJ invocations to module description.
+       * m4/btowc.m4 (gl_FUNC_BTOWC): Move AC_LIBOBJ and gl_PREREQ_BTOWC
+       invocations from here...
+       * modules/btowc (configure.ac): ... to here.
+
+2011-05-21  Bruno Haible  <bruno@clisp.org>
+
+       atexit: Move AC_LIBOBJ invocations to module description.
+       * m4/atexit.m4 (gl_FUNC_ATEXIT): Call AC_CHECK_FUNCS instead of
+       AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_ATEXIT invocations from
+       here...
+       * modules/atexit (configure.ac): ... to here.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       atoll: Move AC_LIBOBJ invocations to module description.
+       * m4/atoll.m4 (gl_FUNC_ATOLL): Move AC_LIBOBJ and gl_PREREQ_ATOLL
+       invocations from here...
+       * modules/atoll (configure.ac): ... to here.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       argz: Move AC_LIBOBJ invocations to module description.
+       * m4/argz.m4 (gl_FUNC_ARGZ): Move AC_LIBOBJ invocation from here...
+       * modules/argz (configure.ac): ... to here.
+
+2011-05-05  Bruno Haible  <bruno@clisp.org>
+
+       alphasort: Move AC_LIBOBJ invocations to module description.
+       * m4/alphasort.m4 (gl_FUNC_ALPHASORT): Move AC_LIBOBJ and
+       gl_PREREQ_ALPHASORT invocations from here...
+       * modules/alphasort (configure.ac): ... to here.
+
+2011-06-15  Paul Eggert  <eggert@cs.ucla.edu>
+
+       verify: new macro verify_expr; verify_true deprecated
+       * NEWS: Mention this.
+       * doc/verify.texi (Compile-time Assertions): Document this.
+       * lib/verify.h (verify_true): Deprecate.
+       (verify_expr): New macro.
+       * tests/test-verify.c (function): Test verify_expr.
+
+2011-06-14  Jim Meyering  <meyering@redhat.com>
+
+       init.sh: give more portable redirection-related advice in a comment
+       * tests/init.sh (stderr_fileno_): Update the advice in comments.
+       See http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/22488
+       for lots of discussion.  Stefano Lattarini suggested the solution
+       of putting "9>&2" after the command.  Reported by Bruno Haible.
+
+2011-06-13  Bruno Haible  <bruno@clisp.org>
+
+       locale-zh: Reject zh_CN.GB18030 locale on Solaris 8.
+       * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): On Solaris 8, set LOCALE_ZH_CN to
+       'none'.
+
+2011-06-13  Paul Eggert  <eggert@cs.ucla.edu>
+
+       ftoastr: use strtof only if HAVE_STRTOF
+       This is needed on HP-UX 11.11 with GCC 4.2.4; see Bruno Haible's report
+       <http://lists.gnu.org/archive/html/bug-gnulib/2011-06/msg00154.html>.
+       * lib/ftoastr.c (STRTOF) [LENGTH == 1]: Use strtof only if HAVE_STRTOF.
+       * modules/ftoastr (configure.ac): Check for strtof.
+
+2011-06-13  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Addendum to 2011-06-08 commit.
+       * gnulib-tool (func_emit_lib_Makefile_am): If options --makefile-name
+       and --witness-c-macro have been given, augment AM_CPPFLAGS.
+
+2011-06-13  Bruno Haible  <bruno@clisp.org>
+
+       fseeko: Provide a non-inline replacement of fseek().
+       * lib/stdio.in.h (fseek): Don't provide if module 'fseek' is not used.
+       * modules/fseeko (Depends-on): Add fseek.
+       * modules/fseek (License): Change to LGPLv2+.
+
+2011-06-13  Bruno Haible  <bruno@clisp.org>
+
+       ftello: Provide a non-inline replacement of ftell().
+       * lib/stdio.in.h (ftell): Don't provide if module 'ftell' is not used.
+       * m4/ftell.m4 (gl_FUNC_FTELL): Replace ftell also if the system does
+       not have ftello() (such as on mingw).
+       * modules/ftello (Depends-on): Add ftell.
+       * modules/ftell (License): Change to LGPLv2+.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       ftell: Move AC_LIBOBJ invocations to module description.
+       * m4/ftell.m4 (gl_FUNC_FTELL): Move AC_LIBOBJ invocation from here...
+       * modules/ftell (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       ftello: Respect rules for use of AC_LIBOBJ.
+       * m4/ftello.m4 (gl_REPLACE_FTELLO): Remove macro.
+       (gl_FUNC_FTELLO): Inline it here. Move AC_LIBOBJ invocation from
+       here...
+       * modules/ftello (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fseeko: Simplify.
+       * m4/fseeko.m4 (gl_HAVE_FSEEKO): Remove macro.
+       (gl_FUNC_FSEEKO): Inline it here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fseek: Move AC_LIBOBJ invocations to module description.
+       * m4/fseek.m4 (gl_REPLACE_FSEEK): Remove macro.
+       (gl_FUNC_FSEEK): Inline it here. Move AC_LIBOBJ invocation from here...
+       * modules/fseek (configure.ac): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fseek: Respect rules for use of AC_LIBOBJ.
+       * m4/fseeko.m4 (gl_FUNC_FSEEKO): Move gl_REPLACE_FSEEK invocation from
+       here...
+       * m4/fseek.m4 (gl_FUNC_FSEEK): ... to here.
+
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       fseeko: Respect rules for use of AC_LIBOBJ.
+       * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Remove macro.
+       (gl_FUNC_FSEEKO): Inline it here. Move AC_LIBOBJ invocation from
+       here...
+       * modules/fseeko (configure.ac): ... to here.
+
+2011-06-13  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Allow comments in the 'Depends-on' section.
+       * doc/gnulib.texi (Module description): Mention comment syntax in the
+       Depends-on section.
+       * gnulib-tool (func_get_dependencies): Filter out comment lines.
+
+2011-06-13  Bruno Haible  <bruno@clisp.org>
+
+       file-set.h: guard __attibute__ use, now that it's not always defined
+       * lib/file-set.h (record_file): Use __attribute__ only with compiler
+       versions that support it.  This fixes a coreutils build failure with
+       the vendor cc on HP-UX 11.31.
+
+2011-06-12  Bruno Haible  <bruno@clisp.org>
+
+       acl: Add support for HP-UX >= 11.11 JFS ACLs.
+       * doc/acl-resources.txt: Add info about the ACL APIs on HP-UX.
+       * m4/acl.m4 (gl_FUNC_ACL): Also test for HP-UX 11.11 API.
+       * lib/acl-internal.h [HP-UX 11.11]: Include <aclv.h>.
+       (acl, aclsort): New declarations.
+       (aclv_nontrivial): New declaration.
+       * lib/file-has-acl.c (aclv_nontrivial) [HP-UX 11.11]: New function.
+       (file_has_acl): Read also the second kind of HP-UX ACLs.
+       * lib/set-mode-acl.c (qset_acl) [HP-UX 11.11]: Try to set the second
+       kind of HP-UX ACLs if the first kind fails.
+       * lib/copy-acl.c (qcopy_acl) [HP-UX 11.11]: Read and set also the
+       second kind of HP-UX ACLs.
+       * tests/test-sameacls.c [HP-UX 11.11]: Include <aclv.h>.
+       (main) [HP-UX 11.11]: Test also whether the second kind of HP-UX ACLs
+       agree.
+       * tests/test-file-has-acl.sh (acl_flavor) [HP-UX 11.11]: Set to
+       hpuxjfs.
+       Handle hpuxjfs.
+       * tests/test-set-mode-acl.sh (acl_flavor) [HP-UX 11.11]: Set to
+       hpuxjfs.
+       Handle hpuxjfs.
+       * tests/test-copy-acl.sh (acl_flavor) [HP-UX 11.11]: Set to hpuxjfs.
+       (func_test_same_acls): Use both lsacl and getacl.
+       Handle hpuxjfs.
+       * tests/test-copy-file.sh (acl_flavor) [HP-UX 11.11]: Set to hpuxjfs.
+       (func_test_same_acls): Use both lsacl and getacl.
+       Handle hpuxjfs.
+
 2011-06-12  Bruno Haible  <bruno@clisp.org>
 
        acl: Complete the 2010-08-10 fix.