Drop support for building on OS X 10.5. It is too much hassle to

work around the limitations of the no longer maintained Xcode 3.1.4
for Leopard. Running a 10.6-built app on 10.5 works fine through
through the use of the 10.5 SDK.

std::locale() seems to be the generally safer way to specify the
default locale and works on Linux and OS X at least. Thanks to
dasmetzelmaennchen for the pointer.

Remove some obsolete SCons related svn:ignores.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6893 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang
2011-01-22 02:18:25 +00:00
parent 17d9888f3c
commit 392a589092
4 changed files with 7 additions and 16 deletions

View File

@ -52,9 +52,7 @@ template <typename I>
std::string ThousandSeparate(I value, int spaces = 0)
{
std::ostringstream oss;
#ifndef __APPLE__ // XXX
oss.imbue(std::locale(""));
#endif
oss.imbue(std::locale());
oss << std::setw(spaces) << value;
return oss.str();