Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Mac/BuildScript/tk868_on_10_8_10_9.patch
12 views
1
Fix build failure with +quartz variant on OS X 10.8 and 10.9.
2
Even though Gestalt was deprecated in OS X 10.8, it should work fine
3
through OS X 10.9, and its replacement NSOperatingSystemVersion was
4
not introduced until OS X 10.10.
5
6
Patch from MacPorts project and reported upstream:
7
https://trac.macports.org/ticket/55649
8
--- tk8.6.8/macosx/tkMacOSXXStubs.c.orig 2017-12-06 09:25:08.000000000 -0600
9
+++ tk8.6.8-patched/macosx/tkMacOSXXStubs.c 2018-01-06 19:34:17.000000000 -0600
10
@@ -175,7 +175,7 @@
11
{
12
int major, minor, patch;
13
14
-#if MAC_OS_X_VERSION_MIN_REQUIRED < 1080
15
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
16
Gestalt(gestaltSystemVersionMajor, (SInt32*)&major);
17
Gestalt(gestaltSystemVersionMinor, (SInt32*)&minor);
18
Gestalt(gestaltSystemVersionBugFix, (SInt32*)&patch);
19
20