diff options
author | michi_cc <michi_cc@openttd.org> | 2016-10-31 19:29:01 +0000 |
---|---|---|
committer | michi_cc <michi_cc@openttd.org> | 2016-10-31 19:29:01 +0000 |
commit | 94b3965989f23363a2863da7e819d6e8a8ff1214 (patch) | |
tree | 28799cb5fbd64a2c60c3c1288cbb128186722763 /src/os/macosx | |
parent | 51052f4961cea7203d2291b9b70ae865602b469e (diff) | |
download | openttd-94b3965989f23363a2863da7e819d6e8a8ff1214.tar.xz |
(svn r27675) -Fix [FS#6502]: [OSX] Building with 10.11 or 10.12 SDKs.
Diffstat (limited to 'src/os/macosx')
-rw-r--r-- | src/os/macosx/osx_stdafx.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/os/macosx/osx_stdafx.h b/src/os/macosx/osx_stdafx.h index 35b3f434a..4e16b5e63 100644 --- a/src/os/macosx/osx_stdafx.h +++ b/src/os/macosx/osx_stdafx.h @@ -13,6 +13,17 @@ #define MACOS_STDAFX_H +#include <AvailabilityMacros.h> + +/* We assume if these macros are defined, the SDK is also at least this version or later. */ +#ifdef MAC_OS_X_VERSION_10_7 +#define HAVE_OSX_107_SDK +#endif + +#ifdef MAC_OS_X_VERSION_10_11 +#define HAVE_OSX_1011_SDK +#endif + /* It would seem that to ensure backward compability we have to ensure that we have defined MAC_OS_X_VERSION_10_x everywhere */ #ifndef MAC_OS_X_VERSION_10_3 #define MAC_OS_X_VERSION_10_3 1030 @@ -57,8 +68,6 @@ # error "Compiling 64 bits without _SQ64 set! (or vice versa)" #endif -#include <AvailabilityMacros.h> - /* Name conflict */ #define Rect OTTDRect #define Point OTTDPoint |