X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=18d7d4b59bde3804f8583735d8ee6254c563eb63;hb=7c2e36888a6f0d63557fc2b98a8c8f3d3cb73aa3;hp=25c63a520daf0e23015b4fe27916fafa1fe085cf;hpb=b7c95ee2f21751f24fd6245a8545cc8b3c555e60;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index 25c63a520..18d7d4b59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,455 @@ +2010-10-03 Bruno Haible + Joachim Schmitz (tiny change) + + acl: Add support for ACLs on NonStop Kernel. + * m4/acl.m4 (gl_FUNC_ACL): For Solaris, test for facl(), not for acl(). + Check whether the function aclsort() exists. + * lib/acl-internal.h: For Solaris, test HAVE_FACL, not HAVE_ACL. + (acl_nontrivial) [HAVE_ACLSORT]: New declaration. + * lib/file-has-acl.c: For Solaris, test HAVE_FACL, not HAVE_ACL. + (acl_nontrivial [HAVE_ACLSORT]: New function. + (file_has_acl): Implement for NonStop Kernel. + * lib/set-mode-acl.c: For Solaris, test HAVE_FACL, not HAVE_ACL. + (qset_acl): Implement for NonStop Kernel. + * lib/copy-acl.c (qcopy_acl): Implement for NonStop Kernel. + * tests/test-sameacls.c: For Solaris, test HAVE_FACL, not HAVE_ACL. + (main): Implement for NonStop Kernel. + * tests/test-file-has-acl.sh (acl_flavor): Set to 'nsk' on NonStop + Kernel. Handle this flavor. + * tests/test-set-mode-acl.sh: Likewise. + * tests/test-copy-acl.sh: Likewise. + * tests/test-copy-file.sh: Likewise. + +2010-10-03 Bruno Haible + + Info about ACLs on NonStop Kernel. + * doc/acl-resources.txt: Add info about NonStop Kernel. + References by Joachim Schmitz . + +2010-10-02 Bruno Haible + + Define missing EDQUOT on NonStop Kernel. + * lib/errno.in.h (EDQUOT): Assign a value if missing. + * lib/strerror.c (rpl_strerror): Handle missing EDQUOT. + * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether EDQUOT is + missing. + * doc/posix-headers/errno.texi: Mention the NSK bug. + * doc/posix-functions/strerror.texi: Mention the workaround on NSK. + Reported by Joachim Schmitz . + +2010-10-02 Bruno Haible + + Update doc for POSIX:2008. + * doc/posix-headers/*.texi [except ucontext.texi, sys_timeb.texi]: + Update URL of POSIX specification. + +2010-10-02 Bruno Haible + + gnulib-tool: In testdirs, use the newest available config.{guess.sub}. + * gnulib-tool (func_create_testdir): Use config.guess and config.sub + from gnulib, not from Automake. + +2010-10-02 Bruno Haible + + New module 'system-posix'. + * modules/system-posix: New file. + * lib/stdlib.in.h: Include only when the 'system-posix' + module is present. + * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize + GNULIB_SYSTEM_POSIX. + * modules/stdlib (Depends-on): Remove sys_wait. + (Makefile.am): Substitute GNULIB_SYSTEM_POSIX. + * doc/posix-functions/system.texi: Mention the new module. + * doc/posix-headers/stdlib.texi: Likewise. + * tests/test-stdlib.c: If GNULIB_TEST_SYSTEM_POSIX is not defined, + define test_sys_wait_macros to a no-op. + Reported by Sam Steingold . + +2010-09-30 Bruno Haible + + More renaming from 'getdate' to 'get_date'. + * doc/get_date.texi: Renamed from doc/getdate.texi. + * modules/get_date (Files): Update. + * MODULES.html.sh (Date and time ): Update. + * DEPENDENCIES: Update. + * gnulib-tool: Update comment. + * m4/bison.m4 (gl_BISON): Likewise. + * m4/get_date.m4 (gl_GET_DATE): Likewise. + +2010-09-30 Justin Clift (tiny change) + + bootstrap: support ACLOCAL_FLAGS during aclocal + * build-aux/bootstrap (aclocal): Honor ACLOCAL_FLAGS, so the user + can add additional -I dir for third-party .m4 files. + +2010-09-30 Eric Blake + + bootstrap: use glibtoolize on MacOS + * build-aux/bootstrap (check_versions): Convert libtool into + libtoolize. + (tool search): Move libtool check earlier, and look for + glibtoolize for MacOS. + (gnulib_tool_options): Auto-add --libtool when appropriate. + Reported by Justin Clift. + + poll: fix typo that broke test on MacOS + * m4/poll.m4 (gl_FUNC_POLL): Add missing test. + Reported by Justin Clift. + + getdate: rename to get_date + Note: getdate.h is not renamed, to minimize client impact. + * modules/getdate: Mark obsolete. Move old contents... + * modules/get_date: ...to new module name. + * modules/getdate-tests: Move... + * modules/get_date-tests: ...here. + * m4/getdate.m4: Move... + * m4/get_date.m4: ...here, and rename gl_GETDATE to gl_GET_DATE. + * lib/getdate.y: Move... + * lib/get_date.y: ...here. + * tests/test-getdate.c: Move... + * tests/test-get_date.c: ...here. + * doc/posix-functions/getdate.texi (getdate): Update name. + * NEWS: Mention the change. + +2010-09-29 Bruno Haible + + Separate the module 'waitpid' from the module 'sys_wait'. + * lib/sys_wait.in.h (waitpid): Declare only if the 'waitpid' module is + present. + * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Invoke + gl_MODULE_INDICATOR_FOR_TESTS. + (gl_SYS_WAIT_H_DEFAULTS): Initialize GNULIB_WAITPID. + * modules/sys_wait (Depends-on): Remove waitpid. + (Makefile.am): Substitute GNULIB_WAITPID. + * modules/waitpid (configure.ac): Invoke gl_SYS_WAIT_MODULE_INDICATOR. + * tests/test-sys_wait-c++.cc (GNULIB_NAMESPACE::waitpid): Check the + signature only if the 'waitpid' module is present. + * doc/posix-functions/waitpid.texi: Mention the 'waitpid' module. + * NEWS: Mention the change. + * modules/grantpt (Depends-on): Add waitpid. + * modules/wait-process (Depends-on): Likewise. + +2010-09-29 Bruno Haible + + More tests for module 'sys_wait'. + * modules/sys_wait-c++-tests: New file. + * tests/test-sys_wait-c++.cc: New file. + * modules/sys_wait-tests (Depends-on): Add sys_wait-c++-tests. + Reported by Tatsuro MATSUOKA . + +2010-09-29 Bruno Haible + + New module 'waitpid'. + * lib/waitpid.c: New file, extracted from lib/sys_wait.in.h. + * lib/sys_wait.in.h: Include , c++defs.h, warn-on-use.h. + Don't include . + (waitpid): Declare only, using modern idiom. + * m4/waitpid.m4: New file. + * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Check whether waitpid is declared. + * modules/waitpid: New file. + * modules/sys_wait (Depends-on): Add c++defs, warn-on-use, waitpid. + (Makefile.am): Update. + Reported by Tatsuro MATSUOKA . + +2010-09-28 Bruno Haible + + poll: Assume ANSI C. + * lib/poll.c (poll): Use an ANSI C declaration. + +2010-09-28 Bruno Haible + + poll-h: Create poll.h on all platforms. + * lib/poll.in.h: Use double-inclusion guard. Don't define POLL*, + struct pollfd, nfds_t, INFTIM when the system has . + * m4/poll_h.m4 (gl_POLL_H): Set HAVE_POLL_H. Invoke + gl_CHECK_NEXT_HEADERS. Don't set POLL_H. + (gl_REPLACE_POLL_H): Don't set POLL_H. + (gl_POLL_H_DEFAULTS): Don't initialize POLL_H. + * modules/poll-h (Depends-on): Add include_next. + (Makefile.am): Create poll.h unconditionally. Substitute also + HAVE_POLL_H, INCLUDE_NEXT, PRAGMA_SYSTEM_HEADER, NEXT_POLL_H. + +2010-09-28 Bruno Haible + + Tests for module 'poll-h'. + * modules/poll-h-c++-tests: New file. + * tests/test-poll-h-c++.cc: New file. + + Tests for module 'poll-h'. + * modules/poll-h-tests: New file. + * tests/test-poll-h.c: New file. + +2010-09-28 Bruno Haible + + poll-h: Ensure POLL{RD,WR}{NORM,BAND} are defined on glibc platforms. + * modules/poll-h (Depends-on): Add 'extensions'. + +2010-09-28 Bruno Haible + + New module 'poll-h'. + * lib/poll.in.h: Include c++defs.h and warn-on-use.h. + (poll): Use modern idiom. + * modules/poll-h: New file. + * modules/poll (Files): Remove lib/poll.in.h. + (Depends-on): Add poll-h. + (configure.ac): Invoke gl_POLL_MODULE_INDICATOR. + (Makefile.am): Move code for generation of poll.h to modules/poll-h. + * m4/poll_h.m4: New file. + * m4/poll.m4 (gl_FUNC_POLL): Require gl_POLL_H. Don't check for poll.h + here. Don't set POLL_H here. Instead, set HAVE_POLL and REPLACE_POLL + and invoke gl_REPLACE_POLL_H. + * lib/poll.c: Use common idiom. + * tests/test-poll.c: Likewise. + * doc/posix-headers/poll.texi: Mention the poll-h module. + Suggested by Eric Blake. + +2010-09-26 Bruno Haible + + sys_wait: Implement WSTOPSIG. + * lib/sys_wait.in.h (WSTOPSIG): New macro. + Reported by Simon Josefsson. + +2010-09-26 Simon Josefsson + + stdlib, sys_wait: Avoid compilation error on mingw. + * lib/sys_wait.in.h: Include , for SIGTERM. + +2010-09-26 Bruno Haible + + stdlib tests: Avoid code duplication. + * modules/stdlib-tests (Files): Add tests/test-sys_wait.h. + * modules/sys_wait-tests (Files): Likewise. + * tests/test-sys_wait.h: New file, extracted from tests/test-stdlib.c. + * tests/test-stdlib.c: Include test-sys_wait.h. + (main): Invoke test_sys_wait_macros. + * tests/test-sys_wait.c: Include test-sys_wait.h. + (main): Invoke test_sys_wait_macros. + +2010-09-25 Simon Josefsson + + * modules/getaddrinfo (Depends-on): Depend on the sockets module. + * lib/getaddrinfo.c (use_win32_p): Call gl_sockets_startup to make + sure Windows sockets are working before calling getaddrinfo. + * tests/test-getaddrinfo.c (main): Don't call WSAStartup here. + * doc/gnulib.texi (Windows sockets): Fix typo. + +2010-09-25 Bruno Haible + + Tests for module 'regex-quote'. + * modules/regex-quote-tests: New file. + * tests/test-regex-quote.c: New file. + + New module 'regex-quote'. + * lib/regex-quote.h: New file. + * lib/regex-quote.c: New file. + * modules/regex-quote: New file. + Suggested by Reuben Thomas . + +2010-09-24 Bruno Haible + + unistr/u8-strchr: Fix a test failure on i586 glibc systems. + * tests/unistr/test-strchr.h (test_strchr): Disable an invalid check. + +2010-09-23 Bruno Haible + + setenv: Relax license. + * modules/setenv (License): Change to LGPLv2+, with consent by Eric + Blake. + Requested by Eric Blake. + +2010-09-22 Bruno Haible + + termios: Relax license. + * modules/termios (License): Change to LGPLv2+. + Requested by Eric Blake. + +2010-09-22 Bruno Haible + + threadlib: Allow the package to change the default to 'no'. + * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): When + gl_THREADLIB_DEFAULT_NO is defined, change the default to 'no'. + Reported by Paul Eggert. + +2010-09-22 Pádraig Brady + Bruno Haible + + Fix endless loop in mbmemcasecoll. + * lib/mbmemcasecoll.c (apply_towlower): When mbrtowc returns 0, copy 1 + byte. + * tests/test-mbmemcasecmp.h (test_ascii): Test embedded NULs. + +2010-09-22 Bruno Haible + + Tests for module 'memcoll'. + * modules/memcoll-tests: New file. + * tests/test-memcoll.c: New file, based on tests/test-memcmp.c. + + memcoll, xmemcoll: Clarify size vs. length. + * modules/memcoll.c (memcoll0): Clarify specification. + * modules/xmemcoll.c (xmemcoll0): Likewise. Reduce by 1 the lengths + passed to collate_error. + +2010-09-22 Bruno Haible + + Tests for module 'memcasecmp'. + * modules/memcasecmp-tests: New file. + * tests/test-memcasecmp.c: New file, based on tests/test-memcmp.c. + +2010-09-22 Paul Eggert + + * lib/pthread.in.h: Add split double-inclusion guard, and include + system if there is one. Use @@-style as in other + .in.h files. Define PTHREAD_COND_INITIALIZER etc. only if system + pthread.h doesn't. + (pthread_mutexattr_destroy, pthread_mutexattr_init): + (pthread_mutexattr_settype, pthread_mutex_trylock): + New static inline functions, if there's no system . + (pthread_spinlock_t, pthread_spin_init, pthread_spin_destroy): + (pthread_spin_lock, pthread_spin_trylock, pthread_spin_unlock): + Approximate with mutexes if the system lacks spinlocks, as in + MacOS. + * m4/pthread.m4 (gl_PTHREAD_CHECK): Require gl_PTHREAD_DEFAULTS. + Add gl_CHECK_NEXT_HEADERS for pthread.h, and support the usual + @@-style. Check for spinlocks separately. + (gl_PTHREAD_DEFAULTS): New macro. + * modules/pthread: Redo to use a more typical style for in.h files. + +2010-09-21 Eric Blake + + net_if: enhance tests + * tests/test-net_if.c (main): Move signature checks earlier. + Print failures to stderr. + * doc/posix-functions/if_freenameindex.texi (if_freenameindex): + Document the bug that we do not yet fix. + +2010-09-21 Reuben Thomas + + * doc/gnulib.texi (Out of memory handling): Rewrite section to be + about gnulib, not GSS. + +2010-09-21 Reuben Thomas + + * build-aux/pmccabe2html: Look for sources in src/ instead of lib/. + * build-aux/pmccabe2html: Set cut_dir properly, and add mode line + for Emacs. + * build-aux/pmccabe2html: Make Makefile.am example code more + cut-and-paste friendly. + +2010-09-21 Simon Josefsson + + * tests/test-net_if.c: New file. + * modules/net_if-tests: New file. + +2010-09-20 Paul Eggert + + pthread: add pthread_spin_destroy + * lib/pthread.in.h (pthread_spin_destroy): New function. + +2010-09-19 Bruno Haible + + gnulib-tool: Fix --help output. + * gnulib-tool (func_usage): Fix help message. + Reported by Reuben Thomas . + +2010-09-18 Jim Meyering + + maint.mk: avoid unexpanded \n in two diagnostics + * top/maint.mk (sc_prohibit_always_true_header_tests): + Don't use a literal \n in a halt=... assignment. It would not be + expanded, and the two \n bytes would appear in the diagnostic output + rather than the desired newline. Use halt=$$(printf ... instead. + (sc_vulnerable_makefile_CVE-2009-4029): Likewise. + +2010-09-18 Bruno Haible + + netinet_in: Doc tweak. + * doc/posix-headers/netinet_in.texi: Mention an affected platform. + Reported by Mats Erik Andersson . + +2010-09-18 Jim Meyering + + init.sh: correct an outdated comment + * tests/init.sh (create_exe_shims_): s/function/alias/ + + init.sh: don't let an ephemeral "*.exe" make us skip all dir entries + * tests/init.sh (find_exe_basenames_): Don't give up on a directory if + a file named "*.exe" is removed between the glob expansion and the + processing of that oddly named file. + +2010-09-17 Eric Blake + + mirbsd: add some more support + * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): MirBSD is + in BSD family. + * m4/gc-random.m4 (gl_GC_RANDOM): MirBSD supports same random + devices as OpenBSD. + * m4/host-os.m4 (mirbsd): Add MirBSD. + + tests: fix unportable assumption on sys/wait.h + * tests/test-sys_wait.c (main): Relax test. + * tests/test-stdlib.c (main): Likewise. + + init.sh: accomodate directory with no .exes + * tests/init.sh: Accomodate directory containing only scripts. + + tests: avoid compiler warning + * tests/test-stdlib.c (main): Use the variable. + + fdutimens, fdutimensat: update signature, again + * lib/utimens.h (gl_futimens): Delete, and move signature... + (fdutimens): ...here. + (fdutimensat): Rearrange signature. + (lutimensat): Rename variable for clarity. + * lib/fdutimensat.c (fdutimensat): Update signature. + * lib/utimens.c (fdutimens): Likewise. + (gl_futimens): Delete. + (utimens, lutimens): Update callers. + * lib/futimens.c (futimens): Likewise. + * tests/test-fdutimensat.c: Likewise. + * tests/test-utimens.c: Likewise. + * tests/test-futimens.h: Update comment. + * NEWS: Mention this. + Suggested by Paul Eggert. + +2010-09-17 Bruno Haible + + Take over the maintenance of some older macros from Autoconf. + * m4/error.m4 (AC_FUNC_ERROR_AT_LINE): New macro, from GNU Autoconf. + * m4/lstat.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): New macro, from + GNU Autoconf. + * m4/memcmp.m4 (AC_FUNC_MEMCMP): New macro, from GNU Autoconf. + * m4/mktime.m4 (AC_FUNC_MKTIME): Change comment. + +2010-09-17 Eric Blake + + fdutimensat: drop atflag validation + * lib/fdutimensat.c (fdutimensat): Allow AT_SYMLINK_NOFOLLOW even + with valid fd, to close a race scenario where futimens is + unsupported and FILE was replaced by a symlink. + * tests/test-fdutimensat.c (do_fdutimens, main): Adjust test + accordingly. + Suggested by Paul Eggert. + +2010-09-16 Bruno Haible + + unlockpt: Fix declaration within GNULIB_POSIXCHECK. + * lib/stdlib.in.h (unlockpt): Fix warning declaration. + +2010-09-16 Bruno Haible + + login_tty: Fix detection of function on FreeBSD, OpenBSD, NetBSD. + * m4/pty.m4 (gl_FUNC_LOGIN_TTY): Augment LIBS while checking whether + login_tty exists. + Reported by Mats Erik Andersson . + +2010-09-16 Bruno Haible + + login_tty: Make the replacement code work on BSD systems. + * lib/login_tty.c: Include . + (login_tty): Use ioctl TIOCSCTTY when available. + * modules/login_tty (Depends-on): Add sys_ioctl. + Reported by Mats Erik Andersson . + 2010-09-16 Bruno Haible login_tty: Stricter unit test.