mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-12 13:12:07 +00:00
* Move MINSDL_ values to sys_local.h from Makefile/VC project
* Merge *BSD platform definitions in q_platform.h * IRIX support (Patrick Baggett <baggett.patrick@figglesoftware.com>)
This commit is contained in:
parent
6bd4bb16a0
commit
eaeed742c5
6 changed files with 44 additions and 64 deletions
18
Makefile
18
Makefile
|
@ -636,12 +636,15 @@ else # ifeq netbsd
|
||||||
# SETUP AND BUILD -- IRIX
|
# SETUP AND BUILD -- IRIX
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
ifeq ($(PLATFORM),irix)
|
ifeq ($(PLATFORM),irix64)
|
||||||
|
|
||||||
ARCH=mips #default to MIPS
|
ARCH=mips #default to MIPS
|
||||||
|
|
||||||
BASE_CFLAGS=-Dstricmp=strcasecmp -Xcpluscomm -woff 1185 -mips3 \
|
CC = c99
|
||||||
-nostdinc -I. -I$(ROOT)/usr/include -DNO_VM_COMPILED
|
MKDIR = mkdir -p
|
||||||
|
|
||||||
|
BASE_CFLAGS=-Dstricmp=strcasecmp -Xcpluscomm -woff 1185 \
|
||||||
|
-I. $(shell sdl-config --cflags) -I$(ROOT)/usr/include -DNO_VM_COMPILED
|
||||||
RELEASE_CFLAGS=$(BASE_CFLAGS) -O3
|
RELEASE_CFLAGS=$(BASE_CFLAGS) -O3
|
||||||
DEBUG_CFLAGS=$(BASE_CFLAGS) -g
|
DEBUG_CFLAGS=$(BASE_CFLAGS) -g
|
||||||
|
|
||||||
|
@ -649,8 +652,10 @@ ifeq ($(PLATFORM),irix)
|
||||||
SHLIBCFLAGS=
|
SHLIBCFLAGS=
|
||||||
SHLIBLDFLAGS=-shared
|
SHLIBLDFLAGS=-shared
|
||||||
|
|
||||||
LDFLAGS=-ldl -lm
|
LDFLAGS=-ldl -lm -lgen
|
||||||
CLIENT_LDFLAGS=-L/usr/X11/$(LIB) -lGL -lX11 -lXext -lm
|
# FIXME: The X libraries probably aren't necessary?
|
||||||
|
CLIENT_LDFLAGS=-L/usr/X11/$(LIB) $(shell sdl-config --libs) -lGL \
|
||||||
|
-lX11 -lXext -lm
|
||||||
|
|
||||||
else # ifeq IRIX
|
else # ifeq IRIX
|
||||||
|
|
||||||
|
@ -794,9 +799,6 @@ ifeq ($(USE_SVN),1)
|
||||||
BASE_CFLAGS += -DSVN_VERSION=\\\"$(SVN_VERSION)\\\"
|
BASE_CFLAGS += -DSVN_VERSION=\\\"$(SVN_VERSION)\\\"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Require a minimum version of SDL
|
|
||||||
BASE_CFLAGS += -DMINSDL_MAJOR=1 -DMINSDL_MINOR=2 -DMINSDL_PATCH=7
|
|
||||||
|
|
||||||
ifeq ($(V),1)
|
ifeq ($(V),1)
|
||||||
echo_cmd=@:
|
echo_cmd=@:
|
||||||
Q=
|
Q=
|
||||||
|
|
|
@ -50,6 +50,7 @@ static qboolean winsockInitialized = qfalse;
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#include <sys/time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#ifdef MACOS_X
|
#ifdef MACOS_X
|
||||||
|
|
|
@ -19,7 +19,7 @@ along with Quake III Arena source code; if not, write to the Free Software
|
||||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
===========================================================================
|
===========================================================================
|
||||||
*/
|
*/
|
||||||
//
|
|
||||||
#ifndef __Q_PLATFORM_H
|
#ifndef __Q_PLATFORM_H
|
||||||
#define __Q_PLATFORM_H
|
#define __Q_PLATFORM_H
|
||||||
|
|
||||||
|
@ -168,14 +168,21 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//=============================================================== FreeBSD ===
|
//=================================================================== BSD ===
|
||||||
|
|
||||||
#ifdef __FreeBSD__
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <machine/endian.h>
|
#include <machine/endian.h>
|
||||||
|
|
||||||
|
#if defined(__FreeBSD__)
|
||||||
#define OS_STRING "freebsd"
|
#define OS_STRING "freebsd"
|
||||||
|
#elif defined(__OpenBSD__)
|
||||||
|
#define OS_STRING "openbsd"
|
||||||
|
#elif defined(__NetBSD__)
|
||||||
|
#define OS_STRING "netbsd"
|
||||||
|
#endif
|
||||||
|
|
||||||
#define ID_INLINE inline
|
#define ID_INLINE inline
|
||||||
#define PATH_SEP '/'
|
#define PATH_SEP '/'
|
||||||
|
|
||||||
|
@ -195,58 +202,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//=============================================================== OpenBSD ===
|
|
||||||
|
|
||||||
#ifdef __OpenBSD__
|
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <machine/endian.h>
|
|
||||||
|
|
||||||
#define OS_STRING "openbsd"
|
|
||||||
#define ID_INLINE inline
|
|
||||||
#define PATH_SEP '/'
|
|
||||||
|
|
||||||
#ifdef __i386__
|
|
||||||
#define ARCH_STRING "i386"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if BYTE_ORDER == BIG_ENDIAN
|
|
||||||
#define Q3_BIG_ENDIAN
|
|
||||||
#else
|
|
||||||
#define Q3_LITTLE_ENDIAN
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define DLL_EXT ".so"
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//================================================================ NetBSD ===
|
|
||||||
|
|
||||||
// This is very much like the FreeBSD one and can probably be merged
|
|
||||||
#ifdef __NetBSD__
|
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <machine/endian.h>
|
|
||||||
|
|
||||||
#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 ===
|
//================================================================= SUNOS ===
|
||||||
|
|
||||||
#ifdef __sun
|
#ifdef __sun
|
||||||
|
@ -274,6 +229,22 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//================================================================== IRIX ===
|
||||||
|
|
||||||
|
#ifdef __sgi
|
||||||
|
|
||||||
|
#define OS_STRING "irix"
|
||||||
|
#define ID_INLINE __inline
|
||||||
|
#define PATH_SEP '/'
|
||||||
|
|
||||||
|
#define ARCH_STRING "mips"
|
||||||
|
|
||||||
|
#define Q3_BIG_ENDIAN // SGI's MIPS are always big endian
|
||||||
|
|
||||||
|
#define DLL_EXT ".so"
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
//================================================================== Q3VM ===
|
//================================================================== Q3VM ===
|
||||||
|
|
||||||
#ifdef Q3_VM
|
#ifdef Q3_VM
|
||||||
|
|
|
@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
=============================================================
|
=============================================================
|
||||||
|
|
|
@ -23,6 +23,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
#include "../qcommon/q_shared.h"
|
#include "../qcommon/q_shared.h"
|
||||||
#include "../qcommon/qcommon.h"
|
#include "../qcommon/qcommon.h"
|
||||||
|
|
||||||
|
// Require a minimum version of SDL
|
||||||
|
#define MINSDL_MAJOR 1
|
||||||
|
#define MINSDL_MINOR 2
|
||||||
|
#define MINSDL_PATCH 7
|
||||||
|
|
||||||
// Input subsystem
|
// Input subsystem
|
||||||
void IN_Init (void);
|
void IN_Init (void);
|
||||||
void IN_Frame (void);
|
void IN_Frame (void);
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
InlineFunctionExpansion="2"
|
InlineFunctionExpansion="2"
|
||||||
PreprocessorDefinitions="_WIN32;WIN32;NDEBUG;_WINDOWS;USE_OPENAL;_CRT_SECURE_NO_DEPRECATE;MINSDL_MAJOR=1;MINSDL_MINOR=2;MINSDL_PATCH=7;BOTLIB;USE_ICON;USE_CURL"
|
PreprocessorDefinitions="_WIN32;WIN32;NDEBUG;_WINDOWS;USE_OPENAL;_CRT_SECURE_NO_DEPRECATE;BOTLIB;USE_ICON;USE_CURL"
|
||||||
StringPooling="true"
|
StringPooling="true"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
|
|
Loading…
Reference in a new issue