summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXPrivate.h
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2016-01-31 00:53:25 (GMT)
committerKevin Walzer <kw@codebykevin.com>2016-01-31 00:53:25 (GMT)
commitb5e22a7b7e4fd964d34f9d16aa7802fe7322636c (patch)
tree3d501e7a93d6440379a101cb6a89bf29cce65b4d /macosx/tkMacOSXPrivate.h
parentc3777ebd3a31648fc5427b9536d2e304e9cbcf77 (diff)
downloadtk-b5e22a7b7e4fd964d34f9d16aa7802fe7322636c.zip
tk-b5e22a7b7e4fd964d34f9d16aa7802fe7322636c.tar.gz
tk-b5e22a7b7e4fd964d34f9d16aa7802fe7322636c.tar.bz2
Fix build errors on i386 for Cocoa; thanks to Marc Culler for patch
Diffstat (limited to 'macosx/tkMacOSXPrivate.h')
-rw-r--r--macosx/tkMacOSXPrivate.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/macosx/tkMacOSXPrivate.h b/macosx/tkMacOSXPrivate.h
index 2a411f6..65d60ce 100644
--- a/macosx/tkMacOSXPrivate.h
+++ b/macosx/tkMacOSXPrivate.h
@@ -276,6 +276,10 @@ VISIBILITY_HIDDEN
NSArray *_defaultHelpMenuItems;
NSWindow *_windowWithMouse;
NSAutoreleasePool *_mainPool;
+#ifdef __i386__
+ /* The Objective C runtime used on i386 requires this. */
+ BOOL _poolProtected;
+#endif
}
@property BOOL poolProtected;
@end