summaryrefslogtreecommitdiff
path: root/Source/CursesDialog
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2014-05-30 21:41:48 -0600
committerClinton Stimpson <clinton@elemtech.com>2014-06-03 18:22:25 -0600
commit730e386291cb7aad8f532125216b2ec71d710748 (patch)
treefba5ac405d3746f89980bf54e668147497196ce9 /Source/CursesDialog
parentc4a26b70cbaa1708b3ad28f2d09976fd7b1c925e (diff)
downloadcmake-730e386291cb7aad8f532125216b2ec71d710748.tar.gz
Encoding: Add setlocale() to applications.
See also bug #14934 where chinese characters could not be used with cpack.
Diffstat (limited to 'Source/CursesDialog')
-rw-r--r--Source/CursesDialog/ccmake.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CursesDialog/ccmake.cxx b/Source/CursesDialog/ccmake.cxx
index d70bedb4db..a9d4d98456 100644
--- a/Source/CursesDialog/ccmake.cxx
+++ b/Source/CursesDialog/ccmake.cxx
@@ -16,6 +16,7 @@
#include <signal.h>
#include <sys/ioctl.h>
+#include <locale.h>
#include "cmCursesMainForm.h"
#include "cmCursesStandardIncludes.h"
@@ -82,6 +83,8 @@ void CMakeMessageHandler(const char* message, const char* title, bool&,
int main(int argc, char const* const* argv)
{
+ setlocale(LC_ALL, "");
+
cmsys::Encoding::CommandLineArguments encoding_args =
cmsys::Encoding::CommandLineArguments::Main(argc, argv);
argc = encoding_args.argc();