X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=786634f8bb49afb31d5d5e3463cf647e44f72d0f;hb=70d0d751d147cd0a4f3d565622b889c211bbe917;hp=2d124631479ac56524a6d3746d16a200db3f637f;hpb=def1af84d3544757a7024228df9ca52f22a58e9c;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index 2d1246314..786634f8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,402 @@ +2009-04-05 Bruno Haible + + * lib/unicase.h: Mention u*_cmp2. + * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP. + * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp. + * lib/unicase/ulc-casecmp.c: Likewise. + * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp. + * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp. + * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove + unistr/u8-cmp. + * modules/unicase/ulc-casecmp (Depends-on): Likewise. + * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove + unistr/u16-cmp. + * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove + unistr/u32-cmp. + + * lib/uninorm.h: Mention u*_cmp2. + * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP. + * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp. + * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp. + * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp. + * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove + unistr/u8-cmp. + * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove + unistr/u16-cmp. + * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove + unistr/u32-cmp. + + New module 'unistr/u32-cmp2'. + * lib/unistr/u32-cmp2.c: New file. + * modules/unistr/u32-cmp2: New file. + + New module 'unistr/u16-cmp2'. + * lib/unistr/u16-cmp2.c: New file. + * modules/unistr/u16-cmp2: New file. + + New module 'unistr/u8-cmp2'. + * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations. + * lib/unistr/u8-cmp2.c: New file. + * lib/unistr/u-cmp2.h: New file. + * modules/unistr/u8-cmp2: New file. + +2009-04-05 Bruno Haible + + * lib/unictype.h (uc_property_is_valid): New macro. + * tests/unictype/test-pr_byname.c (main): Use it. + + * lib/unistr.h: Doc fixes. + * lib/uniconv.h: Doc fixes. + * lib/unictype.h: Doc fixes. + +2009-04-03 Paul Eggert + + Port coreutils 7.2 to Solaris 8. + + * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h. + * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl, + for Solaris 8. This is a bit of a hack, as it means it's the + caller's responsibility to add -lnsl if needed, but most likely it + won't be needed since only getaddrinfo uses this and getaddrinfo + isn't needed on Solaris 8. + + * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting + problem to Solaris 8 encountered with coreutils 7.2, which + resulted in a message "fnmatch.c:292: warning: passing argument 4 + of 'mbsrtowcs' from incompatible pointer type". Also, add mbsinit + at the suggestion of Bruno Haible, since fnmatch uses mbsinit. + +2009-04-03 Simon Josefsson + + * m4/ld-version-script.m4: Add FIXME comment. + +2009-04-02 Simon Josefsson + + * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing + SOVERSION variable. + +2009-04-02 Bruno Haible + + * Makefile (info, html, dvi, pdf): Combine the rules. + Suggested by Jim Meyering. + +2009-04-01 Bruno Haible + + * Makefile (info, html, dvi, pdf): New targets. + Reported by Reuben Thomas . + +2009-04-01 Bruno Haible + + * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool + can be put into PATH. + Reported by Reuben Thomas . Suggested by Karl Berry. + +2009-04-01 Bruno Haible + + * doc/lib-symbol-visibility.texi: Follow texinfo style conventions. + +2009-04-01 Bruno Haible + + Rename module 'visibility'. + * modules/lib-symbol-visibility: Renamed from modules/visibility. + * doc/lib-symbol-visibility.texi: Renamed from visibility.texi. + * doc/gnulib.texi: Update. + * MODULES.html.sh (Misc): Update. + * NEWS: Mention the change. + +2009-04-01 Simon Josefsson + + * modules/lib-msvc-compat: New module. Thanks to Bruno Haible + , Ralf Wildenhues , and + Eric Blake for review. + * MODULES.html.sh: Add lib-msvc-compat. + * doc/gnulib.texi: Link to new section. + * m4/ld-output-def.m4: New file. + * doc/ld-output-def.texi: New file. + +2009-04-01 Simon Josefsson + + Rename ld-version-script to lib-symbol-versions. Suggested by + Bruno Haible . + * modules/ld-version-script: Renamed to lib-symbol-versions. + * doc/ld-version-script.texi: Fix module name. + * MODULES.html.sh: Add lib-symbol-versions. + +2009-03-31 Simon Josefsson + + * modules/u64-tests: New file. + * tests/test-u64.c: New file. + +2009-03-04 Simon Josefsson + + * MODULES.html.sh: Mention u64. + * modules/u64: New module. + * modules/crypto/sha512: Depend on u64 module instead of providing + u64.h. + +2009-03-27 Eric Blake + + test-strerror: make debugging EAI_SYSTEM easier + * modules/getaddrinfo-tests (Depends-on): Add strerror. + * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if + failure was EAI_SYSTEM. + +2009-03-25 Bruno Haible + + Fix a problem with --enable-relocatable on Solaris 7. + * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed + since 2008-02-24. + +2009-03-25 Eric Blake + + test-sockets: avoid gcc warning + * tests/test-sockets.c (main): Silence compiler warning. + +2009-03-25 Paul Eggert + + New modules nproc, pthread, contributed by Glen Lenker. + + * MODULES.html.sh: Add pthread, nproc. + * lib/nproc.c: New file. + * lib/nproc.h: New file. + * lib/pthread.in.h: New file. + * m4/pthread.m4: New file. + * modules/nproc: New file. + * modules/pthread: New file. + +2009-03-24 Simon Josefsson + + * modules/unicase/locale-language-tests (test_locale_language_LDADD): + New variable. + +2009-03-24 Kamil Dudka + + filevercmp: handle simple~ and numbered.~3~ backup suffixes + * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes. + * tests/test-filevercmp.c: Add tests for backup suffixes. + +2009-03-24 Simon Josefsson + + * modules/stdlib (Depends-on): Add stdint, needed when defining + struct random_data on, for example, HP-UX 10.20. Reported by + Albert Chin . + +2009-03-24 Simon Josefsson + + * lib/readline.c (readline): Call fflush on stdout after printing + prompt. + +2009-03-20 Bruno Haible + + Remove dependency from 'close' module to -lws2_32 on native Windows. + * lib/close-hook.h: New file. + * lib/close-hook.c: New file. + * lib/close.c: Include close-hook.h. Don't include , + w32sock.h. + (_gl_close_fd_maybe_socket): Remove function. + (rpl_close): Invoke execute_all_close_hooks instead of + _gl_close_fd_maybe_socket. + * lib/sockets.c: Include close-hook.h, w32sock.h. + (close_fd_maybe_socket): New function, essentially from lib/close.c. + (close_sockets_hook): New variable. + (gl_sockets_startup): Register close_fd_maybe_socket as a hook. + (gl_sockets_cleanup): Unregister it. + * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro. + * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change. + * modules/close-hook: New file. + * modules/close (Files): Remove lib/w32sock.h. + (Depends-on): Add close-hook. + (Link): Remove section. + * modules/sockets (Files): Add lib/w32sock.h. + (Depends-on): Add close-hook. + * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR + invocation. + * NEWS: Mention that LIB_CLOSE is gone. + +2009-03-23 Eric Blake + + signal-tests: test previous patch + * tests/test-signal.c: New file. + * modules/signal-tests: Likewise. + + signal.h: always support 'volatile sig_atomic_t' + * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation. + (gl_SIGNAL_H_DEFAULTS): Add a default. + * modules/signal (Makefile.am): Substitute if needed. + * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that + users can blindly add volatile. + * doc/posix-headers/signal.texi (signal.h): Document it. + Reported by Matthew Woehlke. + +2009-03-23 Jim Meyering + + pathmax: PATH_MAX: use pathconf only when available + * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition + only if HAVE_PATHCONF is defined. Patch by Sylvain Beucler. + * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf. + This avoids a link failure in a PSP cross-compilation environment + described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048 + + * lib/vasnprintf.c (divide): Fix typo in comment. + +2009-03-23 Ralf Wildenhues + + * gnulib-tool (func_filter_filelist): Fix comment. + +2009-03-20 Bruno Haible + + Make sockets.h self-contained. + * lib/sockets.c: Include sockets.h first. + * lib/sockets.h: Include before using the SOCKET type. + +2009-03-19 Eric Blake + + doc: mention more functions added in cygwin 1.7.0 + * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0 + addition. + * doc/posix-functions/log2f.texi: Likewise. + +2009-03-19 Jim Meyering + + fsusage: avoid syntax error due to statement-before-declaration + * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement + after all declarations. Reported by Matthew Woehlke in + http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231 + +2009-03-18 Eric Blake + + build-aux/compile: sync from automake + * build-aux/compile: New file, from automake. + * config/srclist.txt: Mention build-aux/compile. + +2009-03-17 Bruno Haible + + * lib/git-merge-changelog.c: Fix typo in comment. + Reported by Reuben Thomas . + +2009-03-17 Reuben Thomas + + * m4/regex.m4: update and improve help for + --without-included-regex. + +2009-03-17 Simon Josefsson + + * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid + failure on missing include files. + +2009-03-17 Eric Blake + + doc: mention more functions added in cygwin 1.7.0 + * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0 + addition. + * doc/posix-functions/fwscanf.texi: Likewise. + * doc/posix-functions/swprintf.texi: Likewise. + * doc/posix-functions/swscanf.texi: Likewise. + * doc/posix-functions/vfwprintf.texi: Likewise. + * doc/posix-functions/vfwscanf.texi: Likewise. + * doc/posix-functions/vswprintf.texi: Likewise. + * doc/posix-functions/vswscanf.texi: Likewise. + * doc/posix-functions/vwprintf.texi: Likewise. + * doc/posix-functions/vwscanf.texi: Likewise. + * doc/posix-functions/wcscasecmp.texi: Likewise. + * doc/posix-functions/wcsdup.texi: Likewise. + * doc/posix-functions/wcsftime.texi: Likewise. + * doc/posix-functions/wcsncasecmp.texi: Likewise. + * doc/posix-functions/wprintf.texi: Likewise. + * doc/posix-functions/wscanf.texi: Likewise. + * doc/glibc-functions/gethostbyname2.texi: Likewise. + +2009-03-14 Ralf Wildenhues + + maint.mk: really add $(AM_MAKEFLAGS) + * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)' + was inadvertently omitted in the last commit. + Spotted by Bruno Haible. + + maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make + * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE) + $(AM_MAKEFLAGS)' rather than plain `make'. + + gnulib-tool: execute $MAKE not make + * gnulib-tool: Default $MAKE to 'make'. + (func_create_testdir, func_create_megatestdir): Use $MAKE rather + than make. Initialize $MAKE in the do-autobuild script. + + gnulib-tool: use $MAKE not make in generated files + * gnulib-tool (func_create_megatestdir): Use $MAKE rather than + make, in generated files. Initialize $MAKE in the do-autobuild + script. + + * top/GNUmakefile (_have-git-version-gen): Fix typo. + + GNUmakefile: disable parallelism only for multiple, recursive targets + * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user + additions in the Makefile. + (AM_RECURSIVE_TARGETS): New macro, override only if not provided + by Automake. + (.NOTPARALLEL): Only disable parallel builds if multiple targets + are listed on the command line and at least one of them is + listed in $(ALL_RECURSIVE_TARGETS). + +2009-03-14 Bruno Haible + + * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace + utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe. + * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise. + * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace + utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe. + * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise. + * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with + unistr/u8-uctomb. + * modules/unistr/u8-strchr (Depends-on): Likewise. + * modules/unistr/u8-strrchr (Depends-on): Likewise. + * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with + unistr/u16-uctomb. + * modules/unistr/u16-strchr (Depends-on): Likewise. + * modules/unistr/u16-strrchr (Depends-on): Likewise. + +2009-03-12 Bruno Haible + + Work around select() bug on Interix 3.5. + * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1. + * lib/select.c (rpl_select): Add an implementation for Unix platforms. + * m4/select.m4: New file. + * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT. + * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT. + * modules/select (Files): Add m4/select.m4. + (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT. + * modules/nanosleep (Depends-on): Add select. + * modules/poll (Depends-on): Likewise. + * doc/posix-functions/select.texi: Mention the Interix bug. + Reported by Markus Duft . + + * lib/select.c: Renamed from lib/winsock-select.c. + * modules/select (Files): Add lib/select.c, remove + lib/winsock-select.c. + (configure.ac): Update. + +2009-03-12 Jim Meyering + + avoid gcc warnings about unused macro definitions + * lib/readtokens.c (STREQ): Remove unused definition. + * lib/xmalloc.c (SIZE_MAX): Likewise. + * lib/openat-die.c (N_): Likewise. + * lib/mountlist.c (SIZE_MAX): Remove definition. + Instead, include . + * lib/readutmp.c: Likewise. + * modules/readutmp (Depends-on): Add stdint. + * modules/mountlist (Depends-on): Add stdint. + * lib/userspec.c (ISDIGIT): Move definition into #if block where used. + 2009-03-10 Bruno Haible + Tests for module 'mbmemcasecoll'. + * modules/mbmemcasecoll-tests: New file. + * tests/test-mbmemcasecoll1.sh: New file. + * tests/test-mbmemcasecoll2.sh: New file. + * tests/test-mbmemcasecoll3.sh: New file. + * tests/test-mbmemcasecoll.c: New file. + New module 'mbmemcasecoll'. * lib/mbmemcasecoll.h: New file. * lib/mbmemcasecoll.c: New file.