diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-07-25 01:16:26 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-26 08:56:26 +0100 |
commit | 6d9958ee9da793e4c87853e5c74d264423a68f33 (patch) | |
tree | 763986d887ae4be8fb64930d8f4fab315b820017 /meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch | |
parent | cf0395203adf886dc7e71b26fb8c6bd0281cbe15 (diff) | |
download | poky-6d9958ee9da793e4c87853e5c74d264423a68f33.tar.gz |
guile: 2.0.11 -> 2.0.12
* Remove these patches which already in the source:
- libguile-VM-ASM_MUL-for-ARM-Add-earlyclobber.patch
- remove_strcase_l_funcs.patch
- 0001-libguile-Check-for-strtol_l-during-configure.patch
* Update 0002-Recognize-nios2-as-compilation-target.patch
(From OE-Core rev: 42fd94e8168e618b7a45b1261ee5c06bb38548e4)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch')
-rw-r--r-- | meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch b/meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch deleted file mode 100644 index e7a06fef17..0000000000 --- a/meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | These unused functions cause build failures with uclibc since they reference __uclibc_locale_struct | ||
2 | and this is exposed by uclibc API headers only if C locales are built, but for OE we build full locale | ||
3 | support | ||
4 | |||
5 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
6 | Upstream-Status: Pending | ||
7 | Index: guile-2.0.11/libguile/i18n.c | ||
8 | =================================================================== | ||
9 | --- guile-2.0.11.orig/libguile/i18n.c | ||
10 | +++ guile-2.0.11/libguile/i18n.c | ||
11 | @@ -851,27 +851,6 @@ str_downcase (register char *dst, regist | ||
12 | *dst = '\0'; | ||
13 | } | ||
14 | |||
15 | -#ifdef USE_GNU_LOCALE_API | ||
16 | -static inline void | ||
17 | -str_upcase_l (register char *dst, register const char *src, | ||
18 | - scm_t_locale locale) | ||
19 | -{ | ||
20 | - for (; *src != '\0'; src++, dst++) | ||
21 | - *dst = toupper_l (*src, locale); | ||
22 | - *dst = '\0'; | ||
23 | -} | ||
24 | - | ||
25 | -static inline void | ||
26 | -str_downcase_l (register char *dst, register const char *src, | ||
27 | - scm_t_locale locale) | ||
28 | -{ | ||
29 | - for (; *src != '\0'; src++, dst++) | ||
30 | - *dst = tolower_l (*src, locale); | ||
31 | - *dst = '\0'; | ||
32 | -} | ||
33 | -#endif | ||
34 | - | ||
35 | - | ||
36 | SCM_DEFINE (scm_string_locale_lt, "string-locale<?", 2, 1, 0, | ||
37 | (SCM s1, SCM s2, SCM locale), | ||
38 | "Compare strings @var{s1} and @var{s2} in a locale-dependent way." | ||