From e72754ab9494a153921cb1927ba8715e748c5396 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Tue, 21 Aug 2001 13:32:01 +0000 Subject: Fix to q_shared.h --- src/game/q_shared.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/game/q_shared.h b/src/game/q_shared.h index 153ce970..3274690c 100644 --- a/src/game/q_shared.h +++ b/src/game/q_shared.h @@ -81,6 +81,10 @@ #include "bg_lib.h" +#ifdef __linux__ +#undef __linux__ +#endif + #else #include @@ -242,7 +246,6 @@ static inline float LittleFloat (const float l) { return FloatSwap(&l); } // the mac compiler can't handle >32k of locals, so we // just waste space and make big arrays static... #ifdef __linux__ -#ifndef __LCC__ //TA: q3lcc defines __linux__ // bk001205 - from Makefile #define stricmp strcasecmp @@ -284,7 +287,6 @@ inline static int LittleLong (int l) { return LongSwap(l); } inline static float LittleFloat (const float *l) { return FloatSwap(l); } #endif -#endif #endif //======================= FreeBSD DEFINES ===================== -- cgit