From 5f5f4f6c2adde30e1f15ff46b209c7e4312630f8 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 19 May 2014 23:53:10 -0400 Subject: Set up the Mac OS X build to always target Mac OS X 10.6 regardless of the host system; this is what we want and by default building on 10.8 produces binaries which won't run on 10.6. This isn't working yet, though: one enum in NSApplication.h becomes empty on 10.6... --- objc_darwin.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'objc_darwin.h') diff --git a/objc_darwin.h b/objc_darwin.h index 9bff48f..4b084ee 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -5,6 +5,9 @@ #ifndef __GO_UI_OBJC_DARWIN_H__ #define __GO_UI_OBJC_DARWIN_H__ +#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_6 +#define MAC_OS_X_VERSION_MAX_ALLOWED MAC_OS_X_VERSION_10_6 + /* the Objective-C runtime headers, for id */ #include #include -- cgit v1.2.3