diff options
author | Kirill K. Smirnov <kirill.k.smirnov@gmail.com> | 2016-09-15 01:02:54 +0300 |
---|---|---|
committer | Kirill K. Smirnov <kirill.k.smirnov@gmail.com> | 2016-09-15 01:02:54 +0300 |
commit | 429b3e884662a3b9a72890aae23865501e66330f (patch) | |
tree | 5a307ec5f96e94a8212ce81ab8cce508951bbf36 /patches/glibc/2.7/160-build_wcs_upper_buffer.patch | |
parent | 1d28793575d43d908b665fa6665d1b90b37f0af0 (diff) | |
download | crosstool-ng-429b3e884662a3b9a72890aae23865501e66330f.tar.gz crosstool-ng-429b3e884662a3b9a72890aae23865501e66330f.tar.bz2 crosstool-ng-429b3e884662a3b9a72890aae23865501e66330f.zip |
patches: remove obsolete glibc patches
Glibc prior to 2.18, linuxthreads and ports are not supported.
Signed-off-by: Kirill K. Smirnov <kirill.k.smirnov@gmail.com>
Diffstat (limited to 'patches/glibc/2.7/160-build_wcs_upper_buffer.patch')
-rw-r--r-- | patches/glibc/2.7/160-build_wcs_upper_buffer.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/patches/glibc/2.7/160-build_wcs_upper_buffer.patch b/patches/glibc/2.7/160-build_wcs_upper_buffer.patch deleted file mode 100644 index 72cde922..00000000 --- a/patches/glibc/2.7/160-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; |