blob: e7a06fef1700997f4489fa826c94560268f67d39 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001These 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."