X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=8992e9130c0b7f8d1dcc8377e62b4613337bb2e5;hb=5191b3546cfb6c163228c23f214e325ddf60d46f;hp=2b373755188f77df15ec37bd25528dc514909469;hpb=ab509afde2e2572fe70ff0c55e3bf7ff289a9f40;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index 2b3737551..8992e9130 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,105 @@ +2013-10-21 Ben Pfaff + + install-reloc: Support multi-binary installation. + * build-aux/install-reloc: Support installing multiple programs in + one invocation, as done by Automake starting with commit + 4295fe33eb23f (Multi-file install for PROGRAMS.). From Bruno + Haible , archived at + http://lists.debian.org/debian-bsd/2012/05/msg00032.html. + Reported by Sylvain . + +2013-10-21 Michael Haubenwallner + + selinux-h: Really build without selinux when library is missing. + * m4/selinux-selinux-h.m4: When the selinux library is missing, really + continue without selinux, as already told in the warning message. + +2013-10-21 Jim Meyering + + regex: also remove dependency on HAVE_WCSCOLL + * lib/regex_internal.h: Remove final vestige of the wcscoll dependency. + +2013-10-21 Reuben Thomas + + xfreopen: Fix typo. s/frepoen/freopen/ + * lib/xfreopen.c: Fix description. + * modules/xfreopen: Likewise. + +2013-10-21 Jim Meyering + + regex: don't depend on wcscoll + * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wcscoll. + It is no longer used. + +2013-10-20 Jim Meyering + + error: add the printf attribute to a static function + * lib/error.c (error_tail): Add the printf attribute, to placate + gcc's -Werror=suggest-attribute=format option. + +2013-10-12 Jim Meyering + + error: make the module depend on vfprintf-posix + * modules/error (Depends-on): Add vfprintf-posix, since error + calls vfprintf unconditionally, via error_tail. + +2013-09-30 Jim Meyering + + fpending, obstack, strerror-override: use pure+const function attrs + * lib/fpending.h (__fpending): Declare with the "pure" attribute. + * lib/obstack.c (_obstack_allocated_p): Likewise. + * lib/obstack.h (_obstack_memory_used): Likewise. + (_obstack_memory_used): Likewise. + * lib/strerror-override.h (strerror_override): Declare with + the "const" attribute. + +2013-10-18 Eric Blake + + extern-inline: make safe for -Wundef usage + Reported by Vladimir 'phcoder' Serbinenko in + https://lists.gnu.org/archive/html/bug-gnulib/2013-10/msg00078.html + * m4/extern-inline.m4 (gl_EXTERN_INLINE): Port to older gcc. + +2013-10-16 Paul Eggert + + mkfifo-tests, etc.: allow HP-UX 11.11 bug + Problem reported by Daniel Richard G. in + . + * doc/posix-functions/mkfifo.texi (mkfifo): + * doc/posix-functions/mkfifoat.texi (mkfifoat): + * doc/posix-functions/mknod.texi (mknod): + * doc/posix-functions/mknodat.texi (mknodat): + Document the HP-UX 11.11 bug. + * tests/test-mkfifo.h (test_mkfifo): + Allow the HP-UX 11.11 bug. + +2013-10-14 Paul Eggert + + acl: allow cross-compilation to Gentoo + Problem reported by Gabriel Marcano in + . + * m4/acl.m4 (gl_ACL_GET_FILE): When cross-compiling, + test only whether it links. + +2013-10-13 Paul Eggert + + mgetgroups: remove dependency on realloc-gnu + The dependency violates the comment in realloc-gnu, which + says that tests can't depend on realloc-gnu; some tests depend + on mgetgroups, so mgetgroups can't depend on realloc-gnu. + Problem reported by Daniel Richard G. in + . + * lib/mgetgroups.c (mgetgroups): Don't call realloc (NULL, 0). + * modules/mgetgroups (Depends-on): Depend on realloc-posix, + not realloc-gnu. + +2013-10-12 Paul Eggert + + regex-tests: port to HP-UX 11.11 + Problem reported by Daniel Richard G. in + . + * modules/regex-tests (test_regex_LDADD): Add LIBTHREAD, LIB_PTHREAD. + 2013-10-10 Paul Eggert verify: document some 'assume' pitfalls