PowerPC: Change sched_getcpu to use vDSO getcpu instead of syscall.
[glibc.git] / libidn / ChangeLog
blob10b19a6ebdd091fe99344ae6a6c723e4843e0076
1 2013-01-02  Joseph Myers  <joseph@codesourcery.com>
3         * All files with FSF copyright notices: Update copyright dates
4         using scripts/update-copyrights.
6 2012-10-09  Roland McGrath  <roland@hack.frob.com>
8         * configure.in: If $shared != yes, just disable the add-on entirely
9         and issue a warning.
10         * configure: Regenerated.
12 2012-03-07  Ulrich Drepper  <drepper@gmail.com>
14         * Makefile (distribute): Remove variable.
16 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
18         * idna.c (idna_to_unicode_4z4z): Remove variable rc.
20 2008-02-10  Jim Meyering  <meyering@redhat.com>
22         * stringprep.c (stringprep, stringprep_profile): Remove useless
23         "if" before "free".
25 2006-02-27  Roland McGrath  <roland@redhat.com>
27         * Makefile: Use $(..) in place of ../.
28         * configure.in (libc_add_on_canonical, libc_add_on_subdirs): Set them.
29         * configure: Regenerated.
31 2006-02-25  Roland McGrath  <roland@redhat.com>
33         * configure.in: New file.
34         * configure: Replaced with generated file.
35         * sysdeps/unix/configure: File removed.
37 2005-03-08  Paul Eggert  <eggert@cs.ucla.edu>
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.
47 2005-02-12  Simon Josefsson  <jas@extundo.com >
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.
58 2004-10-05  Ulrich Drepper  <drepper@redhat.com>
60         * idn-stub.c (unload_libidn): Don't define outside libc.
62 2004-07-02  Roland McGrath  <roland@redhat.com>
64         * configure: Don't exit.
66 2004-05-21  Ulrich Drepper  <drepper@redhat.com>
68         * idna.c (idna_to_unicode_4z4z): Fix test for failed memory allocation.
69         Patch by Simon Josefsson.
71 2004-05-06  Ulrich Drepper  <drepper@redhat.com>
73         * stringprep.c (stringprep): Free memory if allocation failed.
74         * idna.c: Fix memory handling in several places.
76 2004-04-22  Simon Josefsson  <jas@extundo.com>
78         * stringprep.h: Update to latest libidn version.
79         * stringprep.c: Likewise.
80         * idna.c: Likewise.
82 2004-03-14  Ulrich Drepper  <drepper@redhat.com>
84         * idn-stub.c (__idna_to_unicode_lzlz): Use __strchrnul, not strchrnul.
86         * idna.c (idna_to_ascii_4z): Revert last patch.
88 2004-03-12  Ulrich Drepper  <drepper@redhat.com>
90         * idna.c (idna_to_ascii_4z): Use strdup if available.  Unify two ifs.
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.
97         * Makefile (libcidn-inhibit-o): Define.  We need no archive.
99 2004-03-08  Simon Josefsson  <jas@extundo.com>
101         * toutf8.c: Update to latest libidn version.
103 2004-03-08  Ulrich Drepper  <drepper@redhat.com>
105         * stringprep.h: Don't include idn-int.h in glibc.
106         * idn-int.h: Removed.
108 2004-03-07  Ulrich Drepper  <drepper@redhat.com>
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>.
114 2004-03-07  Simon Josefsson  <jas@extundo.com>
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.