summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXInit.c
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-rw-r--r--macosx/tkMacOSXInit.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c
index e03b5aa..c12c394 100644
--- a/macosx/tkMacOSXInit.c
+++ b/macosx/tkMacOSXInit.c
@@ -153,6 +153,19 @@ long tkMacOSXMacOSXVersion = 0;
[NSApp setPoolLock:0];
/*
+ * Record the OS version we are running on.
+ */
+ int minorVersion;
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1080
+ Gestalt(gestaltSystemVersionMinor, (SInt32*)&minorVersion);
+#else
+ NSOperatingSystemVersion systemVersion;
+ systemVersion = [[NSProcessInfo processInfo] operatingSystemVersion];
+ minorVersion = systemVersion.minorVersion;
+#endif
+ [NSApp setMacMinorVersion: minorVersion];
+
+ /*
* Be our own delegate.
*/
[self setDelegate:self];