mkstemp: replace if system version uses wrong permissions
[gnulib.git] / ChangeLog
index 82c8468..377f326 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,172 @@
+2011-04-27  Reuben Thomas  <rrt@sc3d.org>
+       and Eric Blake  <eblake@redhat.com>
+
+       mkstemp: replace if system version uses wrong permissions
+       * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Add test for non-owner
+       read/write mode bits set in file created by mkstemp.
+       * doc/posix-functions/mkstemp.texi (mkstemp): Document the fix.
+
+2011-04-27  Eric Blake  <eblake@redhat.com>
+
+       passfd: avoid compiler warning
+       * lib/passfd.c (sendfd, recvfd): Avoid shadowing names.
+       Reported by Laine Stump.
+
+2011-04-27  J.T. Conklin  <jtc@acorntoolworks.com>  (tiny change)
+
+       * gnulib-tool: change "join -a 2" to "join -a2", the latter is
+       required by the NetBSD (and perhaps other 4.4BSD derived) join.
+
+2011-04-27  Reuben Thomas  <rrt@sc3d.org>
+       and Eric Blake  <eblake@redhat.com>
+
+       mkstemp: mention clean-temp module
+       * lib/mkstemp.c: Add comment.
+       * doc/posix-functions/mkstemp.texi (mkstemp): Likewise.
+
+2011-04-26  Paul Eggert  <eggert@cs.ucla.edu>
+
+       inttypes: also provide default values for 32-bit tests
+       * m4/inttypes.m4 (gl_INTTYPES_H_DEFAULTS): Also provide default values
+       for INT32_MAX_LT_INTMAX_MAX and for UINT32_MAX_LT_UINTMAX_MAX.
+
+2011-04-25  Paul Eggert  <eggert@cs.ucla.edu>
+
+       strtoumax: remove dependency on strtoimax
+       This is like the strtoull change of yesterday.
+       * modules/strtoumax (Files): Add lib/strtoimax.c.
+       (Depends-on): Remove strtoimax and add verify.
+
+       inttypes-incomplete: new module
+       * m4/inttypes.m4 (gl_INTTYPES_INCOMPLETE): New macro, containing
+       all but the PRI* and SCN* parts of gl_INTTYPES_H.
+       (gl_INTTYPES_PRI_SCN): New macro, containing the PRI* and SCN* parts
+       of gl_INTTYPES_H.
+       (gl_INTTYPES_H): Rewrite in terms of these new macros.
+       (gl_INTTYPES_H_DEFAULTS): Provide defaults for the PRI* and SCN*
+       parts, in case gl_INTTYPE_PRI_SCN is not invoked.
+       * modules/imaxabs, modules/imaxdiv, modules/strtoimax (Depends-on):
+       * modules/strtoumax, modules/xstrtol (Depends-on):
+       Depend on inttypes-incomplete, not inttypes.
+       * modules/inttypes-incomplete: New module, containing the contents
+       of the old modules/inttypes module, except that the Files: section
+       omits m4/inttypes-pri.m4, and the configure.ac section invokes
+       gl_INTTYPES_INCOMPLETE rather than gl_INTTYPES_H.
+       * modules/inttypes (Files): Remove lib/inttypes.in.h, m4/inttypes.m4.
+       (Depends-on): Depend only on inttypes-incomplete.
+       (Makefile.am): Remove everything; this is now in inttypes-incomplete.
+
+       inttypes: omit now-redundant strtoimax and strtoumax work
+       * m4/inttypes.m4 (gl_INTTYPES_H): Do not check for strtoimax and
+       strtoumax decls; gl_FUNC_STRTOIMAX and gl_FUNC_STRTOUMAX now do this.
+
+       strtoimax, strtoumax: simplify, port to HP-UX 11.00 64-bit
+       This supports apps that need pointers to strtoimax and strtoumax,
+       and ports to HP-UX 11.00 64.bit, which has macros that expand to
+       nonexistent functions.  See
+       <http://lists.gnu.org/archive/html/bug-gnulib/2011-04/msg00241.html>
+       et seq.
+       * lib/inttypes.in.h (strtoimax, strtoumax): #undef before declaring.
+       * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Don't check whether it's
+       a macro.
+       * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
+
+2011-04-25  Simon Josefsson  <simon@josefsson.org>
+
+       * modules/gnumakefile (configure.ac): Replace TAB with SPCs.
+
+2011-04-25  Bruno Haible  <bruno@clisp.org>
+
+       strtol, strtoul: Mark modules as obsolete.
+       * modules/strtol (Status, Notice): New sections.
+       * modules/strtoul (Status, Notice): New sections.
+
+2011-04-25  Bruno Haible  <bruno@clisp.org>
+
+       strtod: Remove check for strtod, unless supporting old platforms.
+       * modules/strtod-obsolete: New file.
+       * m4/strtod-obsolete.m4: New file.
+       * m4/strtod.m4 (gl_FUNC_STRTOD): Don't check whether strtod is declared
+       if gl_FUNC_STRTOD_OBSOLETE is not also defined.
+       * modules/strtod (Depends-on): Add strtod-obsolete.
+       * doc/posix-functions/strtod.texi: Mention module strtod-obsolete.
+
+2011-04-25  Bruno Haible  <bruno@clisp.org>
+
+       strcase: Make module obsolete.
+       * modules/strcase (Status, Notice): New sections.
+
+2011-04-25  Bruno Haible  <bruno@clisp.org>
+
+       dup2: Remove check for dup2, unless supporting old obsolete platforms.
+       * modules/dup2-obsolete: New file.
+       * m4/dup2-obsolete.m4: New file.
+       * m4/dup2.m4 (gl_FUNC_DUP2): Don't check whether dup2 exists if
+       gl_FUNC_DUP2_OBSOLETE is not also defined.
+       * modules/dup2 (Depends-on): Add dup2-obsolete.
+       * doc/posix-functions/dup2.texi: Mention module dup2-obsolete.
+
+2011-04-25  Bruno Haible  <bruno@clisp.org>
+
+       strnlen: Avoid memchr related link error on old obsolete platforms.
+       * modules/memchr-obsolete: New file.
+       * m4/memchr-obsolete.m4: New file.
+       * m4/memchr.m4 (gl_FUNC_MEMCHR): Don't check whether memchr exists if
+       gl_FUNC_MEMCHR_OBSOLETE is not also defined.
+       * modules/memchr (Depends-on): Add memchr-obsolete.
+       * modules/strnlen (Depends-on): Likewise.
+       * doc/posix-functions/memchr.texi: Mention module memchr-obsolete.
+
+2011-04-25  Jim Meyering  <meyering@redhat.com>
+
+       maint.mk: makefile_at_at_check extend and clean up
+       * top/maint.mk (sc_makefile_at_at_check): Check *.mk files
+       in addition to */Makefile.am.
+       Exempt legitimate uses of @VAR@ notation, e.g.,
+       MAKEINFO = env LANG= LC_MESSAGES= LC_ALL= LANGUAGE= @MAKEINFO@
+       Remove obsolete coreutils-specific comment.
+       Prompted by discussion here:
+       http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/26074
+
+2011-04-24  Paul Eggert  <eggert@cs.ucla.edu>
+
+       strtoul: remove dependency on strtol
+       This is so that 'configure' need not check for strtol merely because
+       the application needs strtoul.
+       * modules/strtoul (Files): Add lib/strtol.c.
+       (Depends-on): Remove strtol.
+
+       strtoull: remove dependency on strtoul
+       This is like the strtoll change.
+       * modules/strtoull (Files): Add lib/strtol.c, lib/strtoul.c.
+       (Depends-on): Remove strtoul.
+
+       strtoll: remove dependency on strtol
+       This is so that 'configure' need not check for strtol merely because
+       the application needs strtoll.
+       * modules/strtoll (Files): Add lib/strtol.c.
+       (Depends-on): Remove strtol.
+
+2011-04-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       inttypes: Move some configure check to module 'imaxdiv'.
+       * m4/imaxdiv.m4 (gl_FUNC_IMAXDIV): Require gl_INTTYPES_H_DEFAULTS
+       instead of gl_INTTYPES_H.  Check for imaxdiv decl here.
+       * m4/inttypes.m4 (gl_INTTYPES_H): Don't check for imaxdiv decl here.
+
+2011-04-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       inttypes: Move some configure check to module 'imaxabs'.
+       * m4/imaxabs.m4 (gl_FUNC_IMAXABS): Require gl_INTTYPES_H_DEFAULTS
+       instead of gl_INTTYPES_H.  Check for imaxabs decl here.
+       * m4/inttypes.m4 (gl_INTTYPES_H): Don't check for imaxabs decl here.
+
+2011-04-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       inttypes: Remove configure tests that are not needed since 2009-12-31.
+       * m4/inttypes.m4 (gl_INTTYPES_H): Remove determination of
+       gl_cv_header_working_inttypes_h.
+
 2011-04-22  Paul Eggert  <eggert@cs.ucla.edu>
 
        * modules/strnlen (Depends-on): Remove memchr.