X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=18d4221d0413b534b7edce725b82c82a79a4c438;hb=cc6a6870c567a7476a2608f73b3a4ca8d1ffb2d6;hp=10e9366574573a77cda4cc37a0d8796f9dffa7c6;hpb=4f8fcf1d705639f175f1e4b483a86b51cbeee2f0;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index 10e936657..18d4221d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,278 @@ +2010-01-07 Bruno Haible + + * doc/posix-functions/strcasecmp.texi: Clarify the platforms. + * doc/posix-functions/strncasecmp.texi: Likewise. + +2010-01-07 Bruno Haible + + * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic. + +2010-01-07 John W. Eaton + + wctype: allow C++ use + * lib/wctype.in.h: Add extern "C" block for C++. + +2010-01-06 Eric Blake + + maint.mk: detect incorrect GFDL usage + * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule. + +2010-01-06 Jim Meyering + and Eric Blake + + maint.mk: ignore multi-line copyright in NEWS + * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright. + +2010-01-06 Eric Blake + + select: add missing dependency + * modules/select-tests (Depends-on): Move sockets dependency... + * modules/select (Depends-on): ...here. + Reported by Ian Beckwith. + + doc: regenerate INSTALL + * doc/INSTALL: Reflect recent autoconf update. + * doc/INSTALL.ISO: Likewise. + * doc/INSTALL.UTF-8: Likewise. + + pread: fix compilation on glibc + * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces. + Reported by Ralf Wildenhues. + + dirent: fix test failure + * lib/dirent.in.h (includes): Guarantee ino_t. + Reported by Ralf Wildenhues. + +2010-01-06 Petr Salinger (tiny change) + + linkat, renameat: avoid bad free + * lib/at-func2.c (at_func2): Fix typo. + Reported via Ian Beckwith, from http://bugs.debian.org/561117. + +2010-01-06 Ralf Wildenhues + + cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test + * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2, + to avoid failure of symlink test later. + +2010-01-06 Eric Blake + + stdio, unistd: guarantee ssize_t + * lib/unistd.in.h (includes): Ensure that types required by POSIX + 2008 are exposed when needed. + * lib/stdio.in.h (includes): Likewise. + Reported by Ralf Wildenhues. + +2010-01-06 Paolo Bonzini + + nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if. + * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call + AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo. + +2010-01-06 Jim Meyering + + readtokens: this module *does* require xalloc.h + It uses only functions that were omitted by the old syntax-check rule. + * lib/readtokens.c: Include "xalloc.h" once again. + * modules/readtokens (Depends-on): Add xalloc. + This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c. + +2010-01-05 Eric Blake + + maint: support 'make announcement' from a VPATH build + * top/maint.mk (announcement): Look for correct NEWS file. + +2010-01-05 Aurelien Jarno (tiny change) + + utimens (fdutimens): ignore a negative FD, per contract + * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only + when we have a valid file descriptor. Otherwise, using a brand + new glibc (with just-patched futimens that now fails with EBADF) + would cause this function to fail with ENOSYS. + Reported by Guillaume Ayoub in http://bugs.debian.org/563726. + See also http://bugzilla.redhat.com/552320. + +2010-01-05 Eric Blake + + strcase: document what it provides + * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the + gnulib module. + * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise. + Reported by Dilyan Palauzov . + +2010-01-05 Jim Meyering + + maint: remove useless inclusions of "xalloc.h" + * lib/getloadavg.c: Remove useless inclusion of "xalloc.h". + * lib/readtokens.c: Likewise. + * lib/same.c: Likewise. + * modules/getloadavg (Depends-on): Remove xalloc. + * modules/readtokens: Likewise. + * modules/same: Likewise. + + maint.mk: include 4 more function names in alloca.h-checking regexp + * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete + regexp. Before, we would give a false-positive (saying alloca.h + is included unnecessarily) when the only uses involved omitted symbols. + + xalloc.h: use consistent formatting + * lib/xalloc.h: Move declarations to start in the first column. + +2010-01-05 Eric Blake + + mkdir: avoid xalloc + * lib/mkdir.c (includes): Drop unused header. + Reported by John W. Eaton. + +2010-01-04 Jim Meyering + + nl_langinfo: avoid configure-time syntax error + * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested + for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to + the empty string. Don't let that provoke a shell syntax error. + + regcomp, regexec, fnmatch: avoid array bounds read error + * lib/regcomp.c (build_equiv_class): From glibc: + Use only the low 24 bits of a findidx return value as an index + into the weights array. Patch by Ulrich Drepper: + http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30 + * lib/regexec.c (check_node_accept_bytes): Likewise. + * lib/fnmatch_loop.c (FCT): Likewise. + + regcomp: skip collseq lookup when there are no rules + * lib/regcomp.c (lookup_collation_sequence_value): From glibc: + http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58 + + regcomp: recognize ill-formed { } expressions + * lib/regcomp.c (parse_dup_op): From glibc: + http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb + + regcomp: fix typo in comment + * lib/regcomp.c (duplicate_node_closure): Sync from glibc. + s/satisfy/satisfies/. + + regcomp: sync from glibc: remove dead store + * lib/regcomp.c (duplicate_node_closure): Remove useless + search_duplicated_node call and dead store. + + regcomp: sync from glibc; always use nl_langinfo + * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET), + now that gnulib provides it. Recognize UTF8 as well as UTF-8. + * modules/regex (Depends-on): Add nl_langinfo. + +2010-01-04 Eric Blake + + fdopendir: fix configure test + * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file. + +2010-01-01 Bruno Haible + + wchar: Remove unused configure check. + * m4/wchar.m4 (gl_WCHAR_H): Don't test whether is standalone. + +2010-01-01 Eric Blake + + headers: make check of system header explicit + * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of + gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE + ourselves. + * m4/search_h.m4 (gl_SEARCH_H): Likewise. + * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise. + * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise. + * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI + internals. + * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is + missing. + Suggested by Bruno Haible. + +2010-01-01 Jim Meyering + + ChangeLog: tweak to eliminate unnecessary copyright line + * ChangeLog: Remove a copyright line that was mistakenly updated + by today's update-copyright run. Reported by Eric Blake. + + test-update-copyright: don't let envvar setting cause test failure + * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH. + +2010-01-01 Bruno Haible + + localename: Avoid gcc warning. + * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this + function if it is not used. + +2010-01-01 Jim Meyering + + update nearly all FSF copyright year lists to include 2010 + Use the same procedure as for 2009, outlined in + http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081 + + version-etc: set COPYRIGHT_YEAR to 2010 + * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum. + +2009-12-31 Eric Blake + + doc: correct availability of cygwin 1.5.x getopt + * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt + variables. + * doc/posix-functions/opterr.texi (opterr): Likewise. + * doc/posix-functions/optind.texi (optind): Likewise. + * doc/posix-functions/optopt.texi (optopt): Likewise. + * doc/posix-functions/tzname.texi (tzname): Likewise. + + openat: update maintainer + * modules/openat (Maintainer): Add myself. + + utimens: avoid shadowing warning + * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat + buffers into one, to avoid shadowing, as well as avoiding a + redundant stat. + Reported by Jim Meyering. + + test-dup2: avoid compiler warning + * tests/test-dup2.c (is_inheritable): Only define if used. + +2010-01-01 Bruno Haible + + vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb. + * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is + defined, use wctomb instead of wcrtomb. + +2010-01-01 Bruno Haible + + iconv: Reject native Solaris iconv. + * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug. + * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug. + +2009-12-31 Bruno Haible + + * tests/test-signal.c (main): Remove test of 'SIG'. + +2009-12-31 Bruno Haible + + spawn: Fix incomplete fix. + * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags, + posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link + warnings for GNULIB_POSIXCHECK again. + Reported by Eric Blake. + +2009-12-31 Bruno Haible + + Avoid namespace pollution on glibc systems. + * lib/spawn.in.h: Don't include , on glibc systems. + * lib/sys_times.in.h: Don't include on glibc systems. + * lib/wchar.in.h: Don't include , , on + glibc systems. + +2009-12-31 Bruno Haible + + * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation. + (gl_REPLACE_WCHAR_H): Turn into a no-op. + * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise. + * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise. + * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise. + * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise. + * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise. + 2009-12-31 Bruno Haible * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke @@ -9224,10 +9499,9 @@ --with-packager=Gentoo \ --with-packager-bug-report=http://bugs.gentoo.org/ \ --with-packager-version="patchset 1.6" - $ ./src/ls --version | head -n3 + $ ./src/ls --version | head -n2 ls (GNU coreutils) 7.1-dirty Packaged by Gentoo (patchset 1.6) - Copyright (C) 2009 Free Software Foundation, Inc. Note that the bug reporting info via --help doesn't show up because coreutils uses its own custom emit_bug_reporting_address() implementation in src/system.h. If it didn't, it'd look like: @@ -60838,7 +61112,7 @@ coding: utf-8 End: - Copyright (C) 1997-2009 Free Software Foundation, Inc. + Copyright (C) 1997-2010 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice