bootstrap: do not require now-removed build-aux/missing
[gnulib.git] / ChangeLog
index 0807054..5edb6d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,364 @@
+2012-07-03  Jim Meyering  <meyering@redhat.com>
+
+       bootstrap: do not require now-removed build-aux/missing
+       Now that build-aux/missing is, er, missing, bootstrap would
+       silently fail.
+       * build-aux/bootstrap (gnulib_extra_files): Remove $build_aux/missing
+       from the list, now that (since commit v0.0-7489-gd0f486f) the file is
+       no longer part of gnulib.
+       Diagnose the failure.
+
+2012-07-03  Paul Eggert  <eggert@cs.ucla.edu>
+
+       alloca: add support for HP NonStop TNS/E native
+       * lib/alloca.in.h (alloca): Support the new host.
+       From a suggestion by Joachim Schmitz in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2012-06/msg00355.html>.
+
+2012-07-02  Pádraig Brady  <P@draigBrady.com>
+
+       fsusage: remove code not needed on non GNU/Linux systems.
+
+       * lib/fsusage.c [STAT_STATVFS || STAT_STATVFS64]:
+       Don't include headers no longer needed in this case.
+       * lib/fsusage.c [STAT_STATVFS &&
+       ! (__linux__ && (__GLIBC__||__UCLIBC__))]: Undefine
+       STAT_STATFS2_FRSIZE to exclude code not used in this case.
+
+2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
+
+       fsusage: include files needed for glibc 2.6 fallback
+       * lib/fsusage.c [STAT_STATVFS || STAT_STATVFS64]:
+       Include <sys/param.h>, <sys/mount.h>, <sys/vfs.h>
+       as they are needed for the 2.6 < glibc/Linux < 2.6.36 fallback.
+       Problem reported by Ludovic Courtès in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2012-07/msg00005.html>.
+
+       fsusage: avoid needless check on GNU/Linux
+       * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Omit STAT_STATFS3_OSF1 check
+       on GNU/Linux systems, since it can't possibly work.
+
+2012-07-01  Bruno Haible  <bruno@clisp.org>
+
+       log: Fix an autoconf >= 2.64 warning.
+       * modules/log (configure.ac): Require, not invoke, gl_FUNC_LOG.
+       Reported by Carlos O'Donell <carlos_odonell@mentor.com>.
+
+2012-06-28  Bruno Haible  <bruno@clisp.org>
+
+       log10f: Fix possible configuration problem.
+       * m4/log10f.m4 (gl_FUNC_LOG10F): Augment LIBS by $LOG10F_LIBM, not
+       $LOGF_LIBM.
+       Reported by Carlos O'Donell <carlos_odonell@mentor.com>.
+
+2012-06-28  Bruno Haible  <bruno@clisp.org>
+
+       remove: No longer override on all platforms. Fixes bug from 2010-03-20.
+       * m4/remove.m4 (gl_FUNC_REMOVE): Test gl_cv_func_unlink_honors_slashes,
+       not gl_cv_func_unlink_works.
+       Reported by Carlos O'Donell <carlos_odonell@mentor.com>.
+
+2012-06-27  Eric Blake  <eblake@redhat.com>
+
+       config: drop scripts that automake says are not independent
+       * config/srclist.txt: Drop elisp-comp, missing, and ylwrap.
+       * build-aux/elisp-comp: Delete.
+       * build-aux/missing: Likewise.
+       * build-aux/ylwrap: Likewise.
+       * modules/elisp-comp: Likewise.
+       * MODULES.html.sh: Drop mention of elisp-comp.
+       * NEWS: Mention this.
+
+2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
+
+       root-uid: new module
+       This is for portability to Tandem's NonStop Kernel.
+       * lib/root-uid.h, modules/root-uid: New files.
+       * lib/euidaccess.c, lib/pt_chown.c, lib/unlinkdir.c:
+       * lib/write-any-file.c, tests/test-sethostname2.c:
+       Include "root-uid.h".
+       * lib/euidaccess.c (euidaccess):
+       * lib/pt_chown.c (main):
+       * lib/unlinkdir.c (cannot_unlink_dir):
+       * lib/write-any-file.c (can_write_any_file):
+       * m4/mknod.m4 (gl_FUNC_MKNOD):
+       * tests/test-sethostname2.c (geteuid, main):
+       Don't assume ROOT_UID == 0.
+       * modules/euidaccess (Depends-on):
+       * modules/pt_chown (Depends-on):
+       * modules/sethostname-tests (Depends-on):
+       * modules/unlinkdir (Depends-on):
+       * modules/write-any-file (Depends-on):
+       Add root-uid.
+
+       regex: use locale-independent comparison for codeset name
+       See Bruno Haible's comment in <http://bugs.gnu.org/10305#120>.
+       * lib/regcomp.c (init_dfa): Use just ASCII case comparison
+       for codeset name.
+       * lib/regex_internal.h: Do not include <strings.h>, since we
+       no longer use strcasecmp.
+       * modules/regex (Depends-on): Remove strcase.
+
+2012-06-23  Bruno Haible  <bruno@clisp.org>
+
+       getopt-posix: No longer guarantee that option processing is resettable.
+       * doc/posix-functions/getopt.texi: Drop description of problem with
+       internal state. Fix info about mingw and msvc9.
+       * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Don't require a resettable
+       option processing by getopt(). Run three test programs instead of one.
+       Simplify cross-compilation guess.
+       * NEWS: Mention the change.
+       Reported by Rich Felker <dalias@aerifal.cx>.
+
+2012-06-26  Bruno Haible  <bruno@clisp.org>
+
+       argp, regex: Ensure strcasecmp gets declared.
+       * lib/argp-help.c: Include <strings.h>.
+       * lib/regex_internal.h: Likewise.
+       Reported and suggested by Joachim Schmitz <jojo@schmitz-digital.de>.
+
+2012-06-24  Bruno Haible  <bruno@clisp.org>
+
+       ptsname_r: Make it consistent with ptsname on AIX.
+       * lib/ptsname_r.c (__ptsname_r): For AIX, use nearly the same
+       implementation as for OSF/1.
+       * tests/test-ptsname_r.c (main) [AIX]: Use the modern way of opening
+       a pty master.
+
+       ptsname_r: Make it consistent with ptsname on OSF/1.
+       * lib/ptsname_r.c (__ptsname_r): Add a different implementation for
+       OSF/1.
+
+2012-06-24  Bruno Haible  <bruno@clisp.org>
+
+       ttyname_r: Fix result on OSF/1, Solaris.
+       * lib/ttyname_r.c (ttyname_r): Produce a NUL-terminated result.
+
+2012-06-24  Bruno Haible  <bruno@clisp.org>
+
+       ptsname_r: Add support for Solaris.
+       * lib/ptsname_r.c (__ptsname_r): Add a different implementation for
+       Solaris.
+
+       ptsname_r: Fix test failure on native Windows.
+       * modules/ptsname_r (Depends-on): Add isatty.
+
+       ptsname_r: Fix test failures on IRIX, Solaris.
+       * m4/ptsname_r.m4 (gl_PREREQ_PTSNAME_R): Test whether isatty sets
+       errno when it fails. Define ISATTY_FAILS_WITHOUT_SETTING_ERRNO
+       accordingly.
+       * lib/ptsname_r.c: Include <fcntl.h>.
+       (__ptsname_r): When isatty returned false, then on IRIX, Solaris
+       set errno if fd is invalid.
+       * tests/test-isatty.c (main): Update comments.
+
+2012-06-24  Bruno Haible  <bruno@clisp.org>
+
+       ptsname test: Extend test.
+       * tests/test-ptsname.c: Include <errno.h>.
+       (main): Test behaviour with invalid file descriptor.
+
+2012-06-23  Paul Eggert  <eggert@cs.ucla.edu>
+
+       time: fix obsolete comment
+       * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Remove obsolete
+       reference to HAVE_STRUCT_TIMESPEC in comment.
+
+2012-06-23  Bruno Haible  <bruno@clisp.org>
+
+       getopt-gnu: Handle suboptimal getopt_long's abbreviation handling.
+       * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): If getopt_long exists but
+       does not handle abbreviated long options with equivalent
+       disambiguations, set gl_replace_getopt to yes.
+       * doc/posix-functions/getopt.texi: Mention the OpenBSD 5.0 problem.
+
+2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       time_r: fix typo that always overrode localtime_r decl
+       * m4/time_r.m4 (gl_TIME_R): Use AC_CHECK_DECLS, not
+       AC_CHECK_DECLS_ONCE, since localtime_r is declared in <time.h>,
+       not in a standard include.
+
+2012-06-22  Bruno Haible  <bruno@clisp.org>
+
+       Write "Mac OS X" instead of "MacOS X".
+       * README: Write "Mac OS X" instead of "MacOS X".
+       * build-aux/bootstrap: Likewise.
+       * build-aux/install-reloc: Likewise.
+       * lib/acl-internal.h: Likewise.
+       * lib/acl_entries.c: Likewise.
+       * lib/argp-ba.c: Likewise.
+       * lib/argp-pv.c: Likewise.
+       * lib/config.charset: Likewise.
+       * lib/copy-acl.c: Likewise.
+       * lib/csharpexec.c: Likewise.
+       * lib/euidaccess.c: Likewise.
+       * lib/fbufmode.c: Likewise.
+       * lib/fflush.c: Likewise.
+       * lib/file-has-acl.c: Likewise.
+       * lib/filemode.h: Likewise.
+       * lib/fpurge.c: Likewise.
+       * lib/freadable.c: Likewise.
+       * lib/freadahead.c: Likewise.
+       * lib/freading.c: Likewise.
+       * lib/freadptr.c: Likewise.
+       * lib/freadseek.c: Likewise.
+       * lib/fseeko.c: Likewise.
+       * lib/fseterr.c: Likewise.
+       * lib/fsusage.c: Likewise.
+       * lib/fwritable.c: Likewise.
+       * lib/fwriting.c: Likewise.
+       * lib/get-rusage-as.c: Likewise.
+       * lib/get-rusage-data.c: Likewise.
+       * lib/getdomainname.c: Likewise.
+       * lib/idpriv-drop.c: Likewise.
+       * lib/idpriv-droptemp.c: Likewise.
+       * lib/localcharset.c: Likewise.
+       * lib/locale.in.h: Likewise.
+       * lib/localename.c: Likewise.
+       * lib/mbsrtowcs-state.c: Likewise.
+       * lib/nproc.c: Likewise.
+       * lib/passfd.c: Likewise.
+       * lib/posix_openpt.c: Likewise.
+       * lib/printf-parse.c: Likewise.
+       * lib/progreloc.c: Likewise.
+       * lib/safe-read.h: Likewise.
+       * lib/safe-write.h: Likewise.
+       * lib/sched.in.h: Likewise.
+       * lib/set-mode-acl.c: Likewise.
+       * lib/signal.in.h: Likewise.
+       * lib/stdint.in.h: Likewise.
+       * lib/stdio-impl.h: Likewise.
+       * lib/stdlib.in.h: Likewise.
+       * lib/strtod.c: Likewise.
+       * lib/sys_select.in.h: Likewise.
+       * lib/tcgetsid.c: Likewise.
+       * lib/unistd.in.h: Likewise.
+       * lib/unlockpt.c: Likewise.
+       * lib/vasnprintf.c: Likewise.
+       * lib/vma-iter.c: Likewise.
+       * lib/wcsrtombs-state.c: Likewise.
+       * m4/acl.m4: Likewise.
+       * m4/acosl.m4: Likewise.
+       * m4/asinl.m4: Likewise.
+       * m4/atanl.m4: Likewise.
+       * m4/c-stack.m4: Likewise.
+       * m4/cosl.m4: Likewise.
+       * m4/expl.m4: Likewise.
+       * m4/extensions.m4: Likewise.
+       * m4/fdatasync.m4: Likewise.
+       * m4/fmal.m4: Likewise.
+       * m4/frexp.m4: Likewise.
+       * m4/frexpf.m4: Likewise.
+       * m4/frexpl.m4: Likewise.
+       * m4/fsusage.m4: Likewise.
+       * m4/getdomainname.m4: Likewise.
+       * m4/getloadavg.m4: Likewise.
+       * m4/getopt.m4: Likewise.
+       * m4/gettext.m4: Likewise.
+       * m4/gnulib-common.m4: Likewise.
+       * m4/intdiv0.m4: Likewise.
+       * m4/intlmacosx.m4: Likewise.
+       * m4/largefile.m4: Likewise.
+       * m4/ldexpl.m4: Likewise.
+       * m4/link-follow.m4: Likewise.
+       * m4/locale-ar.m4: Likewise.
+       * m4/locale-fr.m4: Likewise.
+       * m4/locale-ja.m4: Likewise.
+       * m4/locale-tr.m4: Likewise.
+       * m4/locale-zh.m4: Likewise.
+       * m4/locale_h.m4: Likewise.
+       * m4/lock.m4: Likewise.
+       * m4/logl.m4: Likewise.
+       * m4/mathfunc.m4: Likewise.
+       * m4/minus-zero.m4: Likewise.
+       * m4/mktime.m4: Likewise.
+       * m4/mmap-anon.m4: Likewise.
+       * m4/multiarch.m4: Likewise.
+       * m4/nanosleep.m4: Likewise.
+       * m4/nocrash.m4: Likewise.
+       * m4/poll.m4: Likewise.
+       * m4/printf-frexpl.m4: Likewise.
+       * m4/printf.m4: Likewise.
+       * m4/signbit.m4: Likewise.
+       * m4/sinl.m4: Likewise.
+       * m4/sqrtl.m4: Likewise.
+       * m4/strerror_r.m4: Likewise.
+       * m4/tanl.m4: Likewise.
+       * m4/threadlib.m4: Likewise.
+       * m4/ttyname_r.m4: Likewise.
+       * m4/unlink.m4: Likewise.
+       * m4/visibility.m4: Likewise.
+       * m4/wcwidth.m4: Likewise.
+       * tests/minus-zero.h: Likewise.
+       * tests/test-alloca-opt.c: Likewise.
+       * tests/test-copy-acl.sh: Likewise.
+       * tests/test-copy-file.sh: Likewise.
+       * tests/test-fdatasync.c: Likewise.
+       * tests/test-file-has-acl.sh: Likewise.
+       * tests/test-flock.c: Likewise.
+       * tests/test-fsync.c: Likewise.
+       * tests/test-localename.c: Likewise.
+       * tests/test-malloca.c: Likewise.
+       * tests/test-nonblocking-pipe.h: Likewise.
+       * tests/test-nonblocking-socket.h: Likewise.
+       * tests/test-openpty.c: Likewise.
+       * tests/test-posix_openpt.c: Likewise.
+       * tests/test-ptsname.c: Likewise.
+       * tests/test-ptsname_r.c: Likewise.
+       * tests/test-sameacls.c: Likewise.
+       * tests/test-select.h: Likewise.
+       * tests/test-set-mode-acl.sh: Likewise.
+       * tests/test-snprintf-posix.h: Likewise.
+       * tests/test-sprintf-posix.h: Likewise.
+       * tests/test-strtod.c: Likewise.
+       * tests/test-time.c: Likewise.
+       * tests/test-vasnprintf-posix.c: Likewise.
+       * tests/test-vasprintf-posix.c: Likewise.
+       * doc/acl-resources.txt: Likewise.
+       * doc/**/*.texi: Likewise.
+       Reported by Max Horn <max@quendi.de>.
+
+2012-06-22  Bruno Haible  <bruno@clisp.org>
+
+       grantpt: Relax requirement regarding invalid file descriptors.
+       * lib/grantpt.c: Don't include <fcntl.h>.
+       (grantpt): Don't verify the validity of the file descriptor.
+       * modules/grantpt (Depends-on): Remove fcntl-h.
+       * tests/test-grantpt.c (main): Allow grantpt to succeed for invalid
+       file descriptors.
+       * doc/posix-functions/grantpt.texi: Document more platforms on which
+       grantpt succeeds for invalid file descriptors.
+       Reported by Rich Felker <dalias@aerifal.cx>.
+
+2012-06-22  Bruno Haible  <bruno@clisp.org>
+
+       fbufmode test: Don't test unportable behaviour.
+       * tests/test-fbufmode.c (test_mode): New function, extracted from main.
+       (main): Invoke it three times.
+       Reported by Szabolcs Nagy <nsz@port70.net>
+       and Rich Felker <dalias@aerifal.cx>.
+
+2012-06-21  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool: Refactor inctests variable.
+       * gnulib-tool: Normalize inctests to 'true' or 'false', not ''.
+       (func_modules_transitive_closure,
+       func_modules_transitive_closure_separately,
+       func_import, func_create_testdir): Update.
+
+       gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
+       * gnulib-tool: Accept option --without-tests.
+       (func_usage): Document --without-tests option. Rearrange.
+       (inctests): Normalize according to the mode.
+       * NEWS: Mention the change.
+       Suggested by Simon Josefsson.
+
+2012-06-21  Bruce Korb  <bkorb@gnu.org>
+
+       parse-duration test: Avoid spurious output.
+       * tests/test-parse-duration.sh: Reindent with leading tabs.
+
 2012-06-21  Jim Meyering  <meyering@redhat.com>
 
        maint: disable the strncpy prohibition