summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-03-29 19:55:08 +0000
committerrubidium <rubidium@openttd.org>2009-03-29 19:55:08 +0000
commit8293be426cc8e4c6b228f906d00838d02f6edd0a (patch)
tree416d2b6997d90c7f46c4891e99e681d33b3de66a /src
parentc2ced41c044946dbc3dbfe0471816fc9d63401f1 (diff)
downloadopenttd-8293be426cc8e4c6b228f906d00838d02f6edd0a.tar.xz
(svn r15892) -Codechange: [OSX] some type fixes so OpenTTD likes more of the 3.1.x Xcodes.
Diffstat (limited to 'src')
-rw-r--r--src/os/macosx/macos.mm10
-rw-r--r--src/os/macosx/osx_stdafx.h22
-rw-r--r--src/stdafx.h8
-rw-r--r--src/video/cocoa/fullscreen.mm2
-rw-r--r--src/video/cocoa/wnd_quartz.mm6
5 files changed, 35 insertions, 13 deletions
diff --git a/src/os/macosx/macos.mm b/src/os/macosx/macos.mm
index 090e5f4b3..a79626026 100644
--- a/src/os/macosx/macos.mm
+++ b/src/os/macosx/macos.mm
@@ -33,7 +33,7 @@ static char *GetOSString()
const char *CPU;
char OS[20];
char newgrf[125];
- long sysVersion;
+ SInt32 sysVersion;
// get the hardware info
host_basic_info_data_t hostInfo;
@@ -201,7 +201,7 @@ const char *GetCurrentLocale(const char *)
*/
static long GetMacOSVersion()
{
- static long sysVersion = -1;
+ static SInt32 sysVersion = -1;
if (sysVersion != -1) return sysVersion;
@@ -211,7 +211,7 @@ static long GetMacOSVersion()
long GetMacOSVersionMajor()
{
- static long sysVersion = -1;
+ static SInt32 sysVersion = -1;
if (sysVersion != -1) return sysVersion;
@@ -229,7 +229,7 @@ long GetMacOSVersionMajor()
long GetMacOSVersionMinor()
{
- static long sysVersion = -1;
+ static SInt32 sysVersion = -1;
if (sysVersion != -1) return sysVersion;
@@ -247,7 +247,7 @@ long GetMacOSVersionMinor()
long GetMacOSVersionBugfix()
{
- static long sysVersion = -1;
+ static SInt32 sysVersion = -1;
if (sysVersion != -1) return sysVersion;
diff --git a/src/os/macosx/osx_stdafx.h b/src/os/macosx/osx_stdafx.h
index e8589b61f..8faa26e5c 100644
--- a/src/os/macosx/osx_stdafx.h
+++ b/src/os/macosx/osx_stdafx.h
@@ -5,7 +5,18 @@
#ifndef MACOS_STDAFX_H
#define MACOS_STDAFX_H
+/* __LP64__ only exists in 10.5 and higher */
+#if defined(__APPLE__) && !defined(__LP64__)
+# define __LP64__ 0
+#endif
+
+/* Check for mismatching 'architectures' */
+#if (__LP64__ && !defined(_SQ64)) || (!__LP64__ && defined(_SQ64))
+# error "Compiling 64 bits without _SQ64 set! (or vice versa)"
+#endif
+
#include <CoreServices/CoreServices.h>
+
/* remove the variables that CoreServices defines, but we define ourselves too */
#undef bool
#undef false
@@ -16,4 +27,15 @@
#define SL_ERROR OSX_SL_ERROR
+/* NSInteger and NSUInteger are part of 10.5 and higher. */
+#ifndef NSInteger
+#if __LP64__
+typedef long NSInteger;
+typedef unsigned long NSUInteger;
+#else
+typedef int NSInteger;
+typedef unsigned int NSUInteger;
+#endif /* __LP64__ */
+#endif /* NSInteger */
+
#endif /* MACOS_STDAFX_H */
diff --git a/src/stdafx.h b/src/stdafx.h
index 619fa81e7..9e0692f46 100644
--- a/src/stdafx.h
+++ b/src/stdafx.h
@@ -5,6 +5,10 @@
#ifndef STDAFX_H
#define STDAFX_H
+#if defined(__APPLE__)
+ #include "os/macosx/osx_stdafx.h"
+#endif /* __APPLE__ */
+
#if defined(__NDS__)
#include <nds/jtypes.h>
/* NDS' types for uint32/int32 are based on longs, which causes
@@ -104,10 +108,6 @@
#define CLIB_USERGROUP_PROTOS_H
#endif /* __MORPHOS__ */
-#if defined(__APPLE__)
- #include "os/macosx/osx_stdafx.h"
-#endif /* __APPLE__ */
-
#if defined(PSP)
/* PSP can only have 10 file-descriptors open at any given time, but this
* switch only limits reads via the Fio system. So keep 2 fds free for things
diff --git a/src/video/cocoa/fullscreen.mm b/src/video/cocoa/fullscreen.mm
index 2b63e0d6e..b011834a4 100644
--- a/src/video/cocoa/fullscreen.mm
+++ b/src/video/cocoa/fullscreen.mm
@@ -299,7 +299,7 @@ class FullscreenSubdriver: public CocoaSubdriver {
bool SetVideoMode(int w, int h)
{
- int exact_match;
+ boolean_t exact_match;
CFNumberRef number;
int bpp;
int gamma_error;
diff --git a/src/video/cocoa/wnd_quartz.mm b/src/video/cocoa/wnd_quartz.mm
index 518668022..aa09db1b0 100644
--- a/src/video/cocoa/wnd_quartz.mm
+++ b/src/video/cocoa/wnd_quartz.mm
@@ -65,7 +65,7 @@ class WindowQuartzSubdriver;
- (void)appDidHide:(NSNotification*)note;
- (void)appWillUnhide:(NSNotification*)note;
- (void)appDidUnhide:(NSNotification*)note;
-- (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag;
+- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag;
@end
/* Delegate for our NSWindow to send ask for quit on close */
@@ -264,7 +264,7 @@ static CGColorSpaceRef QZ_GetCorrectColorSpace()
}
-- (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag
+- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag
{
/* Make our window subclass receive these application notifications */
[ [ NSNotificationCenter defaultCenter ] addObserver:self
@@ -336,7 +336,7 @@ static CGColorSpaceRef QZ_GetCorrectColorSpace()
CGImageRef clippedImage;
NSRect rect;
const NSRect *dirtyRects;
- int dirtyRectCount;
+ NSInteger dirtyRectCount;
int n;
CGRect clipRect;
CGRect blitRect;