From 587204947e27700bd4bacd12aaf2ce3aef4c3a28 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 17 Apr 2009 23:50:12 +0000 Subject: * charset.c (_initialize_charset): Add special case for "646". --- gdb/charset.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gdb/charset.c') diff --git a/gdb/charset.c b/gdb/charset.c index c774638..43b69ec 100644 --- a/gdb/charset.c +++ b/gdb/charset.c @@ -817,6 +817,10 @@ _initialize_charset (void) #ifndef PHONY_ICONV #ifdef HAVE_LANGINFO_CODESET auto_host_charset_name = nl_langinfo (CODESET); + /* Solaris will return `646' here -- but the Solaris iconv then + does not accept this. */ + if (!strcmp (auto_host_charset_name, "646")) + auto_host_charset_name = "ASCII"; target_charset_name = auto_host_charset_name; set_be_le_names (); -- cgit v1.1