r113 - in trunk/code: game unix
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Sep 26 16:09:19 EDT 2005
Author: tma
Date: 2005-09-26 16:09:18 -0400 (Mon, 26 Sep 2005)
New Revision: 113
Modified:
trunk/code/game/q_shared.h
trunk/code/unix/Makefile
Log:
* Some FreeBSD cleanups
* Removed the remainder of the RPM stuff from the Makefile
Modified: trunk/code/game/q_shared.h
===================================================================
--- trunk/code/game/q_shared.h 2005-09-26 16:13:14 UTC (rev 112)
+++ trunk/code/game/q_shared.h 2005-09-26 20:09:18 UTC (rev 113)
@@ -333,9 +333,9 @@
#if !idppc
static short BigShort( short l) { return ShortSwap(l); }
#define LittleShort
-static int BigLong(int l) { LongSwap(l); }
+static int BigLong(int l) { return LongSwap(l); }
#define LittleLong
-static float BigFloat(const float l) { FloatSwap(&l); }
+static float BigFloat(const float l) { return FloatSwap(&l); }
#define LittleFloat
#else
#define BigShort
Modified: trunk/code/unix/Makefile
===================================================================
--- trunk/code/unix/Makefile 2005-09-26 16:13:14 UTC (rev 112)
+++ trunk/code/unix/Makefile 2005-09-26 20:09:18 UTC (rev 113)
@@ -73,7 +73,6 @@
# extract version info
VERSION=$(shell grep Q3_VERSION ../game/q_shared.h | \
sed -e 's/.*Q3\ \(.*\)"/\1/')
-RPM_RELEASE=1
#############################################################################
# SETUP AND BUILD -- LINUX
@@ -93,7 +92,6 @@
CC=gcc
CXX=g++
- RPMARCH=$(ARCH)
ifeq ($(ARCH),alpha)
ARCH=axp
else
@@ -231,8 +229,6 @@
ARCH=x86
endif
- RPMARCH=$(ARCH)
-
BASE_CFLAGS = -pipe -Wall -Wimplicit -Wstrict-prototypes
ifeq ($(strip $(DLL_ONLY)),true)
@@ -304,18 +300,16 @@
ifneq (,$(findstring alpha,$(shell uname -m)))
ARCH=axp
- RPMARCH=alpha
else #default to i386
ARCH=i386
- RPMARCH=i386
endif #alpha test
- BASE_CFLAGS = -pipe
+ BASE_CFLAGS = -pipe -Wall
GL_CFLAGS = -I/usr/X11R6/include
- DEBUG_CFLAGS=$(BASE_CFLAGS) -g -Wall -Werror
+ DEBUG_CFLAGS=$(BASE_CFLAGS) -g
ifeq ($(ARCH),axp)
CC=gcc
More information about the quake3-commits
mailing list