X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ChangeLog;h=959a0afed65bd5f08ac29296fd7bf8091d4851d5;hb=83e975e4cd9c28a936bd47b4d1158915e0995e61;hp=ec48b91ff7fb6c9b275309390c7fa70da1ed8c82;hpb=09ba76e4c6a04d7b19bfe08cef12c29ddd21734c;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index ec48b91ff..959a0afed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,134 @@ +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