getgroups, getugroups: provide stubs for mingw
[gnulib.git] / ChangeLog
index 227d9bd..26aa643 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,118 @@
+2009-11-13  Eric Blake  <ebb9@byu.net>
+
+       getgroups, getugroups: provide stubs for mingw
+       * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
+       * lib/getugroups.c (getugroups): Likewise.
+       * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
+       function.  Modernize replacement scheme.
+       (gl_PREREQ_GETGROUPS): Delete.
+       * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
+       * modules/getgroups (configure.ac): Declare witness.
+       * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
+       * modules/unistd (Depends-on): Substitute witness.
+       * lib/unistd.in.h (getgroups): Declare replacement.
+
+       getgroups: avoid calling exit
+       * modules/getgroups (Depends-on): Add malloc-posix and unistd,
+       drop xalloc.
+       * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
+       dependencies.
+       * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
+       exiting, in the rare case of malloc failure.
+
+       getgroups: fix logic error
+       * lib/getgroups.c (rpl_getgroups): Don't fail if current process
+       has more than 20 groups.
+       * modules/getgroups-tests: New test.
+       * tests/test-getgroups.c: New file.
+
+2009-11-13  Simon Josefsson  <simon@josefsson.org>
+
+       * tests/test-base64.c: Improve.
+
+2009-11-13  Simon Josefsson  <simon@josefsson.org>
+
+       * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
+       Blake <ebb9@byu.net>.
+
+2009-11-13  Simon Josefsson  <simon@josefsson.org>
+
+       * tests/test-xvasprintf.c: Add %s%s related checks.
+
+2009-11-12  Eric Blake  <ebb9@byu.net>
+
+       version-etc: match standards.texi style
+       * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
+       and use <> only for URLs.
+
+2009-11-10  Kamil Dudka  <kdudka@redhat.com>
+
+       fts: do not fail on a submount during traversal
+       * lib/fts.c (fts_build): Read the stat info again after opening
+       a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
+       Original report at http://bugzilla.redhat.com/501848.
+
+2009-11-12  Jim Meyering  <meyering@redhat.com>
+
+       bootstrap: sync from coreutils
+       * build-aux/bootstrap (bootstrap_epilogue): New function.
+       Use git_modules_config in one more place.  This make bootstrap's
+       --gnulib-srcdir option more useful for testing.
+
+       bootstrap: generalize autoheader check
+       * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
+       AC_CONFIG_HEADERS.
+
 2009-11-11  Eric Blake  <ebb9@byu.net>
 
+       mkfifoat: use new modules for Solaris and BSD bugs
+       * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
+       * lib/mkfifoat.c (mknodat): Split...
+       * lib/mknodat.c (mknodat): ...into new file.
+       * modules/mkfifoat (Files): Ship new file.
+       (Depends-on): Add mkfifo, mknod.
+       * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
+       (Depends-on): Add symlink.
+       * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
+       redundant with test_mkfifo.h.
+       (do_mkfifoat, do_mknodat): New helpers.
+
+       mknod: new module
+       * modules/mknod: New file.
+       * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
+       * lib/mknod.c (mknod): Likewise.
+       * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
+       defaults.
+       * modules/sys_stat (Makefile.am): Substitute them.
+       * lib/sys_stat.in.h (mknod): Declare replacement.
+       * MODULES.html.sh (Support for systems lacking POSIX:2008):
+       Document it.
+       * doc/posix-functions/mknod.texi (mknod): Likewise.
+       * modules/mknod-tests: New test.
+       * tests/test-mknod.c: Likewise.
+
+       mkfifo: new module
+       * modules/mkfifo: New file.
+       * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
+       * lib/mkfifo.c (mkfifo): Likewise.
+       * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
+       defaults.
+       * modules/sys_stat (Makefile.am): Substitute them.
+       * lib/sys_stat.in.h (mkfifo): Declare replacement.
+       * MODULES.html.sh (Support for systems lacking POSIX:2008):
+       Document it.
+       * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
+       * modules/mkfifo-tests: New test.
+       * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
+       from test-mkfifoat.c.
+       * tests/test-mkfifo.c: New file.
+
+       readlink: detect FreeBSD bug
+       * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
+       slash on symlink.
+       * doc/posix-functions/readlink.texi (readlink): Document the bug.
+       * tests/test-readlink.h (test_readlink): Enhance test.
+
        symlink: detect FreeBSD bug
        * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
        slash on symlink.