From d64b39392704a5d05624d7e78c2679b318658748 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Tue, 7 May 2013 17:23:22 +1000 Subject: [PATCH] add DLL_EXT defines --- codemp/game/q_shared.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/codemp/game/q_shared.h b/codemp/game/q_shared.h index 4769278..a2e08f4 100644 --- a/codemp/game/q_shared.h +++ b/codemp/game/q_shared.h @@ -185,6 +185,8 @@ static ID_INLINE float BigFloat(const float *l) { FloatSwap(l); } #define PATH_SEP '\\' +#define DLL_EXT ".dll" + #endif //======================= MAC OS X DEFINES ===================== @@ -238,6 +240,8 @@ static inline int LittleLong (int l) { return LongSwap(l); } #define BigFloat static inline float LittleFloat (const float l) { return FloatSwap(&l); } +#define DLL_EXT ".dylib" + #endif //======================= MAC DEFINES ================================= @@ -306,6 +310,8 @@ inline static int LittleLong (int l) { return LongSwap(l); } inline static float LittleFloat (const float *l) { return FloatSwap(l); } #endif +#define DLL_EXT ".so" + #endif //======================= OPENBSD DEFINES ================================= @@ -353,6 +359,8 @@ inline static int LittleLong (int l) { return LongSwap(l); } inline static float LittleFloat (const float *l) { return FloatSwap(l); } #endif +#define DLL_EXT ".so" + #endif //======================= FreeBSD DEFINES ===================== @@ -389,6 +397,8 @@ static int LittleLong (int l) { return LongSwap(l); } static float LittleFloat (const float *l) { return FloatSwap(l); } #endif +#define DLL_EXT ".so" + #endif //=============================================================