summaryrefslogtreecommitdiff
path: root/patches/glibc/2.7/190-build_wcs_upper_buffer.patch
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-28 21:32:33 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-28 21:32:33 (GMT)
commit6317df47791e1e35b78dc69a636445dbc22d5c21 (patch)
tree5134392c237e9aed62c1b6f7d5620340db781262 /patches/glibc/2.7/190-build_wcs_upper_buffer.patch
parent3bf3f54ed10aec366066d796186eea63c4169ad2 (diff)
Fourth step at renaming patches: renumber all patches with a 10-step.
Diffstat (limited to 'patches/glibc/2.7/190-build_wcs_upper_buffer.patch')
-rw-r--r--patches/glibc/2.7/190-build_wcs_upper_buffer.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/patches/glibc/2.7/190-build_wcs_upper_buffer.patch b/patches/glibc/2.7/190-build_wcs_upper_buffer.patch
deleted file mode 100644
index 72cde92..0000000
--- a/patches/glibc/2.7/190-build_wcs_upper_buffer.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Matthias Kaehlcke <matthias at kaehlcke dot net> writes:
-
-A compilation of an ARM toolchain with glibc 2.7 using crosstool-ng
-failed with a gcc error in glibc-2.7/posix/regex_internal.c, more
-concretly in the function build_wcs_upper_buffer(). The return type of
-the function prototype in regex_internal.h doesn't correspond with the
-return type of this function in regex_internal.c.
-
-The attached patch corrects the return type of the function prototype
-in regex_internal.h
-
---- glibc-2.7/posix/regex_internal.h.org 2008-05-30 11:16:01.000000000 +0200
-+++ glibc-2.7/posix/regex_internal.h 2008-05-30 11:16:35.000000000 +0200
-@@ -391,7 +391,7 @@
- internal_function;
- # ifdef RE_ENABLE_I18N
- static void build_wcs_buffer (re_string_t *pstr) internal_function;
--static int build_wcs_upper_buffer (re_string_t *pstr) internal_function;
-+static reg_errcode_t build_wcs_upper_buffer (re_string_t *pstr) internal_function;
- # endif /* RE_ENABLE_I18N */
- static void build_upper_buffer (re_string_t *pstr) internal_function;
- static void re_string_translate_buffer (re_string_t *pstr) internal_function;