r180 - in trunk/code/macosx: . Quake3.pbproj
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Wed Oct 26 15:32:15 EDT 2005
Author: tma
Date: 2005-10-26 15:32:15 -0400 (Wed, 26 Oct 2005)
New Revision: 180
Modified:
trunk/code/macosx/Quake3.pbproj/project.pbxproj
trunk/code/macosx/macosx_display.m
trunk/code/macosx/macosx_glsmp_mutex.m
trunk/code/macosx/macosx_sys.m
Log:
* Fixed some warnings on the OS X build
Modified: trunk/code/macosx/Quake3.pbproj/project.pbxproj
===================================================================
--- trunk/code/macosx/Quake3.pbproj/project.pbxproj 2005-10-26 17:09:50 UTC (rev 179)
+++ trunk/code/macosx/Quake3.pbproj/project.pbxproj 2005-10-26 19:32:15 UTC (rev 180)
@@ -34,6 +34,7 @@
LIBRARY_SEARCH_PATHS = "";
OTHER_LDFLAGS = "-bundle -undefined error";
OTHER_REZFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = qagame;
PROFILE_FLAGS = "";
SECTORDER_FLAGS = "";
@@ -170,6 +171,7 @@
LIBRARY_SEARCH_PATHS = "";
OTHER_LDFLAGS = "-bundle -undefined error";
OTHER_REZFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = cgame;
PROFILE_FLAGS = "";
SECTORDER_FLAGS = "";
@@ -4764,6 +4766,7 @@
OTHER_CFLAGS = "";
OTHER_LDFLAGS = "-bundle -undefined error";
OTHER_REZFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = ui;
SECTORDER_FLAGS = "";
WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas";
@@ -4977,6 +4980,7 @@
OTHER_CFLAGS = "-DDEDICATED -DMACOS_X -DBOTLIB -DMISSIONPACK -force_cpusubtype_ALL -Wno-long-double";
OTHER_LDFLAGS = "";
OTHER_REZFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = Q3DedicatedServer;
REZ_EXECUTABLE = YES;
SECTORDER_FLAGS = "";
@@ -7716,8 +7720,8 @@
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-O2";
OTHER_CFLAGS = "-DMACOS_X -DBOTLIB -DMISSIONPACK -DSMP -force_cpusubtype_ALL";
- OTHER_LDFLAGS = "";
OTHER_REZFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = Quake3;
SECTORDER_FLAGS = "";
USE_GCC3_PFE_SUPPORT = NO;
@@ -8758,6 +8762,7 @@
OTHER_CFLAGS = "-DMACOS_X -DBOTLIB -DMISSIONPACK -DSMP -force_cpusubtype_ALL -faltivec";
OTHER_LDFLAGS = "";
OTHER_REZFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = "Quake3 G4";
SECTORDER_FLAGS = "";
USE_GCC3_PFE_SUPPORT = NO;
@@ -10327,6 +10332,7 @@
OTHER_CFLAGS = "-DMACOS_X -DBOTLIB -DMISSIONPACK -DSMP -force_cpusubtype_ALL -faltivec -falign-loops=16 -falign-jumps=16 -fstrict-aliasing ";
OTHER_LDFLAGS = "";
OTHER_REZFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = Q3DedicatedServer;
REZ_EXECUTABLE = YES;
SECTORDER_FLAGS = "";
Modified: trunk/code/macosx/macosx_display.m
===================================================================
--- trunk/code/macosx/macosx_display.m 2005-10-26 17:09:50 UTC (rev 179)
+++ trunk/code/macosx/macosx_display.m 2005-10-26 19:32:15 UTC (rev 180)
@@ -232,7 +232,6 @@
void Sys_FadeScreens()
{
CGDisplayCount displayIndex;
- int stepIndex;
glwgamma_t *table;
NSTimeInterval start, current;
float time;
@@ -261,7 +260,6 @@
{
CGDisplayCount displayIndex;
glwgamma_t *table;
- int stepIndex;
if (!glConfig.deviceSupportsGamma)
return;
@@ -295,7 +293,6 @@
void Sys_UnfadeScreens()
{
CGDisplayCount displayIndex;
- int stepIndex;
glwgamma_t *table;
NSTimeInterval start, current;
float time;
@@ -323,7 +320,6 @@
void Sys_UnfadeScreen(CGDirectDisplayID display, glwgamma_t *table)
{
CGDisplayCount displayIndex;
- int stepIndex;
if (!glConfig.deviceSupportsGamma)
return;
Modified: trunk/code/macosx/macosx_glsmp_mutex.m
===================================================================
--- trunk/code/macosx/macosx_glsmp_mutex.m 2005-10-26 17:09:50 UTC (rev 179)
+++ trunk/code/macosx/macosx_glsmp_mutex.m 2005-10-26 19:32:15 UTC (rev 180)
@@ -84,7 +84,7 @@
// The command buffer returned might be NULL, indicating that the rendering thread should exit.
void *GLimp_RendererSleep(void)
{
- void *data;
+ volatile void *data;
GLSTAMP("GLimp_RendererSleep start", 0);
Modified: trunk/code/macosx/macosx_sys.m
===================================================================
--- trunk/code/macosx/macosx_sys.m 2005-10-26 17:09:50 UTC (rev 179)
+++ trunk/code/macosx/macosx_sys.m 2005-10-26 19:32:15 UTC (rev 180)
@@ -85,8 +85,8 @@
void * QDECL Sys_LoadDll( const char *name, char *fqpath , long (QDECL **entryPoint)(long, ...),
long (QDECL *systemcalls)(long, ...) ) {
void *libHandle;
- void (*dllEntry)( int (*syscallptr)(int, ...) );
- NSString *bundlePath, *libraryPath;
+ void (*dllEntry)( long (*syscallptr)(long, ...) );
+ NSString *libraryPath;
const char *path;
// TTimo
@@ -320,7 +320,7 @@
{
CFStringRef value;
kern_return_t krc;
- CFDictionaryRef properties;
+ CFMutableDictionaryRef properties;
qboolean isCDROM = qfalse;
io_iterator_t parentIterator;
io_object_t parent;
More information about the quake3-commits
mailing list