Description: Fix build on mips64el
Forwarded: https://github.com/openmoh/openmohaa/pull/700
Author: Sébastien Noel <sebastien@twolife.be>
--- a/code/gamespy/common/gsPlatform.h
+++ b/code/gamespy/common/gsPlatform.h
@@ -23,7 +23,9 @@
 ///////////////////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////////////////
 // Set the platform define
-#ifdef __mips64
+#if defined(_LINUX) || defined(_MACOSX) || defined(__APPLE__)
+	#define _UNIX
+#elif __mips64
 	#ifndef _PS2
 		#define _PS2
 	#endif
@@ -34,10 +36,6 @@
 	#endif
 #endif
 
-#if defined(_LINUX) || defined(_MACOSX) || defined(__APPLE__)
-	#define _UNIX
-#endif
-
 #if defined(_XBOX) || defined (_X360)
 #if _XBOX_VER >= 200
 	#define _X360
