From f517f31a6f8c1e3adcd41d020575c27f217ee8e0 Mon Sep 17 00:00:00 2001 From: tma Date: Tue, 27 Dec 2005 19:46:01 +0000 Subject: * NetBSD support patch from optical (alex@rigbo.se) git-svn-id: svn://svn.icculus.org/quake3/trunk@448 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/q_platform.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'code/qcommon') diff --git a/code/qcommon/q_platform.h b/code/qcommon/q_platform.h index 8859b7a..16817c8 100644 --- a/code/qcommon/q_platform.h +++ b/code/qcommon/q_platform.h @@ -192,6 +192,32 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #endif +//================================================================ NetBSD === + +// This is very much like the FreeBSD one and can probably be merged +#ifdef __NetBSD__ + +#include + +#define OS_STRING "netbsd" +#define ID_INLINE inline +#define PATH_SEP '/' + +#ifdef __i386__ +#define ARCH_STRING "i386" +// Netbsd has alot of platforms +#endif + +#if BYTE_ORDER == BIG_ENDIAN +#define Q3_BIG_ENDIAN +#else +#define Q3_LITTLE_ENDIAN +#endif + +#define DLL_EXT ".so" + +#endif + //================================================================= SUNOS === #ifdef __sun -- cgit v1.2.3