mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-25 03:10:31 +00:00
OS X: Workaround weird problem in OS X 10.6 with defines.
Apparently !defined(__MAC_10_6) doesn't work?
This commit is contained in:
parent
1cfe152225
commit
a31907dc70
@ -5,9 +5,10 @@
|
||||
#define GCC_VER(x,y,z) ((x) * 10000 + (y) * 100 + (z))
|
||||
#define GCC_VERSION GCC_VER(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
|
||||
|
||||
#if (GCC_VERSION >= GCC_VER(4,4,0) && __GXX_EXPERIMENTAL_CXX0X__ || defined(__APPLE__)) \
|
||||
// Note: __MAC_10_7 is defined on 10.7+.
|
||||
#if (GCC_VERSION >= GCC_VER(4,4,0) && __GXX_EXPERIMENTAL_CXX0X__ || defined(__MAC_10_7)) \
|
||||
/* GCC 4.4 provides <mutex>, except on these platforms: */ \
|
||||
&& !defined(ANDROID) && !defined(__SYMBIAN32__) && !defined(IOS) && !defined(__MAC_10_6)
|
||||
&& !defined(ANDROID) && !defined(__SYMBIAN32__) && !defined(IOS)
|
||||
#include <mutex>
|
||||
#else
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user