X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=bd9b2e9c403028b41f4c464eee4184ae2030588f;hb=fb7fde6f658ac18b7ab7ca61dca9a290cc8c3348;hp=d2b371259c8570ace960b1cf92e4dab9e27a5092;hpb=d90f751e2a857949f6eca74876dc0921bffa01d9;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index d2b371259..bd9b2e9c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,790 @@ +2007-08-06 Simon Josefsson + + * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+. + +2007-07-31 Bruno Haible + + * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX + are defined by (as opposed to , as on Dragonfly). + Reported by Joerg Sonnenberger . + +2007-07-31 Bruno Haible + + * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag. + Suggested by Joerg Sonnenberger . + +2007-07-30 Bruno Haible + + * modules/base64 (License): Use the synonymous term "LGPLv2+". + * modules/c-ctype (License): Likewise. + * modules/c-strcase (License): Likewise. + * modules/check-version (License): Likewise. + * modules/iconv (License): Likewise. + * modules/iconv_open (License): Likewise. + * modules/read-file (License): Likewise. + * modules/striconv (License): Likewise. + * modules/strverscmp (License): Likewise. + * modules/vasprintf (License): Likewise. + * modules/crypto/des (License): Likewise. + * modules/crypto/gc (License): Likewise. + * modules/crypto/gc-arcfour (License): Likewise. + * modules/crypto/gc-arctwo (License): Likewise. + * modules/crypto/gc-des (License): Likewise. + * modules/crypto/gc-hmac-md5 (License): Likewise. + * modules/crypto/gc-hmac-sha1 (License): Likewise. + * modules/crypto/gc-md2 (License): Likewise. + * modules/crypto/gc-md4 (License): Likewise. + * modules/crypto/gc-md5 (License): Likewise. + * modules/crypto/gc-pbkdf2-sha1 (License): Likewise. + * modules/crypto/gc-random (License): Likewise. + * modules/crypto/gc-rijndael (License): Likewise. + * modules/crypto/gc-sha1 (License): Likewise. + * modules/crypto/md2 (License): Likewise. + * modules/crypto/md4 (License): Likewise. + +2007-07-30 Jim Meyering + + * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory, + set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows + it has valid stat data. This bug would cause du not to count the + sizes of inaccessible directories. + Patch by Bryan Mason , via Jose Maria Plans + in . + +2007-07-25 Peter O'Gorman + Bruno Haible + + * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next + really works. Needed because AIX 4.3 "xlc -E" doesn't understand + #include_next, gives a diagnostic about it, but reports no error in + the exit code. + Reported by Gary V. Vaughan . + +2007-07-24 Ben Pfaff + + Improve name: "count-one-bits" is better than "popcount". + * MODULES.html.sh: Update name. + * lib/popcount.h: Renamed lib/count-one-bits.h. + (popcount): Renamed count_one_bits. + (popcountl): Renamed count_one_bits_l. + (popcountll): Renamed count_one_bits_ll. + * m4/popcount.m4: Renamed m4/count-one-bits.m4. + * modules/popcount: Renamed module/count-one-bits. + * modules/popcount-tests: Renamed module/count-one-bits-tests. + * tests/test-popcount.c: Renamed tests/test-count-one-bits.c. + +2007-07-23 Ben Pfaff + + * lib/popcount.h (popcount32): Reduce size of constants, to allow + better code generation, and add U to large constants to avoid + warnings, in non-GCC case. + Suggested by Bruno Haible. + +2007-07-23 Ben Pfaff + + * lib/popcount.h: Use verify_true instead of if...abort. + * modules/popcount: Depend on verify module. + Suggested by Jim Meyering. + +2007-07-23 Bruno Haible + + * gnulib-tool (func_import): Create a .cvsignore file also when the + directory is not yet in CVS but the toplevel directory is. When + creating a .cvsignore file, add ".deps" and ".dirstamp" to it. + Reported by Karl Berry. + +2007-07-22 Ben Pfaff + + * lib/popcount.h: Use faster, branchless algorithm for non-GCC + case. + Suggested by Eric Blake. + +2007-07-22 Ben Pfaff + + New module: popcount. + * MODULES.html.sh: Add popcount. + * modules/popcount: New file. + * modules/popcount-tests: New file. + * tests/test-popcount.c: New file. + * lib/popcount.h: New file. + * m4/popcount.m4: New file. + +2007-07-22 Paul Eggert + + * build-aux/announce-gen: Update to GPLv3. + + * build-aux/config.guess: Update from config. + +2007-07-21 Bruno Haible + + * lib/error.c (_) [ENABLE_NLS]: Define to gettext. + * lib/verror.c (_) [ENABLE_NLS]: Likewise. + +2007-07-20 Jim Meyering + + * check-module: Diagnose a self-dependency. + +2007-07-19 Bruno Haible + + * gnulib-tool (func_import): Don't abort if pobase or po_domain is + empty. + Reported by Eric Blake. + +2007-07-18 Bruno Haible + + * gnulib-tool: New options --po-base, --po-domain. + (func_usage): Document them. + (pobase, po_domain): New variables. + (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining + DEFAULT_TEXT_DOMAIN. + (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions. + (func_import): Consider pobase and po_domain. Create a po/ directory. + (func_create_testdir): Set pobase and po_domain to empty. + * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1. + * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1. + +2007-07-18 Bruno Haible + + * gnulib-tool (func_get_automake_snippet): Synthesize also an + EXTRA_DIST augmentation for files in build-aux/. + +2007-07-16 Bruno Haible + + * modules/lseek (License): Use the synonymous term "LGPLv2+". + * modules/getdelim (License): Likewise. + +2007-07-16 Yoann Vandoorselaere + + * modules/arpa_inet (License): Use the synonymous term LGPLv2+. + * modules/d-type (License): Likewise. + * modules/extensions (License): Likewise. + * modules/fnmatch (License): Likewise. + * modules/fseeko (License): Likewise. + * modules/getaddrinfo (License): Likewise. + * modules/getline (License): Likewise. + * modules/getlogin_r (License): Likewise. + * modules/getpass (License): Likewise. + * modules/gettimeofday (License): Likewise. + * modules/glob (License): Likewise. + * modules/inet_ntop (License): Likewise. + * modules/malloc (License): Likewise. + * modules/malloca (License): Likewise. + * modules/memmem (License): Likewise. + * modules/mempcpy (License): Likewise. + * modules/memset (License): Likewise. + * modules/minmax (License): Likewise. + * modules/mktime (License): Likewise. + * modules/netinet_in (License): Likewise. + * modules/pathmax (License): Likewise. + * modules/poll (License): Likewise. + * modules/regex (License): Likewise. + * modules/snprintf (License): Likewise. + * modules/stdbool (License): Likewise. + * modules/stdint (License): Likewise. + * modules/stdio (License): Likewise. + * modules/strcase (License): Likewise. + * modules/strcasestr (License): Likewise. + * modules/strdup (License): Likewise. + * modules/string (License): Likewise. + * modules/strndup (License): Likewise. + * modules/strnlen (License): Likewise. + * modules/strpbrk (License): Likewise. + * modules/strptime (License): Likewise. + * modules/strsep (License): Likewise. + * modules/sys_select (License): Likewise. + * modules/sys_socket (License): Likewise. + * modules/sys_stat (License): Likewise. + * modules/sys_time (License): Likewise. + * modules/time (License): Likewise. + * modules/time_r (License): Likewise. + * modules/timegm (License): Likewise. + * modules/unistd (License): Likewise. + * modules/vsnprintf (License): Likewise. + * modules/wctype (License): Likewise. + +2007-07-16 Ralf Wildenhues + + * modules/argz (License): LGPLv2+. + +2007-07-15 Karl Berry + + * doc/gnulib.texi: revise node structure per new fdl.texi. + +2007-07-14 Bruno Haible + + * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to + the output file. + * lib/uniname/uninames.h: Regenerated. + +2007-07-14 Karl Berry + + * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently + omitting sectioning and index commands. + +2007-07-13 Bruno Haible + + New gnulib-tool option --more-symlinks. + * gnulib-tool (func_usage): Document --more-symlinks. + (do_copyrights): New variable. + Recognize option --more-symlinks. + (func_import): Don't add a copyright notice transform to + sed_transform_lib_file if do_copyrights is empty. + +2007-07-13 Bruno Haible + + * lib/vasnprintf.c (decimal_point_char): Define also if + (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE) + && !NEED_PRINTF_DIRECTIVE_A. + Reported by Clemens Koller via + Gary V. Vaughan . + +2007-07-13 Paul Eggert + + * lib/inttypes_.h: Undo previous change, since it was fixed + in a different way in the 2007-07-02 fix to m4/inttypes.m4. + +2007-07-13 Bruno Haible + + * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was + misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H. + +2007-07-13 Jim Meyering + + df: Don't fail for Tru64's "file-on-file mount". + * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs, + so we fall through and use statfs instead. Details here: + + Reported by Albert Chin. + +2007-07-13 Bruno Haible + + * modules/alloca-opt (License): Use the synonymous term "LGPLv2+". + * modules/configmake (License): Likewise. + * modules/gettext (License): Likewise. + * modules/gettext-h (License): Likewise. + * modules/include_next (License): Likewise. + * modules/link-warning (License): Likewise. + * modules/localcharset (License): Likewise. + * modules/localename (License): Likewise. + * modules/lock (License): Likewise. + * modules/relocatable-lib-lgpl (License): Likewise. + * modules/size_max (License): Likewise. + * modules/vasnprintf (License): Likewise. + * modules/wchar (License): Likewise. + * modules/xsize (License): Likewise. + +2007-07-13 Bruno Haible + + * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL. + (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+". + +2007-07-12 Bruno Haible + + * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations + in the modules files. + +2007-07-11 Karl Berry + + * MODULES.html.sh (func_module): use + sed -e '\|^'"${includefile}"'$|d' + instead of /.../d, to avoid errors on $includefile's containing /. + +2007-07-10 Sergey Poznyakoff + + * gnulib-tool (func_import): Avoid duplication of --avoid + statements + (func_dest_tmpfilename,func_create_testdir): Translate `-' in file + names to `_' in variable names. + +2007-07-10 Eric Blake + + * lib/version-etc.c (version_etc_va): Default to GPLv3+. + * NEWS: Document this change. + +2007-07-08 Bruno Haible + + Update to Unicode 5.0. + * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD, + U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603, + U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3, + U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F, + U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922, + U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03, + U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA, + U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826, + U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A, + U+10A3F, U+1D242..U+1D244. + (nonspacing_table_ind): Update. + (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to + U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F. + +2007-07-08 Bruno Haible + + Update to Unicode 5.0. + * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the + code transform. Extend the name index field of unicode_name_to_code and + unicode_code_to_name from 16 to 24 bits. + * lib/uniname/uniname.c (unicode_character_name, + unicode_name_character): Add the range 0x12xxx to the code transform. + * lib/uniname/uninames.h: Regenerated. + * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0. + +2007-07-07 Bruno Haible + + * modules/wcwidth-tests: New file. + * tests/test-wcwidth.c: New file. + + Work around MacOS X wcwidth() bug. + * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug. + * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h. + (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the + original wcwidth in non-UTF-8 locales. + * modules/wcwidth (Depends-on): Add localcharset, streq, + uniwidth/width. + * doc/functions/wcwidth.texi: Update. + +2007-07-07 Bruno Haible + + * lib/wchar_.h: Include the GL_LINK_WARNING macro. + (wcwidth): New declaration. + * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New + macros. + (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty + here. Prepare for creating unconditionally. + * modules/wchar (Depends-on): Add link-warning. + (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH, + REPLACE_WCWIDTH, and GL_LINK_WARNING. + * lib/wcwidth.h: Remove file. + * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set + HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H. + * modules/wcwidth (Files): Remove lib/wcwidth.h. + (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR. + (Include): Replace wcwidth.h with . + * lib/wcwidth.c: Include instead of wcwidth.h. + * lib/mbchar.h: Don't include wcwidth.h. + * lib/mbswidth.c: Likewise. + * NEWS: Mention the change. + +2007-07-07 Bruno Haible + + * lib/wcwidth.c: New file, extracted from lib/wcwidth.h. + * lib/wcwidth.h: Don't include wctype.h. Replace inline function + definition with an external declaration. + * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not + defined as a function. Remove AC_C_INLINE requirement. + * modules/wcwidth (Files): Add lib/wcwidth.c. + (Makefile.am): Remove redundant statement. + +2007-07-07 Bruno Haible + + * MODULES.html.sh (Unicode string functions): Add the new modules. + + * tests/uniwidth/test-u32-strwidth.c: New file. + * modules/uniwidth/u32-strwidth-tests: New file. + + * lib/uniwidth/u32-strwidth.c: New file. + * modules/uniwidth/u32-strwidth: New file. + + * tests/uniwidth/test-u16-strwidth.c: New file. + * modules/uniwidth/u16-strwidth-tests: New file. + + * lib/uniwidth/u16-strwidth.c: New file. + * modules/uniwidth/u16-strwidth: New file. + + * tests/uniwidth/test-u8-strwidth.c: New file. + * modules/uniwidth/u8-strwidth-tests: New file. + + * lib/uniwidth/u8-strwidth.c: New file. + * modules/uniwidth/u8-strwidth: New file. + + * tests/uniwidth/test-u32-width.c: New file. + * modules/uniwidth/u32-width-tests: New file. + + * lib/uniwidth/u32-width.c: New file. + * modules/uniwidth/u32-width: New file. + + * tests/uniwidth/test-u16-width.c: New file. + * modules/uniwidth/u16-width-tests: New file. + + * lib/uniwidth/u16-width.c: New file. + * modules/uniwidth/u16-width: New file. + + * tests/uniwidth/test-u8-width.c: New file. + * modules/uniwidth/u8-width-tests: New file. + + * lib/uniwidth/u8-width.c: New file. + * modules/uniwidth/u8-width: New file. + + * tests/uniwidth/test-uc_width.c: New file. + * modules/uniwidth/width-tests: New file. + + * lib/uniwidth/width.c: New file, from GNU libiconv. + * lib/uniwidth/cjk.h: New file, from GNU libiconv. + * modules/uniwidth/width: New file. + + * lib/uniwidth.h: New file, from GNU libiconv. + * modules/uniwidth/base: New file. + +2007-07-07 Bruno Haible + + * lib/uniname.h: New file, from GNU gettext. + * lib/uniname/gen-uninames.lisp: New file, from GNU gettext. + * lib/uniname/uninames.h: New file, from GNU gettext. + * lib/uniname/uniname.c: New file, from GNU gettext. + * tests/uniname/test-uninames.sh: New file. + * tests/uniname/test-uninames.c: New file, from GNU gettext. + * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext. + * modules/uniname/base: New file. + * modules/uniname/uniname: New file. + * modules/uniname/uniname-tests: New file. + * MODULES.html.sh (Unicode string functions): Add the new modules. + +2007-07-06 Bruno Haible + + * doc/Makefile (TEXI2HTML): Specify a --reference-limit. + +2007-07-06 Bruno Haible + + * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than + a split double-inclusion guard. Needed for cygwin, where + includes which includes which + include . + Reported by Eric Blake. + +2007-07-06 Eric Blake + + Fix testing canonicalize on cygwin. + * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD): + Revert patch from 2007-06-19. + * tests/test-canonicalize-lgpl.c (main): Instead, skip test when + canonicalize module is also in use. + * tests/test-canonicalize.c: New file. + * tests/test-canonicalize.sh: Likewise. + * modules/canonicalize-tests: Likewise. + +2007-07-06 Jim Meyering + + * lib/getugroups.c (getugroups): Detect getgrent failure. + Adjust comment to reflect reality: this function may return -1. + +2007-07-05 Sergey Poznyakoff + + * build-aux/bootstrap (TP_URL,get_translations): Update to use + the new TP address. + (usage): Fix typo + (gnulib_mk): New variable. + +2007-07-05 Jim Meyering + + Don't let endgrent clobber errno, no matter how improbable. + * lib/getugroups.c (getugroups): Save and restore errno around + endgrent call. + + Close the group DB even when failing with 2^31 or more members. + * lib/getugroups.c (getugroups): Don't return without calling endgrent. + +2007-07-04 Jim Meyering + + * lib/getugroups.h: New file. + * lib/getugroups.c: Include "getugroups.h". + Remove uses of "register" keyword. + Move local variable, "cp", down into scope where used. + Give "username" parameter the "const" attribute. + * modules/getugroups (Files): Add lib/getugroups.h + +2007-07-04 Karl Berry + + * MODULES.html.sh (func_all_modules): Complete rename of + gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0. + +2007-07-02 Bruno Haible + + * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++ + mode, when inttypes.h comes from gnulib. + Reported by Joel E. Denny . + +2007-07-02 Simon Josefsson + + * NEWS: Mention lgpl module name change. + + * modules/lgpl-2.1: Renamed from lgpl. + + * NEWS: Mention gpl module name change. + + * modules/gpl-3.0: New file, based on gpl-2.0. + + * modules/gpl-2.0: Renamed from gpl. + + * modules/gpl: Fix filename, doc/gpl.texi is now found at + doc/gpl-2.0.texi. + +2007-07-02 Paul Eggert + + * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]: + #define __STDC_LIMIT_MACROS temporarily while including + , so that __STDC_LIMIT_MACROS is defined. + Problem reported by Joel E. Denny in + . + +2007-07-01 Bruno Haible + + * lib/unistdio.h: New file. + * lib/unistdio/u-asnprintf.h: New file. + * lib/unistdio/u-asprintf.h: New file. + * lib/unistdio/u-printf-args.c: New file. + * lib/unistdio/u-printf-args.h: New file. + * lib/unistdio/u-printf-parse.h: New file. + * lib/unistdio/u-snprintf.h: New file. + * lib/unistdio/u-sprintf.h: New file. + * lib/unistdio/u-vasprintf.h: New file. + * lib/unistdio/u-vsnprintf.h: New file. + * lib/unistdio/u-vsprintf.h: New file. + * lib/unistdio/ulc-asnprintf.c: New file. + * lib/unistdio/ulc-asprintf.c: New file. + * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c. + * lib/unistdio/ulc-printf-parse.c: New file. + * lib/unistdio/ulc-snprintf.c: New file. + * lib/unistdio/ulc-sprintf.c: New file. + * lib/unistdio/ulc-vasnprintf.c: New file. + * lib/unistdio/ulc-vasprintf.c: New file. + * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c. + * lib/unistdio/ulc-vsnprintf.c: New file. + * lib/unistdio/ulc-vsprintf.c: New file. + * lib/unistdio/u8-asnprintf.c: New file. + * lib/unistdio/u8-asprintf.c: New file. + * lib/unistdio/u8-printf-parse.c: New file. + * lib/unistdio/u8-snprintf.c: New file. + * lib/unistdio/u8-sprintf.c: New file. + * lib/unistdio/u8-vasnprintf.c: New file. + * lib/unistdio/u8-vasprintf.c: New file. + * lib/unistdio/u8-vsnprintf.c: New file. + * lib/unistdio/u8-vsprintf.c: New file. + * lib/unistdio/u8-u8-asnprintf.c: New file. + * lib/unistdio/u8-u8-asprintf.c: New file. + * lib/unistdio/u8-u8-snprintf.c: New file. + * lib/unistdio/u8-u8-sprintf.c: New file. + * lib/unistdio/u8-u8-vasnprintf.c: New file. + * lib/unistdio/u8-u8-vasprintf.c: New file. + * lib/unistdio/u8-u8-vsnprintf.c: New file. + * lib/unistdio/u8-u8-vsprintf.c: New file. + * lib/unistdio/u16-asnprintf.c: New file. + * lib/unistdio/u16-asprintf.c: New file. + * lib/unistdio/u16-printf-parse.c: New file. + * lib/unistdio/u16-snprintf.c: New file. + * lib/unistdio/u16-sprintf.c: New file. + * lib/unistdio/u16-vasnprintf.c: New file. + * lib/unistdio/u16-vasprintf.c: New file. + * lib/unistdio/u16-vsnprintf.c: New file. + * lib/unistdio/u16-vsprintf.c: New file. + * lib/unistdio/u16-u16-asnprintf.c: New file. + * lib/unistdio/u16-u16-asprintf.c: New file. + * lib/unistdio/u16-u16-snprintf.c: New file. + * lib/unistdio/u16-u16-sprintf.c: New file. + * lib/unistdio/u16-u16-vasnprintf.c: New file. + * lib/unistdio/u16-u16-vasprintf.c: New file. + * lib/unistdio/u16-u16-vsnprintf.c: New file. + * lib/unistdio/u16-u16-vsprintf.c: New file. + * lib/unistdio/u32-asnprintf.c: New file. + * lib/unistdio/u32-asprintf.c: New file. + * lib/unistdio/u32-printf-parse.c: New file. + * lib/unistdio/u32-snprintf.c: New file. + * lib/unistdio/u32-sprintf.c: New file. + * lib/unistdio/u32-vasnprintf.c: New file. + * lib/unistdio/u32-vasprintf.c: New file. + * lib/unistdio/u32-vsnprintf.c: New file. + * lib/unistdio/u32-vsprintf.c: New file. + * lib/unistdio/u32-u32-asnprintf.c: New file. + * lib/unistdio/u32-u32-asprintf.c: New file. + * lib/unistdio/u32-u32-snprintf.c: New file. + * lib/unistdio/u32-u32-sprintf.c: New file. + * lib/unistdio/u32-u32-vasnprintf.c: New file. + * lib/unistdio/u32-u32-vasprintf.c: New file. + * lib/unistdio/u32-u32-vsnprintf.c: New file. + * lib/unistdio/u32-u32-vsprintf.c: New file. + * tests/unistdio/test-ulc-asnprintf1.c: New file. + * tests/unistdio/test-ulc-asnprintf1.h: New file. + * tests/unistdio/test-ulc-printf1.h: New file. + * tests/unistdio/test-ulc-vasnprintf1.c: New file. + * tests/unistdio/test-ulc-vasnprintf2.c: New file. + * tests/unistdio/test-ulc-vasnprintf2.sh: New file. + * tests/unistdio/test-ulc-vasnprintf3.c: New file. + * tests/unistdio/test-ulc-vasnprintf3.sh: New file. + * tests/unistdio/test-ulc-vasprintf1.c: New file. + * tests/unistdio/test-ulc-vsnprintf1.c: New file. + * tests/unistdio/test-ulc-vsprintf1.c: New file. + * tests/unistdio/test-u8-asnprintf1.c: New file. + * tests/unistdio/test-u8-asnprintf1.h: New file. + * tests/unistdio/test-u8-printf1.h: New file. + * tests/unistdio/test-u8-vasnprintf1.c: New file. + * tests/unistdio/test-u8-vasnprintf2.c: New file. + * tests/unistdio/test-u8-vasnprintf2.sh: New file. + * tests/unistdio/test-u8-vasnprintf3.c: New file. + * tests/unistdio/test-u8-vasnprintf3.sh: New file. + * tests/unistdio/test-u8-vasprintf1.c: New file. + * tests/unistdio/test-u8-vsnprintf1.c: New file. + * tests/unistdio/test-u8-vsprintf1.c: New file. + * tests/unistdio/test-u16-asnprintf1.c: New file. + * tests/unistdio/test-u16-asnprintf1.h: New file. + * tests/unistdio/test-u16-printf1.h: New file. + * tests/unistdio/test-u16-vasnprintf1.c: New file. + * tests/unistdio/test-u16-vasnprintf2.c: New file. + * tests/unistdio/test-u16-vasnprintf2.sh: New file. + * tests/unistdio/test-u16-vasnprintf3.c: New file. + * tests/unistdio/test-u16-vasnprintf3.sh: New file. + * tests/unistdio/test-u16-vasprintf1.c: New file. + * tests/unistdio/test-u16-vsnprintf1.c: New file. + * tests/unistdio/test-u16-vsprintf1.c: New file. + * tests/unistdio/test-u32-asnprintf1.c: New file. + * tests/unistdio/test-u32-asnprintf1.h: New file. + * tests/unistdio/test-u32-printf1.h: New file. + * tests/unistdio/test-u32-vasnprintf1.c: New file. + * tests/unistdio/test-u32-vasnprintf2.c: New file. + * tests/unistdio/test-u32-vasnprintf2.sh: New file. + * tests/unistdio/test-u32-vasnprintf3.c: New file. + * tests/unistdio/test-u32-vasnprintf3.sh: New file. + * tests/unistdio/test-u32-vasprintf1.c: New file. + * tests/unistdio/test-u32-vsnprintf1.c: New file. + * tests/unistdio/test-u32-vsprintf1.c: New file. + * modules/unistdio/base: New file. + * modules/unistdio/u-printf-args: New file. + * modules/unistdio/ulc-asnprintf: New file. + * modules/unistdio/ulc-asprintf: New file. + * modules/unistdio/ulc-fprintf: New file. + * modules/unistdio/ulc-printf-parse: New file. + * modules/unistdio/ulc-snprintf: New file. + * modules/unistdio/ulc-sprintf: New file. + * modules/unistdio/ulc-vasnprintf: New file. + * modules/unistdio/ulc-vasprintf: New file. + * modules/unistdio/ulc-vfprintf: New file. + * modules/unistdio/ulc-vsnprintf: New file. + * modules/unistdio/ulc-vsprintf: New file. + * modules/unistdio/u8-asnprintf: New file. + * modules/unistdio/u8-asprintf: New file. + * modules/unistdio/u8-printf-parse: New file. + * modules/unistdio/u8-snprintf: New file. + * modules/unistdio/u8-sprintf: New file. + * modules/unistdio/u8-vasnprintf: New file. + * modules/unistdio/u8-vasprintf: New file. + * modules/unistdio/u8-vsnprintf: New file. + * modules/unistdio/u8-vsprintf: New file. + * modules/unistdio/u8-u8-asnprintf: New file. + * modules/unistdio/u8-u8-asprintf: New file. + * modules/unistdio/u8-u8-snprintf: New file. + * modules/unistdio/u8-u8-sprintf: New file. + * modules/unistdio/u8-u8-vasnprintf: New file. + * modules/unistdio/u8-u8-vasprintf: New file. + * modules/unistdio/u8-u8-vsnprintf: New file. + * modules/unistdio/u8-u8-vsprintf: New file. + * modules/unistdio/u16-asnprintf: New file. + * modules/unistdio/u16-asprintf: New file. + * modules/unistdio/u16-printf-parse: New file. + * modules/unistdio/u16-snprintf: New file. + * modules/unistdio/u16-sprintf: New file. + * modules/unistdio/u16-vasnprintf: New file. + * modules/unistdio/u16-vasprintf: New file. + * modules/unistdio/u16-vsnprintf: New file. + * modules/unistdio/u16-vsprintf: New file. + * modules/unistdio/u16-u16-asnprintf: New file. + * modules/unistdio/u16-u16-asprintf: New file. + * modules/unistdio/u16-u16-snprintf: New file. + * modules/unistdio/u16-u16-sprintf: New file. + * modules/unistdio/u16-u16-vasnprintf: New file. + * modules/unistdio/u16-u16-vasprintf: New file. + * modules/unistdio/u16-u16-vsnprintf: New file. + * modules/unistdio/u16-u16-vsprintf: New file. + * modules/unistdio/u32-asnprintf: New file. + * modules/unistdio/u32-asprintf: New file. + * modules/unistdio/u32-printf-parse: New file. + * modules/unistdio/u32-snprintf: New file. + * modules/unistdio/u32-sprintf: New file. + * modules/unistdio/u32-vasnprintf: New file. + * modules/unistdio/u32-vasprintf: New file. + * modules/unistdio/u32-vsnprintf: New file. + * modules/unistdio/u32-vsprintf: New file. + * modules/unistdio/u32-u32-asnprintf: New file. + * modules/unistdio/u32-u32-asprintf: New file. + * modules/unistdio/u32-u32-snprintf: New file. + * modules/unistdio/u32-u32-sprintf: New file. + * modules/unistdio/u32-u32-vasnprintf: New file. + * modules/unistdio/u32-u32-vasprintf: New file. + * modules/unistdio/u32-u32-vsnprintf: New file. + * modules/unistdio/u32-u32-vsprintf: New file. + * modules/unistdio/ulc-asnprintf-tests: New file. + * modules/unistdio/ulc-vasnprintf-tests: New file. + * modules/unistdio/ulc-vasprintf-tests: New file. + * modules/unistdio/ulc-vsnprintf-tests: New file. + * modules/unistdio/ulc-vsprintf-tests: New file. + * modules/unistdio/u8-asnprintf-tests: New file. + * modules/unistdio/u8-vasnprintf-tests: New file. + * modules/unistdio/u8-vasprintf-tests: New file. + * modules/unistdio/u8-vsnprintf-tests: New file. + * modules/unistdio/u8-vsprintf-tests: New file. + * modules/unistdio/u16-asnprintf-tests: New file. + * modules/unistdio/u16-vasnprintf-tests: New file. + * modules/unistdio/u16-vasprintf-tests: New file. + * modules/unistdio/u16-vsnprintf-tests: New file. + * modules/unistdio/u16-vsprintf-tests: New file. + * modules/unistdio/u32-asnprintf-tests: New file. + * modules/unistdio/u32-vasnprintf-tests: New file. + * modules/unistdio/u32-vasprintf-tests: New file. + * modules/unistdio/u32-vsnprintf-tests: New file. + * modules/unistdio/u32-vsprintf-tests: New file. + * MODULES.html.sh (Unicode string functions): Add the new modules. + +2007-07-01 Bruno Haible + + * lib/sprintf.c (sprintf): Limit the available length estimation, + to avoid address wraparound. + * lib/vsprintf.c (vsprintf): Likewise. + * modules/sprintf-posix (Dependencies): Add stdint. + * modules/vsprintf-posix (Dependencies): Likewise. + +2007-07-01 Bruno Haible + + * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle + Windows PATH as well. Conservative double-quoting. Comments. + +2007-07-01 Bruno Haible + Eric Blake + Ralf Wildenhues + + * gnulib-tool (self_abspathname): Fix algorithm to cope with + empty components in $PATH, denoting '.'. + +2007-07-01 Ralf Wildenhues + + * gnulib-tool: Fix indentation. + (func_create_megatestdir): Likewise. + Report by Bruno Haible. + +2007-06-30 Ralf Wildenhues + + Sync from Automake. + * build-aux/gnupload: Fix shell portability issues with for loops. + Report by Karl Berry. + +2007-06-29 Simon Josefsson + + * build-aux/maint.mk (POURL): Use translationproject.org. + +2007-06-27 Simon Josefsson + Bruno Haible + + * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET + before using HAVE_WS2TCPIP_H. Check for gai_strerror through an + explicit link test, rather than AC_REPLACE_FUNCS - for mingw. + (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using + HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H. + +2007-06-27 Bruno Haible + + * build-aux/config.rpath: Upgrade to libtool-1.5.24. + * build-aux/config.libpath: Upgrade to libtool-1.5.24. + +2007-06-26 Karl Berry + + * MODULES.html.sh: remove xreadlink-with-size. + 2007-06-23 Paul Eggert * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a