diff options
Diffstat (limited to 'meta/recipes-devtools/guile/files')
-rw-r--r-- | meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch | 38 |
1 files changed, 38 insertions, 0 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 new file mode 100644 index 0000000000..e7a06fef17 --- /dev/null +++ b/meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch | |||
@@ -0,0 +1,38 @@ | |||
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." | ||