mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-24 21:21:33 +00:00
add DLL_EXT defines
This commit is contained in:
parent
6e05e1552e
commit
d64b393927
1 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
||||
//=============================================================
|
||||
|
|
Loading…
Reference in a new issue