mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
16 lines
638 B
Plaintext
16 lines
638 B
Plaintext
$NetBSD: patch-af,v 1.4 2007/01/15 17:41:28 tonio Exp $
|
|
|
|
--- src/FbTk/I18n.cc.orig 2007-01-15 17:54:14.000000000 +0100
|
|
+++ src/FbTk/I18n.cc
|
|
@@ -76,7 +76,9 @@ void NLSInit(const char *catalog) {
|
|
I18n::I18n():m_multibyte(false), m_utf8_translate(false), m_catalog_fd((nl_catd)(-1)) {
|
|
#ifdef HAVE_SETLOCALE
|
|
//make sure we don't get 0 to m_locale string
|
|
- char *temp = setlocale(LC_MESSAGES, "");
|
|
+ char *temp;
|
|
+ (void)setlocale(LC_ALL, "");
|
|
+ temp = setlocale(LC_MESSAGES, NULL);
|
|
m_locale = ( temp ? temp : "");
|
|
if (m_locale.empty()) {
|
|
cerr<<"Warning: Failed to set locale, reverting to \"C\""<<endl;
|