Preliminaries for 2.15 release
[glibc.git] / libidn / ChangeLog
bloba718a9f2a32e3e79dc081fd379c312485e6c6e26
1 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
3         * idna.c (idna_to_unicode_4z4z): Remove variable rc.
5 2008-02-10  Jim Meyering  <meyering@redhat.com>
7         * stringprep.c (stringprep, stringprep_profile): Remove useless
8         "if" before "free".
10 2006-02-27  Roland McGrath  <roland@redhat.com>
12         * Makefile: Use $(..) in place of ../.
13         * configure.in (libc_add_on_canonical, libc_add_on_subdirs): Set them.
14         * configure: Regenerated.
16 2006-02-25  Roland McGrath  <roland@redhat.com>
18         * configure.in: New file.
19         * configure: Replaced with generated file.
20         * sysdeps/unix/configure: File removed.
22 2005-03-08  Paul Eggert  <eggert@cs.ucla.edu>
24         * iconvme.c (SIZE_MAX): New macro, if not already defined.
25         (iconv_string): Don't guess a size-zero buffer, as that might cause
26         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
27         result would be 'too large', where 'too large' is (heuristically)
28         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
29         overflow concerns.  This will prevent some unwanted malloc failures
30         when the inputs are very large.
32 2005-02-12  Simon Josefsson  <jas@extundo.com >
34         * iconvme.h: New file, extracted from toutf8.c but improved.
35         * iconvme.c: New file.
36         * toutf8.c: Include stringprep.h first, to make the compiler check
37         that stringprep.h is standalone.  Improve comments.  Replace
38         #include of errno.h and sys/param.h with iconvme.h.  Don't define
39         ICONV_CONST.
40         (stringprep_convert): Rewrite to use iconvme.h.
41         * Makefile (libcidn-routines): Add iconvme.
43 2004-10-05  Ulrich Drepper  <drepper@redhat.com>
45         * idn-stub.c (unload_libidn): Don't define outside libc.
47 2004-07-02  Roland McGrath  <roland@redhat.com>
49         * configure: Don't exit.
51 2004-05-21  Ulrich Drepper  <drepper@redhat.com>
53         * idna.c (idna_to_unicode_4z4z): Fix test for failed memory allocation.
54         Patch by Simon Josefsson.
56 2004-05-06  Ulrich Drepper  <drepper@redhat.com>
58         * stringprep.c (stringprep): Free memory if allocation failed.
59         * idna.c: Fix memory handling in several places.
61 2004-04-22  Simon Josefsson  <jas@extundo.com>
63         * stringprep.h: Update to latest libidn version.
64         * stringprep.c: Likewise.
65         * idna.c: Likewise.
67 2004-03-14  Ulrich Drepper  <drepper@redhat.com>
69         * idn-stub.c (__idna_to_unicode_lzlz): Use __strchrnul, not strchrnul.
71         * idna.c (idna_to_ascii_4z): Revert last patch.
73 2004-03-12  Ulrich Drepper  <drepper@redhat.com>
75         * idna.c (idna_to_ascii_4z): Use strdup if available.  Unify two ifs.
77         * idn-stub.c: Implement __idna_to_unicode_lzlz.  Split
78         __idna_to_ascii_lz in two parts so that loading can be shared with
79         the new function.
80         * Versions (libcidn): Export idna_to_unicode_lzlz.
82         * Makefile (libcidn-inhibit-o): Define.  We need no archive.
84 2004-03-08  Simon Josefsson  <jas@extundo.com>
86         * toutf8.c: Update to latest libidn version.
88 2004-03-08  Ulrich Drepper  <drepper@redhat.com>
90         * stringprep.h: Don't include idn-int.h in glibc.
91         * idn-int.h: Removed.
93 2004-03-07  Ulrich Drepper  <drepper@redhat.com>
95         * idn-stub.c: Include <gnu/lib-names.h>.  Use LIBCIDN_SO for dlopen.
96         * shlib-versions: New file.
97         * toutf8.c: Include <sys/param.h>.
99 2004-03-07  Simon Josefsson  <jas@extundo.com>
101         * Banner: New file.
102         * Makefile: New file.
103         * Version: New file.
104         * configure: New file.
105         * idn-stub.c: New file.
106         * gunibreak.h: New file.  Copied from Libidn.
107         * gunicomp.h: New file.  Copied from Libidn.
108         * gunidecomp.h: New file.  Copied from Libidn.
109         * idna.h: New file.  Copied from Libidn.
110         * idna.c: New file.  Copied from Libidn.
111         * nfkc.c: New file.  Copied from Libidn.
112         * profiles.c: New file.  Copied from Libidn.
113         * punycode.c: New file.  Copied from Libidn.
114         * punycode.h: New file.  Copied from Libidn.
115         * rfc3454.c: New file.  Copied from Libidn.
116         * stringprep.c: New file.  Copied from Libidn.
117         * stringprep.h: New file.  Copied from Libidn.
118         * toutf8.c: New file.  Copied from Libidn.  Modified for use in glibc.