X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=fd3d4a2165500f1d9bb142c20cbd6bf58fa89f2a;hb=db6d3e6221185974c47f3123caaa962d26901838;hp=ed375b6a49d537d65c21cf8e491bc8d58eeffa0b;hpb=edb19e7ea4f5977fc53c8e9ec81caed2c0a78348;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index ed375b6a4..fd3d4a216 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,297 @@ +2010-12-26 Ben Pfaff + + New module 'unigbrk/base'. + * modules/unigbrk/base: New file. + * lib/unigbrk.in.h: New file. + + New module 'unigbrk/uc-gbrk-prop'. + * lib/gen-uni-tables.c: Generate lib/unigbrk/gbrkprop.h. + * modules/unigbrk/uc-gbrk-prop: New file. + * lib/unigbrk/gbrkprop.h: New file. + * lib/unigbrk/uc-gbrk-prop.c: New file. + + New module 'unigbrk/uc-is-grapheme-break'. + * modules/unigbrk/uc-is-grapheme-break: New file. + * modules/unigbrk/uc-is-grapheme-break-tests: New file. + * lib/unigbrk/uc-is-grapheme-break.c: New file. + * tests/unigbrk/test-uc-is-grapheme-break.c: New file. + * tests/unigbrk/test-uc-is-grapheme-break.sh: New file. + * tests/unigbrk/GraphemeBreakTest.txt: New file. + + With corrections and tweaks by Bruno Haible . + +2010-12-27 Bruno Haible + + linkat test: Avoid failure on Solaris 11 2010-11. + * tests/test-linkat.c (main): Allow ENOTDIR as alternative error code. + +2010-12-27 Paul Eggert + + utimens: work around glibc rounding bug on more platforms + * lib/utimens.c (fdutimens): Work around rounding bug even if + HAVE_WORKING_UTIMES. Reported for Linux 2.4.21 by Bruno Haible in + . + +2010-12-27 Bruno Haible + + select tests: Improve comments. + * tests/test-select.c (do_select): Add comments. + +2010-12-27 Bruno Haible + + select tests: Safer way of handling timeout. + * tests/test-select.c (do_select_nowait): Zero-initialize the timeout + at every invocation. + +2010-12-27 Bruno Haible + + select tests: Use 'bool' where appropriate. + * tests/test-select.c (connect_to_socket): Change argument type to + 'bool'. + +2010-12-27 Bruno Haible + + select tests: Use existing modules. + * modules/select-tests (Depends-on): Add pipe-posix, unistd. + (configure.ac): Don't test for unistd.h. + * tests/test-select.c: Include always. Use pipe() as + declared in . + +2010-12-27 Bruno Haible + + mbrtowc: Work around a Solaris 7 bug. + * m4/mbrtowc.m4 (gl_MBRTOWC_NULL_ARG1): New macro. + (gl_MBRTOWC_NULL_ARG2): Renamed from gl_MBRTOWC_NULL_ARG. + (gl_FUNC_MBRTOWC): Update. Define MBRTOWC_NULL_ARG2_BUG instead of + MBRTOWC_NULL_ARG_BUG. Invoke gl_MBRTOWC_NULL_ARG1 and define + MBRTOWC_NULL_ARG1_BUG. + * lib/mbrtowc.c (rpl_mbrtowc): Use MBRTOWC_NULL_ARG2_BUG instead of + MBRTOWC_NULL_ARG_BUG. Handle MBRTOWC_NULL_ARG1_BUG. + * tests/test-mbrtowc.c (main): Test support of a NULL first argument. + * doc/posix-functions/mbrtowc.texi: Mention the Solaris 7 bug. + +2010-12-27 Jim Meyering + + read-file.c: tweak syntax + * lib/read-file.c (fread_file): Remove space after "*" in function + definitions. + +2010-12-27 Bruno Haible + + times test: Avoid gcc warnings on OSF/1. + * tests/test-times.c (main): Cast printf arguments from clock_t to + 'long int'. + +2010-12-27 Paul Eggert + + utimens: work around glibc rounding bug on older Linux kernels + * lib/utimens.c (fdutimens): If invoking futimesat or futimes + on Linux with a glibc whose utimes might not work, then work + around a longstanding glibc bug involving rounding rather than + truncated time stamps. Reported for Linux 2.4.21 by Bruno Haible in + . + +2010-12-26 Bruno Haible + + inet_ntop: Hide mismatch of declaration on NonStop Kernel. + * lib/arpa_inet.in.h (inet_ntop): Use _GL_CXXALIAS_SYS_CAST instead of + _GL_CXXALIAS_SYS. + Reported by Joachim Schmitz . + +2010-12-26 Bruno Haible + + inet_ntop, inet_pton: Ensure declaration on NonStop Kernel. + * lib/arpa_inet.in.h: On NonStop Kernel, include also . + * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Likewise. + * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Include also when + looking for the declaration. + * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise. + * doc/posix-functions/inet_ntop.texi: Document the NonStop Kernel + problem. + * doc/posix-functions/inet_pton.texi: Likewise. + +2010-12-26 Bruno Haible + + arpa_inet: Use the common idioms with C++ support. + * lib/arpa_inet.in.h: Include c++defs.h. + (inet_ntop, inet_pton): Declare using the macros with C++ namespace + support. + * modules/arpa_inet (Depends-on): Add c++defs. + (Makefile.am): Substitute the contents of c++defs.h. + * modules/arpa_inet-tests (Depends-on): Add arpa_inet-c++-tests. + * modules/arpa_inet-c++-tests: New file. + * tests/test-arpa_inet-c++.cc: New file. + +2010-12-25 Bruno Haible + + Fix more C++ link errors on Solaris 8. + * modules/fcntl-h-c++-tests (test_fcntl_h_c___LDADD): Add + $(LIB_EACCESS). + * modules/stdio-c++-tests (test_stdio_c___LDADD): Likewise. + * modules/stdlib-c++-tests (test_stdlib_c___LDADD): Likewise. + * modules/sys_ioctl-c++-tests (test_sys_ioctl_c___LDADD): Likewise. + * modules/wchar-c++-tests (test_wchar_c___LDADD): Likewise. + * modules/wctype-c++-tests (test_wctype_c___LDADD): Likewise. + +2010-12-25 Bruno Haible + + printf-posix: Fix link error when a non-GCC compiler is used. + * lib/stdio.in.h (printf): When not using GCC, override printf + correctly. + Reported by Joachim Schmitz . + +2010-12-25 Bruno Haible + + strerror_r-posix: Update doc. + * doc/posix-functions/strerror_r.texi: Update doc about the return + value. See . + +2010-12-25 Paul Eggert + + utimens: simplify the logic of the previous change + * m4/utimes.m4 (gl_FUNC_UTIMES): Simplify the logic a bit. + This should not affect whether the test succeeds or fails. + + utimens: configure better on hosts with NFS clock skew + * m4/utimes.m4 (gl_FUNC_UTIMES): Don't assume that utimes (f, NULL) + uses the clock of the local host. It might use the clock of the + NFS server. Reported for Linux 2.4.21 client by Bruno Haible in + . + +2010-12-25 Bruno Haible + + ptsname test: Avoid failure on Solaris. + * tests/test-ptsname.c (main): For Solaris, use the recommended way to + open a pseudo-terminal; don't use BSD-style ptys. + * doc/posix-functions/ptsname.texi: Document the limitation on Solaris. + +2010-12-25 Bruno Haible + + ptsname: Avoid ERANGE failure on some systems. + * lib/ptsname.c (buffer): Increase size. + +2010-12-25 Bruno Haible + + rename, renameat: Avoid test failures at NFS mounted locations. + * tests/test-rename.h (assert_nonexistent): Remove the old directory, + so that subsequent mkdir calls succeed. + +2010-12-25 Bruno Haible + + iswblank: Fix C++ link error on Solaris 8. + * lib/wctype.in.h (iswblank): Declare using _GL_FUNCDECL_RPL or + _GL_FUNCDECL_SYS. + +2010-12-25 Bruno Haible + + unistd: Fix C++ link error on Solaris 8. + * modules/unistd-c++-tests (test_unistd_c___LDADD): Add $(LIB_EACCESS). + +2010-12-25 Bruno Haible + + readlink doc: Mention an old glibc bug. + * doc/posix-functions/readlink.texi: Mention glibc 2.4 bug (BZ #2450). + +2010-12-25 Bruno Haible + + fcntl-h: Fix for use of C++ on glibc systems. + * lib/fcntl.in.h: Include before include_next + also on glibc systems in C++ mode. + Reported by Gary V. Vaughan . + +2010-12-25 Bruno Haible + + roundl-ieee: Make it work on OSF/1 5.1 with cc. + * modules/roundl-ieee (Depends-on): Add floorl-ieee, ceill-ieee. + +2010-12-25 Bruno Haible + + truncl-ieee: Make it work on OSF/1 5.1 with cc. + * doc/posix-functions/truncl.texi: Mention the OSF/1 5.1 bug. + * m4/truncl.m4 (gl_FUNC_TRUNCL): If gl_FUNC_TRUNCL_IEEE is also used, + test whether truncl works according to ISO C 99 with IEC 60559. + * m4/truncl-ieee.m4: New file. + * modules/truncl-ieee (Files): Add it and m4/minus-zero.m4, + m4/signbit.m4. + (configure.ac): Invoke gl_FUNC_TRUNCL_IEEE. + +2010-12-25 Bruno Haible + + ceill-ieee: Make it work on OSF/1 5.1 with cc. + * doc/posix-functions/ceill.texi: Mention the OSF/1 5.1 bug. + * m4/ceill.m4 (gl_FUNC_CEILL): If gl_FUNC_CEILL_IEEE is also used, + test whether ceill works according to ISO C 99 with IEC 60559. + * m4/ceill-ieee.m4: New file. + * modules/ceill-ieee (Files): Add it and m4/minus-zero.m4, + m4/signbit.m4. + (configure.ac): Invoke gl_FUNC_CEILL_IEEE. + +2010-12-25 Bruno Haible + + Ensure all prerequisites of are included. + * m4/btowc.m4 (gl_FUNC_BTOWC): Include , , + before . + * m4/mbrlen.m4 (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, + gl_MBRLEN_NUL_RETVAL): Likewise. + * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK, + gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL, + AC_FUNC_MBRTOWC): Likewise. + * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise. + * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise. + * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. + * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL): + Likewise. + * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise. + * m4/wchar_h.m4 (gl_WCHAR_H_INLINE_OK): Likewise. + (gl_WCHAR_H): Improve comments. + * m4/wctype_h.m4 (gl_WCTYPE_H): Likewise. + +2010-12-25 Bruno Haible + + strtok_r: Fix C syntax error in autoconf macro. + * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Don't use UTF-8 encoded U+00A0 + characters in test program. + +2010-12-24 Bruno Haible + + ceil, trunc, round: Fix gcc warnings. + * lib/ceil.c (MIN): Undefine before redefining. + * lib/trunc.c (MIN): Likewise. + * lib/round.c (MIN): Likewise. + Include first. + +2010-12-24 Bruno Haible + + select tests: Avoid failures on OSF/1 5.1. + * tests/test-select.c (test_accept_first, test_socket_pair): Ignore + failure of closing the last socket; it may fail with ECONNRESET. + +2010-12-24 Eric Blake + + stdint: avoid HP-UX 10.20 preprocessor bug + * lib/stdint.in.h (INT64_MAX, UINT64_MAX): Check via #ifdef rather + than #if. + * tests/test-floor2.c (main): Likewise. + Reported by Peter O'Gorman. + + pipe: make obsoletion transition easier + * lib/pipe.h: Restore file as thin shim around "spawn-pipe.h". + * modules/pipe (Files): Include revived file. + (Include): Drop reference, to mirror getdate's behavior. + +2010-12-24 Bruno Haible + + sys_socket: Hide mismatch of declarations on NonStop Kernel. + * lib/sys_socket.in.h (connect, bind, sendto, setsockopt): Use + _GL_CXXALIAS_SYS_CAST instead of _GL_CXXALIAS_SYS. + Reported by Joachim Schmitz . + +2010-12-24 Bruno Haible + + gethostname: Ensure declaration on NonStop Kernel. + * lib/unistd.in.h: Include also on NonStop Kernel systems. + Reported by Joachim Schmitz . + 2010-12-24 Bruno Haible sys_select: Ensure all necessary types on NonStop Kernel.