[Bf-blender-cvs] [5d0de39] master: fix Mac build for Xcode < 8

Mike Erwin noreply at git.blender.org
Tue Sep 27 16:17:00 CEST 2016


Commit: 5d0de39238998da025ca2f6ee73b4c0fa0051c28
Author: Mike Erwin
Date:   Tue Sep 27 16:16:47 2016 +0200
Branches: master
https://developer.blender.org/rB5d0de39238998da025ca2f6ee73b4c0fa0051c28

fix Mac build for Xcode < 8

We need a long-term fix, but this will get 2.78 out the door.

===================================================================

M	intern/ghost/intern/GHOST_SystemCocoa.mm

===================================================================

diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm
index 880cb07..173f59c 100644
--- a/intern/ghost/intern/GHOST_SystemCocoa.mm
+++ b/intern/ghost/intern/GHOST_SystemCocoa.mm
@@ -283,7 +283,17 @@ extern "C" int GHOST_HACK_getFirstFile(char buf[FIRSTFILEBUFLG])
  * CocoaAppDelegate
  * ObjC object to capture applicationShouldTerminate, and send quit event
  **/
+#if defined(__clang_major__) && __clang_major__ <= 7
+/* FIXME(merwin & Juicyfruit): long-term fix for proper protocol to use
+ * merwin thinks NSApplicationDelegate is the correct protocol here. Has been around since 10.6 so we should be good... what's the problem?
+ * https://developer.apple.com/reference/appkit/nsapplicationdelegate?language=objc
+ */
+ at interface CocoaAppDelegate : NSObject <NSFileManagerDelegate> {
+#else
+/* for Xcode 8 */
 @interface CocoaAppDelegate : NSObject <NSApplicationDelegate> {
+#endif
+
 	GHOST_SystemCocoa *systemCocoa;
 }
 - (void)setSystemCocoa:(GHOST_SystemCocoa *)sysCocoa;




More information about the Bf-blender-cvs mailing list