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