Try harder to fix build against 10.4 SDK

This commit is contained in:
Tor Lillqvist
2012-12-21 18:38:36 +02:00
parent debd56b20e
commit d978085ab2

View File

@@ -46,7 +46,7 @@
#include <Carbon/Carbon.h>
#include "postmac.h"
#if !defined(MAC_OS_X_VERSION_10_7)
#if MACOSX_SDK_VERSION < 1070
enum {
NSFullScreenWindowMask = (1 << 14)
@@ -57,9 +57,9 @@ enum {
NSWindowCollectionBehaviorFullScreenAuxiliary = (1 << 8)
};
#if !defined(MAC_OS_X_VERSION_10_5)
#if MACOSX_SDK_VERSION < 1050
typedef unsigned int NSWindowCollectionBehavior;
typedef NSUInteger NSWindowCollectionBehavior;
#endif