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