aboutsummaryrefslogtreecommitdiff
path: root/libjava
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2002-01-08 21:59:32 +0000
committerTom Tromey <tromey@gcc.gnu.org>2002-01-08 21:59:32 +0000
commitd9df09cce88e38c129319aa5dedde17d1e329190 (patch)
treef6b6b128369843298e7c17f4c1d39af5c911e02e /libjava
parent1e7fcb11d06e437375b6661838cef50c63f52766 (diff)
downloadgcc-d9df09cce88e38c129319aa5dedde17d1e329190.zip
gcc-d9df09cce88e38c129319aa5dedde17d1e329190.tar.gz
gcc-d9df09cce88e38c129319aa5dedde17d1e329190.tar.bz2
For PR libgcj/5031:
* java/lang/natSystem.cc (init_properties): Use LC_MESSAGES to choose default locale. From-SVN: r48664
Diffstat (limited to 'libjava')
-rw-r--r--libjava/ChangeLog4
-rw-r--r--libjava/java/lang/natSystem.cc7
2 files changed, 10 insertions, 1 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 7fb1e54..aa91329 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,5 +1,9 @@
2002-01-08 Tom Tromey <tromey@redhat.com>
+ For PR libgcj/5031:
+ * java/lang/natSystem.cc (init_properties): Use LC_MESSAGES to
+ choose default locale.
+
* Makefile.in: Rebuilt.
* Makefile.am (jv_convert_LDADD): Removed convert_source_files.
diff --git a/libjava/java/lang/natSystem.cc b/libjava/java/lang/natSystem.cc
index f970ee6..8f06538 100644
--- a/libjava/java/lang/natSystem.cc
+++ b/libjava/java/lang/natSystem.cc
@@ -415,7 +415,12 @@ java::lang::System::init_properties (void)
// Set user locale properties based on setlocale()
#ifdef HAVE_SETLOCALE
- char *locale = setlocale (LC_ALL, "");
+ // We let the user choose the locale. However, since Java differs
+ // from POSIX, we arbitrarily pick LC_MESSAGES as determining the
+ // Java locale. We can't use LC_ALL because it might return a full
+ // list of all the settings.
+ setlocale (LC_ALL, "");
+ char *locale = setlocale (LC_MESSAGES, "");
if (locale && strlen (locale) >= 2)
{
char buf[3];