summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/guile/files
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-12-29 01:18:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-24 09:40:27 +0000
commit493e5572c855d60e7543d2389d8803605d67a618 (patch)
tree1775b16331d16220d9f738287e1502d269eb8201 /meta/recipes-devtools/guile/files
parent1636f6fdeabc540ad41acc783e7ee21c6dc3e6eb (diff)
downloadpoky-493e5572c855d60e7543d2389d8803605d67a618.tar.gz
guile: Fix build with uclibc
(From OE-Core rev: e00dbd3863bebab02bb3e0c51bfc24a3079585d0) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/guile/files')
-rw-r--r--meta/recipes-devtools/guile/files/remove_strcase_l_funcs.patch38
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 @@
1These unused functions cause build failures with uclibc since they reference __uclibc_locale_struct
2and this is exposed by uclibc API headers only if C locales are built, but for OE we build full locale
3support
4
5Signed-off-by: Khem Raj <raj.khem@gmail.com>
6Upstream-Status: Pending
7Index: 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."