diff options
Diffstat (limited to 'locale.c')
-rw-r--r-- | locale.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -481,6 +481,7 @@ Perl_init_i18nl10n(pTHX_ int printwarn) (ibcmp(codeset, "UTF-8", 5) == 0 || ibcmp(codeset, "UTF8", 4) == 0)) wantutf8 = TRUE; +#if defined(USE_LOCALE) #ifdef __GLIBC__ if (!wantutf8 && language && (ibcmp(language, "UTF-8", 5) == 0 || @@ -501,6 +502,7 @@ Perl_init_i18nl10n(pTHX_ int printwarn) (ibcmp(lang, "UTF-8", 5) == 0 || ibcmp(lang, "UTF8", 4) == 0)) wantutf8 = TRUE; +#endif /* USE_LOCALE */ if (wantutf8) PL_wantutf8 = TRUE; } |