src/strings.cpp
changeset 7931 855327e1ab53
parent 7918 3b2e2a49a093
child 8112 f432a920f3b7
--- a/src/strings.cpp	Fri Aug 10 13:33:04 2007 +0000
+++ b/src/strings.cpp	Sat Aug 11 15:52:34 2007 +0000
@@ -1237,7 +1237,8 @@
 }
 
 /* Win32 implementation in win32.cpp. */
-#ifndef WIN32
+/* OS X implementation in os/macosx/macos.mm. */
+#if !(defined(WIN32) || defined(__APPLE__))
 /** Determine the current charset based on the environment
  * First check some default values, after this one we passed ourselves
  * and if none exist return the value for $LANG
@@ -1261,7 +1262,7 @@
 
 	return getenv("LANG");
 }
-#endif /* ifndef WIN32 */
+#endif /* !(defined(WIN32) || defined(__APPLE__)) */
 
 static int CDECL LanguageCompareFunc(const void *a, const void *b)
 {