diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2010-01-17 09:39:06 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2010-01-17 09:39:06 +0000 |
commit | 32cb8c8cfe21f747b507ec34aa81f717b766c38f (patch) | |
tree | 0c489516abdeadd11a2917f5cddc0582e48d01fe /newlib/libc/locale/locale.c | |
parent | e6bda0234606184f8816c99d0eae011ac3bcd790 (diff) | |
download | cygnal-32cb8c8cfe21f747b507ec34aa81f717b766c38f.tar.gz cygnal-32cb8c8cfe21f747b507ec34aa81f717b766c38f.tar.bz2 cygnal-32cb8c8cfe21f747b507ec34aa81f717b766c38f.zip |
* libc/locale/locale.c (lc_ctype_charset): Disable defaulting to
"UTF-8" on Cygwin.
(lc_message_charset): Ditto.
(loadlocale): Disable setting charset of the "C" locale to "UTF-8" on
Cygwin.
* libc/stdlib/mbtowc_r.c (__mbtowc): Add Cygwin-specific comment.
* libc/stdlib/wctomb_r.c (__wctomb): Ditto.
Diffstat (limited to 'newlib/libc/locale/locale.c')
-rw-r--r-- | newlib/libc/locale/locale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/locale/locale.c b/newlib/libc/locale/locale.c index 311a43820..8a74034d0 100644 --- a/newlib/libc/locale/locale.c +++ b/newlib/libc/locale/locale.c @@ -242,7 +242,7 @@ static const char *__get_locale_env(struct _reent *, int); #endif -#ifdef __CYGWIN__ +#if 0 /*def __CYGWIN__ TODO: temporarily(?) disable C == UTF-8 */ static char lc_ctype_charset[ENCODING_LEN + 1] = "UTF-8"; static char lc_message_charset[ENCODING_LEN + 1] = "UTF-8"; #else @@ -450,7 +450,7 @@ loadlocale(struct _reent *p, int category) if (!strcmp (locale, "POSIX")) strcpy (locale, "C"); if (!strcmp (locale, "C")) /* Default "C" locale */ -#ifdef __CYGWIN__ +#if 0 /*def __CYGWIN__ TODO: temporarily(?) disable C == UTF-8 */ strcpy (charset, "UTF-8"); #else strcpy (charset, "ASCII"); |