avoid std prefix so scons build on Mac works with macports

This commit is contained in:
Simon Forsyth 2011-10-28 04:02:48 +00:00
parent 164528d3e8
commit 055760fc86

View file

@ -329,7 +329,7 @@ static int process_command_args(const commandline_options& cmdline_opts) {
* does not take GUI language setting into account.
*/
static void init_locale() {
#ifdef _WIN32
#if defined _WIN32 || defined __APPLE__
setlocale(LC_ALL, "English");
#else
std::setlocale(LC_ALL, "C");