* sysdeps/powerpc/fpu/libm-test-ulps: Update by Jakub.
[glibc.git] / libidn / ChangeLog
blobf9303743fcfefc0e0527fe289b71c3bdfa61389e
1 2005-03-08  Paul Eggert  <eggert@cs.ucla.edu>
3         * iconvme.c (SIZE_MAX): New macro, if not already defined.
4         (iconv_string): Don't guess a size-zero buffer, as that might cause
5         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
6         result would be 'too large', where 'too large' is (heuristically)
7         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
8         overflow concerns.  This will prevent some unwanted malloc failures
9         when the inputs are very large.
11 2005-02-12  Simon Josefsson  <jas@extundo.com >
13         * iconvme.h: New file, extracted from toutf8.c but improved.
14         * iconvme.c: New file.
15         * toutf8.c: Include stringprep.h first, to make the compiler check
16         that stringprep.h is standalone.  Improve comments.  Replace
17         #include of errno.h and sys/param.h with iconvme.h.  Don't define
18         ICONV_CONST.
19         (stringprep_convert): Rewrite to use iconvme.h.
20         * Makefile (libcidn-routines): Add iconvme.
22 2004-10-05  Ulrich Drepper  <drepper@redhat.com>
24         * idn-stub.c (unload_libidn): Don't define outside libc.
26 2004-07-02  Roland McGrath  <roland@redhat.com>
28         * configure: Don't exit.
30 2004-05-21  Ulrich Drepper  <drepper@redhat.com>
32         * idna.c (idna_to_unicode_4z4z): Fix test for failed memory allocation.
33         Patch by Simon Josefsson.
35 2004-05-06  Ulrich Drepper  <drepper@redhat.com>
37         * stringprep.c (stringprep): Free memory if allocation failed.
38         * idna.c: Fix memory handling in several places.
40 2004-04-22  Simon Josefsson  <jas@extundo.com>
42         * stringprep.h: Update to latest libidn version.
43         * stringprep.c: Likewise.
44         * idna.c: Likewise.
46 2004-03-14  Ulrich Drepper  <drepper@redhat.com>
48         * idn-stub.c (__idna_to_unicode_lzlz): Use __strchrnul, not strchrnul.
50         * idna.c (idna_to_ascii_4z): Revert last patch.
52 2004-03-12  Ulrich Drepper  <drepper@redhat.com>
54         * idna.c (idna_to_ascii_4z): Use strdup if available.  Unify two ifs.
56         * idn-stub.c: Implement __idna_to_unicode_lzlz.  Split
57         __idna_to_ascii_lz in two parts so that loading can be shared with
58         the new function.
59         * Versions (libcidn): Export idna_to_unicode_lzlz.
61         * Makefile (libcidn-inhibit-o): Define.  We need no archive.
63 2004-03-08  Simon Josefsson  <jas@extundo.com>
65         * toutf8.c: Update to latest libidn version.
67 2004-03-08  Ulrich Drepper  <drepper@redhat.com>
69         * stringprep.h: Don't include idn-int.h in glibc.
70         * idn-int.h: Removed.
72 2004-03-07  Ulrich Drepper  <drepper@redhat.com>
74         * idn-stub.c: Include <gnu/lib-names.h>.  Use LIBCIDN_SO for dlopen.
75         * shlib-versions: New file.
76         * toutf8.c: Include <sys/param.h>.
78 2004-03-07  Simon Josefsson  <jas@extundo.com>
80         * Banner: New file.
81         * Makefile: New file.
82         * Version: New file.
83         * configure: New file.
84         * idn-stub.c: New file.
85         * gunibreak.h: New file.  Copied from Libidn.
86         * gunicomp.h: New file.  Copied from Libidn.
87         * gunidecomp.h: New file.  Copied from Libidn.
88         * idna.h: New file.  Copied from Libidn.
89         * idna.c: New file.  Copied from Libidn.
90         * nfkc.c: New file.  Copied from Libidn.
91         * profiles.c: New file.  Copied from Libidn.
92         * punycode.c: New file.  Copied from Libidn.
93         * punycode.h: New file.  Copied from Libidn.
94         * rfc3454.c: New file.  Copied from Libidn.
95         * stringprep.c: New file.  Copied from Libidn.
96         * stringprep.h: New file.  Copied from Libidn.
97         * toutf8.c: New file.  Copied from Libidn.  Modified for use in glibc.