git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10412
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include <locale.h>
#include <ctype.h>
#include <stdlib.h>
+#ifdef HAVE_LANGINFO_H
+ #include <langinfo.h>
+#endif
// wxWindows
#ifndef WX_PRECOMP
#if defined(HAVE_LANGINFO_H) && defined(CODESET)
// GNU libc provides current character set this way (this conforms
// to Unix98)
+ char *oldLocale = strdup(setlocale(LC_CTYPE, NULL));
+ setlocale(LC_CTYPE, "");
char *alang = nl_langinfo(CODESET);
+ setlocale(LC_CTYPE, oldLocale);
if (alang)
{
encname = wxConvLibc.cMB2WX(alang);
#ifdef HAVE_ICONV_H
#include <iconv.h>
#endif
-#ifdef HAVE_LANGINFO_H
- #include <langinfo.h>
-#endif
#ifdef __WXMSW__
#include <windows.h>