Update copyright notices with scripts/update-copyrights.
[external/glibc.git] / libidn / ChangeLog
1 2013-01-02  Joseph Myers  <joseph@codesourcery.com>
2
3         * All files with FSF copyright notices: Update copyright dates
4         using scripts/update-copyrights.
5
6 2012-10-09  Roland McGrath  <roland@hack.frob.com>
7
8         * configure.in: If $shared != yes, just disable the add-on entirely
9         and issue a warning.
10         * configure: Regenerated.
11
12 2012-03-07  Ulrich Drepper  <drepper@gmail.com>
13
14         * Makefile (distribute): Remove variable.
15
16 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
17
18         * idna.c (idna_to_unicode_4z4z): Remove variable rc.
19
20 2008-02-10  Jim Meyering  <meyering@redhat.com>
21
22         * stringprep.c (stringprep, stringprep_profile): Remove useless
23         "if" before "free".
24
25 2006-02-27  Roland McGrath  <roland@redhat.com>
26
27         * Makefile: Use $(..) in place of ../.
28         * configure.in (libc_add_on_canonical, libc_add_on_subdirs): Set them.
29         * configure: Regenerated.
30
31 2006-02-25  Roland McGrath  <roland@redhat.com>
32
33         * configure.in: New file.
34         * configure: Replaced with generated file.
35         * sysdeps/unix/configure: File removed.
36
37 2005-03-08  Paul Eggert  <eggert@cs.ucla.edu>
38
39         * iconvme.c (SIZE_MAX): New macro, if not already defined.
40         (iconv_string): Don't guess a size-zero buffer, as that might cause
41         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
42         result would be 'too large', where 'too large' is (heuristically)
43         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
44         overflow concerns.  This will prevent some unwanted malloc failures
45         when the inputs are very large.
46
47 2005-02-12  Simon Josefsson  <jas@extundo.com >
48
49         * iconvme.h: New file, extracted from toutf8.c but improved.
50         * iconvme.c: New file.
51         * toutf8.c: Include stringprep.h first, to make the compiler check
52         that stringprep.h is standalone.  Improve comments.  Replace
53         #include of errno.h and sys/param.h with iconvme.h.  Don't define
54         ICONV_CONST.
55         (stringprep_convert): Rewrite to use iconvme.h.
56         * Makefile (libcidn-routines): Add iconvme.
57
58 2004-10-05  Ulrich Drepper  <drepper@redhat.com>
59
60         * idn-stub.c (unload_libidn): Don't define outside libc.
61
62 2004-07-02  Roland McGrath  <roland@redhat.com>
63
64         * configure: Don't exit.
65
66 2004-05-21  Ulrich Drepper  <drepper@redhat.com>
67
68         * idna.c (idna_to_unicode_4z4z): Fix test for failed memory allocation.
69         Patch by Simon Josefsson.
70
71 2004-05-06  Ulrich Drepper  <drepper@redhat.com>
72
73         * stringprep.c (stringprep): Free memory if allocation failed.
74         * idna.c: Fix memory handling in several places.
75
76 2004-04-22  Simon Josefsson  <jas@extundo.com>
77
78         * stringprep.h: Update to latest libidn version.
79         * stringprep.c: Likewise.
80         * idna.c: Likewise.
81
82 2004-03-14  Ulrich Drepper  <drepper@redhat.com>
83
84         * idn-stub.c (__idna_to_unicode_lzlz): Use __strchrnul, not strchrnul.
85
86         * idna.c (idna_to_ascii_4z): Revert last patch.
87
88 2004-03-12  Ulrich Drepper  <drepper@redhat.com>
89
90         * idna.c (idna_to_ascii_4z): Use strdup if available.  Unify two ifs.
91
92         * idn-stub.c: Implement __idna_to_unicode_lzlz.  Split
93         __idna_to_ascii_lz in two parts so that loading can be shared with
94         the new function.
95         * Versions (libcidn): Export idna_to_unicode_lzlz.
96
97         * Makefile (libcidn-inhibit-o): Define.  We need no archive.
98
99 2004-03-08  Simon Josefsson  <jas@extundo.com>
100
101         * toutf8.c: Update to latest libidn version.
102
103 2004-03-08  Ulrich Drepper  <drepper@redhat.com>
104
105         * stringprep.h: Don't include idn-int.h in glibc.
106         * idn-int.h: Removed.
107
108 2004-03-07  Ulrich Drepper  <drepper@redhat.com>
109
110         * idn-stub.c: Include <gnu/lib-names.h>.  Use LIBCIDN_SO for dlopen.
111         * shlib-versions: New file.
112         * toutf8.c: Include <sys/param.h>.
113
114 2004-03-07  Simon Josefsson  <jas@extundo.com>
115
116         * Banner: New file.
117         * Makefile: New file.
118         * Version: New file.
119         * configure: New file.
120         * idn-stub.c: New file.
121         * gunibreak.h: New file.  Copied from Libidn.
122         * gunicomp.h: New file.  Copied from Libidn.
123         * gunidecomp.h: New file.  Copied from Libidn.
124         * idna.h: New file.  Copied from Libidn.
125         * idna.c: New file.  Copied from Libidn.
126         * nfkc.c: New file.  Copied from Libidn.
127         * profiles.c: New file.  Copied from Libidn.
128         * punycode.c: New file.  Copied from Libidn.
129         * punycode.h: New file.  Copied from Libidn.
130         * rfc3454.c: New file.  Copied from Libidn.
131         * stringprep.c: New file.  Copied from Libidn.
132         * stringprep.h: New file.  Copied from Libidn.
133         * toutf8.c: New file.  Copied from Libidn.  Modified for use in glibc.