init.sh: fix typo
[gnulib.git] / ChangeLog
index 934f202..d92487b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,754 @@
+2010-04-05  Jim Meyering  <meyering@redhat.com>
+
+       init.sh: fix typo
+       * tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.
+
+       init.sh: make it easier for a test script to write to the tty, ...
+       when using automake's parallel-tests mode.
+       * tests/init.sh (stderr_fileno_): Define overridable variable.
+       (warn_): New function, to use it.
+       (fail_, skip_, framework_failure_): Use warn_.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       btowc: Avoid warning.
+       * lib/btowc.c: Include <stdlib.h>.
+       Reported by Hauke Fath <hauke@espresso.rhein-neckar.de>.
+
+2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
+            Bruno Haible  <bruno@clisp.org>
+
+       wchar: Port to NetBSD 1.5.
+       * lib/wchar.in.h (WEOF): Provide fallback also when wint_t exists.
+       * lib/wctype.in.h (WEOF): Likewise.
+
+2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
+            Bruno Haible  <bruno@clisp.org>
+
+       Port extended stdio to NetBSD 1.5.
+       * lib/stdio-impl.h [NetBSD]: Include <sys/param.h>.
+       (struct __sfileext, fp_ub): Define the "old way" for NetBSD 1.5Z and
+       older.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       string: Remove unused substitution.
+       * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
+       HAVE_DECL_STRERROR.
+       * modules/string (Makefile.am): Don't substitute HAVE_DECL_STRERROR.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       strtod: Avoid a possible C++ test error.
+       * m4/strtod.m4 (gl_FUNC_STRTOD): When setting HAVE_STRTOD to 0, don't
+       set REPLACE_STRTOD.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       strerror: Update documentation.
+       * doc/posix-functions/strerror.texi: Remove mention of old platforms.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       stdio: Fix some C++ test errors on Solaris 8 with GCC.
+       * lib/stdio.in.h (vdprintf, vfprintf, vprintf, vsprintf): Use
+       _GL_CXXALIAS_SYS_CAST.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
+       * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): When the
+       function is not declared, set HAVE_DECL_FREXPL to 0, instead of setting
+       REPLACE_FREXPL to 1.
+       * doc/posix-functions/frexpl.texi: Update documentation.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       math: Fix some C++ test errors on Solaris 8 and Cygwin.
+       * lib/math.in.h (cosl, logl, sinl): Use simpler idiom.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       Implement nanosleep for native Windows.
+       * lib/nanosleep.c (nanosleep): New implementation for native Windows.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       math: Fix some C++ test errors on Solaris 8.
+       * lib/math.in.h (truncf, trunc): Use simpler idiom.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       math: Fix some C++ test errors on Cygwin.
+       * lib/math.in.h (ceilf, ceill, floorf, floorl, roundf, round, roundl,
+       truncl): Provide declaration if the system does not have it.
+       * m4/ceilf.m4 (gl_FUNC_CEILF): If the function is not declared, set
+       HAVE_DECL_CEILF to 0, not REPLACE_CEILF to 1.
+       * m4/ceill.m4 (gl_FUNC_CEILL): If the function is not declared, set
+       HAVE_DECL_CEILL to 0, not REPLACE_CEILL to 1.
+       * m4/floorf.m4 (gl_FUNC_FLOORF): If the function is not declared, set
+       HAVE_DECL_FLOORF to 0, not REPLACE_FLOORF to 1.
+       * m4/floorl.m4 (gl_FUNC_FLOORL): If the function is not declared, set
+       HAVE_DECL_FLOORL to 0, not REPLACE_FLOORL to 1.
+       * m4/round.m4 (gl_FUNC_ROUND): If the function is not declared, set
+       HAVE_DECL_ROUND to 0, not REPLACE_ROUND to 1.
+       * m4/roundf.m4 (gl_FUNC_ROUNDF): If the function is not declared, set
+       HAVE_DECL_ROUNDF to 0, not REPLACE_ROUNDF to 1.
+       * m4/roundl.m4 (gl_FUNC_ROUNDL): If the function is not declared, set
+       HAVE_DECL_ROUNDL to 0, not REPLACE_ROUNDL to 1.
+       * m4/truncl.m4 (gl_FUNC_TRUNCL): If the function is not declared, set
+       HAVE_DECL_TRUNCL to 0, not REPLACE_TRUNCL to 1.
+       * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize HAVE_DECL_CEILF,
+       HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
+       HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
+       * modules/math (Makefile.am): Substitute HAVE_DECL_CEILF,
+       HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
+       HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       * m4/ceilf.m4 (gl_FUNC_CEILF): Remove redundant AC_SUBST invocation.
+       * m4/ceill.m4 (gl_FUNC_CEILL): Likewise.
+       * m4/floorf.m4 (gl_FUNC_FLOORF): Likewise.
+       * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
+       * m4/isfinite.m4 (gl_ISFINITE): Likewise.
+       * m4/isinf.m4 (gl_ISINF): Likewise.
+       * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       * m4/trunc.m4 (gl_FUNC_TRUNC): Remove redundant AC_SUBST invocation.
+       * m4/truncf.m4 (gl_FUNC_TRUNCF): Likewise.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       * m4/tmpfile.m4 (gl_FUNC_TMPFILE): Renamed from gl_TMPFILE.
+       * modules/tmpfile (configure.ac): Update.
+
+       tmpfile: Fix C++ test error on mingw.
+       * lib/stdio.in.h (tmpfile): New declaration.
+       * m4/tmpfile.m4 (gl_TMPFILE): Require gl_STDIO_H_DEFAULTS. Set
+       REPLACE_TMPFILE instead of defining tmpfile as a macro in config.h.
+       * modules/tmpfile (Depends-on): Add stdio.
+       (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
+       * m4/stdio_h.m4 (gl_STDIO_H): Also check whether tmpfile is declared.
+       (gl_STDIO_H_DEFAULTS): Initialize GNULIB_TMPFILE and REPLACE_TMPFILE.
+       * modules/stdio (Makefile.am): Substitute GNULIB_TMPFILE and
+       REPLACE_TMPFILE.
+       * tests/test-stdio-c++.cc (tmpfile): Verify signature.
+
+2010-04-04  Bruno Haible  <bruno@clisp.org>
+
+       ioctl: Fix C++ test error on mingw.
+       * lib/ioctl.c (ioctl): Renamed from rpl_ioctl.
+       * lib/sys_ioctl.in.h (ioctl): When SYS_IOCTL_H_HAVE_WINSOCK2_H is 1,
+       use _GL_FUNCDECL_SYS, not _GL_FUNCDECL_RPL.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       wcwidth: Fix C++ test error on mingw.
+       * lib/wcwidth.c (wcwidth): Renamed from rpl_wcwidth.
+       * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): If the wcwidth function does not
+       exist, don't set REPLACE_WCWIDTH. Instead, rely on HAVE_DECL_WCWIDTH.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       nanosleep: Fix C++ test error on mingw.
+       * lib/nanosleep.c (nanosleep): Renamed from rpl_nanosleep.
+       * lib/time.in.h (nanosleep): Use modern idiom.
+       * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): When the system does not have a
+       nanosleep function, set HAVE_NANOSLEEP to 0, instead of setting
+       REPLACE_NANOSLEEP to 1.
+       * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_NANOSLEEP.
+       * modules/time (Makefile.am): Substitute HAVE_NANOSLEEP.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       strptime: Fix C++ test error on mingw.
+       * lib/time.in.h (strptime): Use HAVE_STRPTIME, not REPLACE_STRPTIME.
+       * m4/strptime.m4 (gl_FUNC_STRPTIME): Set HAVE_STRPTIME, not
+       REPLACE_STRPTIME. Invoke gl_PREREQ_STRPTIME.
+       (gl_PREREQ_STRPTIME): New macro, extracted from gl_FUNC_STRPTIME.
+       * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_STRPTIME,
+       not REPLACE_STRPTIME.
+       * modules/time (Makefile.am): Substitute HAVE_STRPTIME, not
+       REPLACE_STRPTIME.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       timegm: Fix C++ test error on mingw.
+       * lib/time.in.h (timegm): Use modern idiom.
+       * m4/timegm.m4 (gl_FUNC_TIMEGM): When timegm does not exist, set
+       HAVE_TIMEGM to 0, not REPLACE_TIMEGM to 1.
+       * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_TIMEGM.
+       * modules/time (Makefile.am): Substitute HAVE_TIMEGM.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       timegm: Assume declaration if function exists.
+       * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume timegm is declared if and only
+       if it exists. Don't clobber ac_cv_func_timegm.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       time_r: Fix C++ test error on mingw.
+       * lib/time.in.h (localtime_r, gmtime_r): Use modern idiom.
+       * m4/time_r.m4 (gl_TIME_R): When localtime_r does not exist, set
+       HAVE_LOCALTIME_R to 0, not REPLACE_LOCALTIME_R to 1.
+       * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_LOCALTIME_R.
+       * modules/time (Makefile.am): Substitute HAVE_LOCALTIME_R.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       time_r: Minor updates.
+       * modules/time_r (Description): Mention the provided functions.
+       * lib/time_r.c: Don't include <string.h>.
+       * doc/posix-functions/gmtime_r.texi: Mention the 'time_r' module.
+       * doc/posix-functions/localtime_r.texi: Likewise.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       time: Fix regression introduced on 2010-03-08.
+       * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Require
+       gl_HEADER_TIME_H_DEFAULTS, not gl_HEADER_STRING_H_DEFAULTS.
+
+2010-04-03  Jim Meyering  <meyering@redhat.com>
+
+       maint.mk: don't silently disable project-specific syntax-check rules
+       * top/maint.mk (_prohibit_regexp): Define, to help people realize
+       that they need to convert their project-specific syntax-check rules
+       to use the new _sc_search_regexp.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       fchdir: Fix regression introduced on 2010-03-08.
+       * lib/unistd.in.h (fchdir): Fix declaration.
+       * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set HAVE_FCHDIR, not REPLACE_FCHDIR.
+       * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize HAVE_FCHDIR, not
+       REPLACE_FCHDIR.
+       * modules/unistd (Makefile.am): Substitute HAVE_FCHDIR, not
+       REPLACE_FCHDIR.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       getpagesize: Fix C++ test error on mingw.
+       * lib/unistd.in.h (getpagesize): Don't use _GL_CXXALIASWARN if the
+       system does not declare the function.
+       * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Also check whether it's
+       declared.
+       * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
+       HAVE_DECL_GETPAGESIZE.
+       * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETPAGESIZE.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       stdio: Make C++ tests work on mingw.
+       * lib/stdio.in.h (getline): Don't use _GL_CXXALIASWARN if the system
+       does not declare the function.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       ftello: Fix C++ test error on mingw.
+       * lib/stdio.in.h (ftello): Use modern idiom.
+       * lib/ftello.c (ftello): Renamed from rpl_ftello.
+       * m4/ftello.m4 (gl_FUNC_FTELLO): Distinguish the case that the function
+       is missing and that it needs to be replaced.
+       (gl_REPLACE_FTELLO): Don't set REPLACE_FTELLO here.
+       * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FTELLO.
+       * modules/stdio (Makefile.am): Substitute HAVE_FTELLO.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       fseeko: Fix C++ test error on mingw.
+       * lib/stdio.in.h (fseeko): Use modern idiom.
+       * lib/fseeko.c (fseeko): Renamed from rpl_fseeko.
+       * m4/fseeko.m4 (gl_FUNC_FSEEKO): Distinguish the case that the function
+       is missing and that it needs to be replaced.
+       (gl_REPLACE_FSEEKO): Don't set REPLACE_FSEEKO here.
+       * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FSEEKO.
+       * modules/stdio (Makefile.am): Substitute HAVE_FSEEKO.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       mkstemp: Fix C++ test error on mingw.
+       * lib/stdlib.in.h (mkstemp): Use modern idiom.
+       * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Distinguish the case that the
+       function is missing and that it needs to be replaced.
+       * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize HAVE_MKSTEMP.
+       * modules/stdlib (Makefile.am): Substitute HAVE_MKSTEMP.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       stpncpy: Fix C++ test error on mingw.
+       * lib/string.in.h (stpncpy): Use modern idiom.
+       * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Distinguish the case that the
+       function is missing and that it needs to be replaced.
+       * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
+       REPLACE_STPNCPY.
+       * modules/string (Makefile.am): Substitute REPLACE_STPNCPY.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       sys_stat: Fix C++ test error on mingw.
+       * build-aux/c++defs.h (_GL_CXXALIAS_RPL_CAST_1): New macro.
+       * lib/sys_stat.in.h (lchmod): Use it instead of _GL_CXXALIAS_RPL_1.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       pty: Update doc.
+       * doc/glibc-headers/pty.texi: Mention changes done since 2010-03-18.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       unistd: Fix C++ test error on mingw.
+       * lib/unistd.in.h (getcwd): Use _GL_CXXALIAS_SYS_CAST.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       Update doc regarding mingw.
+       * doc/glibc-functions/openpty.texi: Update regarding mingw.
+       * doc/glibc-functions/login_tty.texi: Likewise.
+       * doc/glibc-functions/forkpty.texi: Likewise.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       stdlib: Avoid compilation failure of c-strtold on mingw.
+       * lib/stdlib.in.h: Don't include <unistd.h> on native Windows systems.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       locale: Make C++ tests work on Cygwin and mingw.
+       * lib/locale.in.h (duplocale): Don't use _GL_CXXALIASWARN if gnulib
+       cannot provide the function.
+       Reported by Simon Josefsson.
+
+2010-04-03  Bruno Haible  <bruno@clisp.org>
+
+       localename: Port to MacOS X 10.6.
+       * lib/localename.c (gl_locale_name_thread_unsafe): On MacOS X, try the
+       memory layout of the locales in MacOS X 10.6 as well.
+       Reported by Panu Kekäläinen <panu@kekalainen.eu>.
+
+2010-04-02  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Ensure that long-running tests are executed last.
+       * gnulib-tool (func_emit_tests_Makefile_am): Emit the code for long-
+       running tests after the one for the other tests.
+
+2010-04-02  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Ensure the tests in the main directory are executed first.
+       * gnulib-tool (func_emit_tests_Makefile_am): Initialize SUBDIRS to
+       start with the current directory.
+
+2010-04-02  Bruno Haible  <bruno@clisp.org>
+
+       Tests for module 'havelib', moved here from GNU gettext.
+       * modules/havelib-tests: New file, from gettext/autoconf-lib-link with
+       modifications.
+       * tests/havelib/README: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/Makefile.am: New file, from gettext/autoconf-lib-link
+       with modifications.
+       * tests/havelib/rpath-1: New file, from gettext/autoconf-lib-link with
+       modifications.
+       * tests/havelib/rpath-1a: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-1b: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2_a: New file, from gettext/autoconf-lib-link
+       with modifications.
+       * tests/havelib/rpath-2_b: New file, from gettext/autoconf-lib-link
+       with modifications.
+       * tests/havelib/rpath-2aaa: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2aab: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2aac: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2aad: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2aba: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2abb: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2abc: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2abd: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2baa: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2bab: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2bac: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2bad: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2bba: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2bbb: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2bbc: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-2bbd: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3_a: New file, from gettext/autoconf-lib-link
+       with modifications.
+       * tests/havelib/rpath-3_b: New file, from gettext/autoconf-lib-link
+       with modifications.
+       * tests/havelib/rpath-3aaa: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aab: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aac: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aad: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aae: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aaf: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aag: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aah: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3aba: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3abb: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3abc: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3abd: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3abe: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3abf: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3abg: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3abh: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3baa: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bab: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bac: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bad: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bae: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3baf: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bag: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bah: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bba: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bbb: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bbc: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bbd: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bbe: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bbf: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bbg: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpath-3bbh: New file, from gettext/autoconf-lib-link.
+       * tests/havelib/rpathx/rpathx.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathx/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathx/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathy/rpathy.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathy/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathy/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathz/rpathz.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathz/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathz/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathlx/usex.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlx/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlx/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathly/usey.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathly/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathly/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathlz/usez.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlz/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlz/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathlyx/usey.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlyx/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlyx/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathlzyx/usez.c: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlzyx/Makefile.am: New file, from
+       gettext/autoconf-lib-link.
+       * tests/havelib/rpathlzyx/configure.ac: New file, from
+       gettext/autoconf-lib-link with modifications.
+       * tests/havelib/rpathcfg.sh: New file, from gettext/autoconf-lib-link
+       with modifications.
+
+2010-04-02  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Create distributed built sources also for the tests.
+       * gnulib-tool (func_create_testdir): Also generate distributed built
+       sources in the tests directory.
+
+2010-04-02  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Obey user's environment variables.
+       * gnulib-tool (func_create_testdir): When creating built sources,
+       respect the environment variables for autoconf, automake, etc. given by
+       the user.
+
+2010-04-02  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Provide the value of --m4-base to modules.
+       * gnulib-tool (func_import, func_create_testdir): Emit a definition
+       of gl_m4_base.
+
+2010-04-02  Eric Blake  <eblake@redhat.com>
+
+       maint.mk: fix some fallout
+       * NEWS: Document the incompatible change, and its effect on cfg.mk.
+       * top/maint.mk (sc_prohibit_test_minus_ao): Update.
+
+2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
+
+       maint.mk: _sc_search_regexp: generalize and rename from _prohibit_regexp
+       * top/maint.mk (_sc_search_regexp): Rename from _prohibit_regexp.
+       (sc_cast_of_argument_to_free): Adapt to use _sc_search_regexp.
+       (sc_cast_of_x_alloc_return_value): Likewise.
+       (sc_cast_of_alloca_return_value): Likewise.
+       (sc_space_tab): Likewise.
+       (sc_prohibit_atoi_atof): Likewise.
+       (sc_prohibit_magic_number_exit): Likewise.
+       (sc_error_exit_success): Likewise.
+       (sc_file_system): Likewise.
+       (sc_prohibit_have_config_h): Likewise.
+       (sc_require_config_h): Likewise.
+       (sc_prohibit_HAVE_MBRTOWC): Likewise.
+       (sc_obsolete_symbols): Likewise.
+       (sc_changelog): Likewise.
+       (sc_program_name): Likewise.
+       (sc_the_the): Likewise.
+       (sc_trailing_blank): Likewise.
+       (sc_two_space_separator_in_usage): Likewise.
+       (sc_useless_cpp_parens): Likewise.
+       (sc_GPL_version): Likewise.
+       (sc_GFDL_version): Likewise.
+       (sc_texinfo_acronym): Likewise.
+       (sc_prohibit_cvs_keyword): Likewise.
+       (sc_prohibit_stat_st_blocks): Likewise.
+       (sc_prohibit_S_IS_definition): Likewise.
+       (sc_redundant_const): Likewise.
+       (sc_makefile_TAB_only_indentation): Likewise.
+       (sc_m4_quote_check): Likewise.
+       (sc_makefile_path_separator_check): Likewise.
+       (sc_copyright_check): Likewise.
+       (sc_Wundef_boolean): Likewise.
+       (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
+
+       maint.mk: match 0 or more whitespace-before-function-call '('
+       * top/maint.mk (sc_error_exit_success): Relax regexp to match uses
+       that have zero or two-and-more spaces between the function name
+       and the open parenthesis.
+       (sc_error_message_warn_fatal): Likewise.
+       (sc_error_message_uppercase): Likewise.
+       (sc_error_message_period): Likewise.
+
+2010-03-31  Eric Blake  <eblake@redhat.com>
+
+       maint.mk: check for [ as well as test
+       * top/maint.mk (sc_prohibit_test_minus_ao): Extend test.
+       Based on a libvirt report by Matthias Bolte.
+
+       gnumakefile: don't squelch _version output
+       * top/GNUmakefile (_version): Create one-shot dependency rather
+       than using $(shell) when version must be regenerated.
+       (_autoreconf): Run verbosely, by default.
+
+       sys_time: avoid compiler warnings
+       * lib/sys_time.in.h (includes): Ensure gcc pragma is
+       unconditional, fixing regression from 2010-03-29.
+       Reported by Simon Josefsson.
+
+2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
+
+       maint.mk: s/_header_without_use/_sc_header_without_use/
+       * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
+       (sc_prohibit_assert_without_use): Use the new name.
+       (sc_prohibit_close_stream_without_use): Likewise.
+       (sc_prohibit_getopt_without_use): Likewise.
+       (sc_prohibit_quotearg_without_use): Likewise.
+       (sc_prohibit_quote_without_use): Likewise.
+       (sc_prohibit_long_options_without_use): Likewise.
+       (sc_prohibit_inttostr_without_use): Likewise.
+       (sc_prohibit_ignore_value_without_use): Likewise.
+       (sc_prohibit_error_without_use): Likewise.
+       (sc_prohibit_xalloc_without_use): Likewise.
+       (sc_prohibit_hash_without_use): Likewise.
+       (sc_prohibit_hash_pjw_without_use): Likewise.
+       (sc_prohibit_safe_read_without_use): Likewise.
+       (sc_prohibit_argmatch_without_use): Likewise.
+       (sc_prohibit_canonicalize_without_use): Likewise.
+       (sc_prohibit_root_dev_ino_without_use): Likewise.
+       (sc_prohibit_openat_without_use): Likewise.
+       (sc_prohibit_c_ctype_without_use): Likewise.
+       (sc_prohibit_signal_without_use): Likewise.
+       (sc_prohibit_intprops_without_use): Likewise.
+
+2010-03-30  Eric Blake  <eblake@redhat.com>
+
+       maint: improve module indicators
+       * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
+       (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
+       columns, and avoid extra macro expansion.
+
+       fdopendir: work around FreeBSD bug
+       * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
+       * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
+       * modules/dirent (Makefile.am): Substitute it.
+       * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
+       declaration.
+       * doc/posix-functions/fdopendir.texi (fdopendir): Document the
+       fix.
+       Reported by Christian Weisgerber <naddy@mips.inka.de>.
+
+2010-03-29  Bruno Haible  <bruno@clisp.org>
+
+       Emit #pragma system_header after the inclusion guard, not before.
+       * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
+       guard that spans the entire file, not before. This enables an
+       optimization in GCC's preprocessor.
+       * lib/ctype.in.h: Likewise.
+       * lib/dirent.in.h: Likewise.
+       * lib/errno.in.h: Likewise.
+       * lib/float.in.h: Likewise.
+       * lib/getopt.in.h: Likewise.
+       * lib/iconv.in.h: Likewise.
+       * lib/langinfo.in.h: Likewise.
+       * lib/locale.in.h: Likewise.
+       * lib/math.in.h: Likewise.
+       * lib/netdb.in.h: Likewise.
+       * lib/netinet_in.in.h: Likewise.
+       * lib/pty.in.h: Likewise.
+       * lib/sched.in.h: Likewise.
+       * lib/se-selinux.in.h: Likewise.
+       * lib/search.in.h: Likewise.
+       * lib/spawn.in.h: Likewise.
+       * lib/stdarg.in.h: Likewise.
+       * lib/stdint.in.h: Likewise.
+       * lib/string.in.h: Likewise.
+       * lib/strings.in.h: Likewise.
+       * lib/sys_file.in.h: Likewise.
+       * lib/sys_ioctl.in.h: Likewise.
+       * lib/sys_time.in.h: Likewise.
+       * lib/sys_times.in.h: Likewise.
+       * lib/sys_utsname.in.h: Likewise.
+       * lib/sys_wait.in.h: Likewise.
+       * lib/sysexits.in.h: Likewise.
+       * lib/wctype.in.h: Likewise.
+
+2010-03-28  James Youngman  <jay@gnu.org>
+
+       save-cwd: don't leak a file descriptor when the caller execs.
+       * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
+       saved file descriptor.
+       * modules/save-cwd (Depends-on): Depend on cloexec.
+
+2010-03-29  Bruno Haible  <bruno@clisp.org>
+
+       Remove vestiges of fts-lgpl module.
+       * lib/fts_.h: Assume GNULIB_FTS is 1.
+       * lib/fts.c: Likewise.
+       * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
+
+2010-03-28  Bruno Haible  <bruno@clisp.org>
+
+       Fix definition of tests witness macro.
+       * gnulib-tool (func_import): Fix definition of witness macro.
+
+2010-03-28  Bruno Haible  <bruno@clisp.org>
+
+       Fix ioctl's protoype on glibc systems.
+       * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
+       _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
+       * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
+       * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
+       signature. If not, arrange to replace the ioctl function.
+       * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
+       REPLACE_IOCTL.
+       * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
+       * doc/posix-functions/ioctl.texi: Mention the glibc problem.
+       Reported by Ludovic Courtès <ludo@gnu.org>.
+
+2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
+
+       exclude: fix the case of globs vs. EXCLUDE_INCLUDE
+       * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
+       made it so grep -r --include=GLOB* ... did not work.
+
+2010-03-26  Jim Meyering  <meyering@redhat.com>
+           Eric Blake  <eblake@redhat.com>
+
+       maint.mk: prohibit use of test's -o and -a operators
+       * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
+
+2010-03-28  Bruno Haible  <bruno@clisp.org>
+
+       Remove unused GNULIB_XYZ macro definitions.
+       * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
+       invocation.
+
+2010-03-28  Bruno Haible  <bruno@clisp.org>
+
+       Mark privileged tests modules.
+       * modules/idpriv-drop-tests (Status): New section.
+       * modules/idpriv-droptemp-tests (Status): New section.
+
+2010-03-28  Bruno Haible  <bruno@clisp.org>
+
+       Split C++ tests into separate tests modules.
+       * modules/dirent-c++-tests: New file, extracted from
+       modules/dirent-tests.
+       * modules/dirent-tests: Depend on it.
+       * modules/fcntl-h-c++-tests: New file, extracted from
+       modules/fcntl-h-tests.
+       * modules/fcntl-h-tests: Depend on it.
+       * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
+       * modules/glob-tests: Depend on it.
+       * modules/iconv-h-c++-tests: New file, extracted from
+       modules/iconv-h-tests.
+       * modules/iconv-h-tests: Depend on it.
+       * modules/langinfo-c++-tests: New file, extracted from
+       modules/langinfo-tests.
+       * modules/langinfo-tests: Depend on it.
+       * modules/locale-c++-tests: New file, extracted from
+       modules/locale-tests.
+       * modules/locale-tests: Depend on it.
+       * modules/math-c++-tests: New file, extracted from modules/math-tests.
+       * modules/math-tests: Depend on it.
+       * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
+       * modules/pty-tests: Depend on it.
+       * modules/search-c++-tests: New file, extracted from
+       modules/search-tests.
+       * modules/search-tests: Depend on it.
+       * modules/signal-c++-tests: New file, extracted from
+       modules/signal-tests.
+       * modules/signal-tests: Depend on it.
+       * modules/spawn-c++-tests: New file, extracted from
+       modules/spawn-tests.
+       * modules/spawn-tests: Depend on it.
+       * modules/stdio-c++-tests: New file, extracted from
+       modules/stdio-tests.
+       * modules/stdio-tests: Depend on it.
+       * modules/stdlib-c++-tests: New file, extracted from
+       modules/stdlib-tests.
+       * modules/stdlib-tests: Depend on it.
+       * modules/string-c++-tests: New file, extracted from
+       modules/string-tests.
+       * modules/string-tests: Depend on it.
+       * modules/sys_ioctl-c++-tests: New file, extracted from
+       modules/sys_ioctl-tests.
+       * modules/sys_ioctl-tests: Depend on it.
+       * modules/sys_select-c++-tests: New file, extracted from
+       modules/sys_select-tests.
+       * modules/sys_select-tests: Depend on it.
+       * modules/sys_socket-c++-tests: New file, extracted from
+       modules/sys_socket-tests.
+       * modules/sys_socket-tests: Depend on it.
+       * modules/sys_stat-c++-tests: New file, extracted from
+       modules/sys_stat-tests.
+       * modules/sys_stat-tests: Depend on it.
+       * modules/sys_time-c++-tests: New file, extracted from
+       modules/sys_time-tests.
+       * modules/sys_time-tests: Depend on it.
+       * modules/time-c++-tests: New file, extracted from modules/time-tests.
+       * modules/time-tests: Depend on it.
+       * modules/unistd-c++-tests: New file, extracted from
+       modules/unistd-tests.
+       * modules/unistd-tests: Depend on it.
+       * modules/wchar-c++-tests: New file, extracted from
+       modules/wchar-tests.
+       * modules/wchar-tests: Depend on it.
+       * modules/wctype-c++-tests: New file, extracted from
+       modules/wctype-tests.
+       * modules/wctype-tests: Depend on it.
+       Reported by Simon Josefsson.
+
 2010-03-28  Bruno Haible  <bruno@clisp.org>
 
        gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.