X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=6ca044488d4b13c9a36a1153c4729da74f883063;hb=3215ba10fd6dcff44bb0f6748b161f56dcd28d01;hp=e4692b70d26ff6342c5e5bc2b94c9e79878ee3ec;hpb=86e9d08f1419a61e14e124568b101be4a1e6a408;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index e4692b70d..6ca044488 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,99 @@ +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'.