diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-28 20:10:34 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-28 20:10:34 +0000 |
commit | 4bf7a197bf8df0203efd94ebdf494d621b0f4481 (patch) | |
tree | ed088ce2bc9d6c45bfc65fc4659b7adfeb1b5d60 /patches/glibc/2.7/190-build_wcs_upper_buffer.patch | |
parent | 7d79584d9ba3d143aa2e4c535295fae9edfaaa92 (diff) | |
download | crosstool-ng-4bf7a197bf8df0203efd94ebdf494d621b0f4481.tar.gz crosstool-ng-4bf7a197bf8df0203efd94ebdf494d621b0f4481.tar.bz2 crosstool-ng-4bf7a197bf8df0203efd94ebdf494d621b0f4481.zip |
Rename patches for glibc: include neither 'glibc' not he version in patch names, it's a duplicate of info already available from the directories they are in.
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.patch | 22 |
1 files changed, 22 insertions, 0 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 new file mode 100644 index 00000000..72cde922 --- /dev/null +++ b/patches/glibc/2.7/190-build_wcs_upper_buffer.patch @@ -0,0 +1,22 @@ +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; |