maint: disable the strncpy prohibition
[gnulib.git] / ChangeLog
index cca5fe7..0807054 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,235 @@
+2012-06-21  Jim Meyering  <meyering@redhat.com>
+
+       maint: disable the strncpy prohibition
+       * cfg.mk: Do not prohibit strncpy here.
+
+2012-06-21  Bruno Haible  <bruno@clisp.org>
+
+       nonblocking: Avoid compilation error on mingw64.
+       * m4/stdio_h.m4 (gl_STDIO_H): Invoke gl_MODULE_INDICATOR for scanf,
+       fscanf.
+       * modules/vscanf (configure.ac): Invoke gl_MODULE_INDICATOR.
+       * modules/vfscanf (configure.ac): Likewise.
+       * lib/stdio-read.c (scanf, fscanf, vscanf, vfscanf): Enable function
+       definition only if stdio.h has prepared it.
+       Reported by Daniel P. Berrange <berrange@redhat.com>.
+
+2012-06-20  Bernd Jendrissek  <bernd.jendrissek@gmail.com>  (tiny change)
+
+       gnulib-tool: Use readlink if it is available.
+       * gnulib-tool (func_readlink): Choose function more appropriately.
+
+2012-06-21  Paul Eggert  <eggert@cs.ucla.edu>
+
+       posixtm-tests: port to buggy compiler
+       Problem reported by Simon Josefsson in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2012-06/msg00246.html>.
+       * modules/posixtm-tests (Depends-on): Add stdint.
+       * tests/test-posixtm.c (struct posixtm_test.t_expected):
+       Now of type int_least64_t, not int64_t, both because that's
+       what INT64_C returns and because int_least64_t works even
+       on 72-bit hosts.
+       (T): Use INT64_C on constants outside the traditional int range,
+       to work around compiler bug noted by Simon.
+
+       mktime: fix integer overflow in 'configure'-time test
+       * m4/mktime.m4 (gl_FUNC_MKTIME): Do not rely on undefined behavior
+       after integer overflow.  Problem reported by Rich Felker in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2012-06/msg00257.html>.
+       Also, don't look for further instances of a bug if we've already
+       found one instance; this helps 'configure' run faster.
+
+2012-06-20  John Darrington  <john@darrington.wattle.id.au>  (tiny change)
+
+       tmpfile, clean-temp: Fix invocation of GetVersionEx.
+       * lib/tmpfile.c (supports_delete_on_close): Initialize parameter for
+       GetVersionEx correctly.
+       * lib/clean-temp.c (supports_delete_on_close): Likewise.
+
+2012-06-20  Bruno Haible  <bruno@clisp.org>
+
+       fdopen: Allow implementations that don't reject invalid fd arguments.
+       * m4/fdopen.m4 (gl_FUNC_FDOPEN): Let the test pass if fdopen(-1,...)
+       succeeds.
+       Reported by Rich Felker <dalias@aerifal.cx>.
+
+2012-06-20  Simon Josefsson  <simon@josefsson.org>
+
+       * modules/parse-duration-tests (test_parse_duration_LDADD): Don't
+       bring in LIBINTL.
+
+2012-06-20  Paul Eggert  <eggert@cs.ucla.edu>
+
+       init.sh: do not rely on autoupated PWD
+       This addresses symptoms of the problem reported by Nelson H.F. Beebe in
+       <http://lists.gnu.org/archive/html/bug-gzip/2012-06/msg00008.html>.
+       Although Nelson's bug was not necessarily fixed by this patch,
+       it seems wise to make the change for safety.
+       * tests/init.sh (path_prepend_): Do not rely on PWD updating
+       automagically after 'cd'; this is not reliable on older shells.
+       (setup_): Fail if we cannot cd to temporary directory.
+
+2012-06-19  Bruno Haible  <bruno@clisp.org>
+
+       stat, fstat: Avoid warnings on mingw64.
+       * lib/stat.c (stat) [_GL_WINDOWS_64_BIT_ST_SIZE]: Undefine before
+       redefining.
+       * lib/fstat.c (stat, fstat) [_GL_WINDOWS_64_BIT_ST_SIZE]: Likewise.
+       Reported by Daniel P. Berrange <berrange@redhat.com>.
+
+2012-06-19  Bruno Haible  <bruno@clisp.org>
+
+       stdioext: Add support for musl libc.
+
+       * m4/fbufmode.m4 (gl_FUNC_FBUFMODE): Test whether __fbufsize exists.
+       * lib/fbufmode.c (fbufmode): Add conditional code for musl.
+
+       * m4/fseterr.m4: New file.
+       * lib/fseterr.h (fseterr): Define as an alias of __fseterr if that
+       function exists.
+       * modules/fseterr (Files): Add m4/fseterr.m4.
+       (configure.ac): Invoke gl_FUNC_FSETERR. Compile fseterr.c if
+       __fseterr does not exist.
+       (Makefile.am): Remove fseterr.c from lib_SOURCES.
+
+       * lib/freadable.h: Update comment.
+
+       * lib/fwritable.h: Update comment.
+
+       * lib/freading.h: Update comment.
+
+       * lib/fwriting.h: Update comment.
+
+       * m4/freadahead.m4: New file.
+       * lib/freadahead.h (freadahead): Define as an alias of __freadahead if
+       that function exists.
+       * modules/freadahead (Files): Add m4/freadahead.m4.
+       (configure.ac): Invoke gl_FUNC_FREADAHEAD. Compile freadahead.c if
+       __freadahead does not exist.
+       (Makefile.am): Remove freadahead.c from lib_SOURCES.
+
+       * m4/freadptr.m4: New file.
+       * lib/freadptr.h (freadptr): Define as an alias of __freadptr if that
+       function exists.
+       * modules/freadptr (Files): Add m4/freadptr.m4.
+       (configure.ac): Invoke gl_FUNC_FREADPTR. Compile freadptr.c if
+       __freadptr does not exist.
+       (Makefile.am): Remove freadptr.c from lib_SOURCES.
+
+       * m4/freadseek.m4: New file.
+       * lib/freadseek.c (freadptrinc): Use __freadptrinc if that function
+       exists.
+       * modules/freadseek (Files): Add m4/freadseek.m4.
+       (configure.ac): Invoke gl_FUNC_FREADSEEK.
+
+       * lib/fpurge.c (fpurge): Update comment.
+
+       Reported by and with help from Rich Felker <dalias@aerifal.cx>.
+
+2012-06-19  Bruno Haible  <bruno@clisp.org>
+
+       *printf-posix: Put more info into config.log.
+       * m4/printf.m4 (gl_PRINTF_ENOMEM): Emit conftest's error output and
+       exit code into config.log.
+
+2012-06-19  Bruno Haible  <bruno@clisp.org>
+
+       getopt-gnu: Fix exit code overflow in autoconf test.
+       * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Squash exit code values,
+       to keep them below < 128.
+
+2012-06-17  Jim Meyering  <meyering@redhat.com>
+
+       maint.mk: fix typo in code to derive GPG key at release time
+       * top/maint.mk (gpg_key_ID): Fix typo: $3 -> $$3
+
+2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
+
+       regex: avoid warning when pointers are not long
+       * lib/regcomp.c (parse_dup_op, mark_opt_subexp): Cast between void *
+       and uintptr_t, not long, for portability to hosts where pointers and
+       long have different sizes.  Issue noted by Daniel P. Berrange in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2012-06/msg00122.html>
+       and fix suggested by Bruno Haible in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2012-06/msg00128.html>.
+
+2012-06-17  Bruno Haible  <bruno@clisp.org>
+
+       dummy: Relicense into the public domain.
+       * modules/dummy (License): Set to "public domain".
+       Suggested by Reuben Thomas.
+
+2012-06-12  Akim Demaille  <akim@lrde.epita.fr>
+
+       announce-gen: VPATH issues
+       * build-aux/announce-gen (--srcdir): New option, used to trim the
+       $srcdir part of the path from $builddir to NEWS.
+       * top/maint.mk (announcement): Adjust.
+
+2012-06-12  Akim Demaille  <akim@lrde.epita.fr>
+
+       gnu-web-doc-update: VPATH builds
+       * build-aux/gnu-web-doc-update (--builddir): New option.
+       Revamp the handling of options.
+       Prefer $(...) to `...`.
+       Don't pass --tmpdir=. to mktemp, it is useless given that we specify
+       the template, and it is GNU mktemp specific.
+       Prefer set -e to long series of &&.
+       Restore the initial git branch, not "master".
+       Properly initialize submodules (don't rely only on bootstrap).
+       Do not reconfigure blindly, use config.status.
+       * top/README-release: Update instructions for gnu-web-doc-update.
+
+2012-06-11  Jim Meyering  <meyering@redhat.com>
+
+       maint.mk: revert most of the previous change re "all these"
+       * top/maint.mk (prohibit_undesirable_word_seq_RE_): Remove that pair.
+       For rationale, see the discussion at
+       http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/30912
+
+2012-06-10  Karl Berry  <karl@gnu.org>
+
+       * build-aux/gnupload: with --dry-run, do not ask for gpg pw.
+
+       * build-aux/gnupload: implement --replace, ftp-upload protocol v1.2.
+
+2012-06-10  Bruce Korb  <bkorb@gnu.org>
+
+       parse-duration: Relicense under LGPLv2+.
+       * modules/parse-duration (License): Change to LGPLv2+.
+
+2012-06-10  Jim Meyering  <meyering@redhat.com>
+
+       maint.mk: prohibit common grammar error: "all these"
+       * top/maint.mk (prohibit_undesirable_word_seq_RE_): Add "all these" to
+       the list of prohibited word sequences.  It should be "all of these".
+       * lib/tempname.c (__gen_tempname): Fix one of them.
+
+2012-06-07  Akim Demaille  <akim@lrde.epita.fr>
+
+       do-release-commit-and-tag: support VPATH builds
+       * build-aux/do-release-commit-and-tag: Prefer $(...) to `...`.
+       (noteworthy): Defined earlier to factor its value.
+       (noteworthy_stub): New.
+       Use it to factor.
+       (help_version): Split into...
+       (help, version): these.
+       Adjust the option processing part.
+       Support "--option=value" in addition to "--option value".
+       (builddir): New.
+       (--builddir): New option.
+       * top/README-release: Document this.
+       Reword slightly so that the reader cannot understand that he
+       has to do these steps before calling do-release-commit-and-tag.
+
+2012-06-07  Akim Demaille  <akim@lrde.epita.fr>
+
+       readme-release: also require announce-gen and maintainer-makefile
+       * modules/readme-release (Depends-on): here.
+       * modules/announce-gen, modules/do-release-commit-and-tag,
+       modules/gnu-web-doc-update, modules/maintainer-makefile
+       (Description): Point to readme-release.
+
 2012-06-07  Akim Demaille  <akim@lrde.epita.fr>
 
        maint.mk: fix VPATH issues.