diff options
Diffstat (limited to 'lib/propername.c')
-rw-r--r-- | lib/propername.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/propername.c b/lib/propername.c index 3971f3f7a5..fd105ee069 100644 --- a/lib/propername.c +++ b/lib/propername.c @@ -198,7 +198,8 @@ proper_name_utf8 (const char *name_ascii, const char *name_utf8) name_converted = alloc_name_converted = xstr_iconv (name_utf8, "UTF-8", locale_code); -# if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2 \ +# if (((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2) \ + && !defined __UCLIBC__) \ || _LIBICONV_VERSION >= 0x0105 { char *converted_translit; |