-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3[567]: fix building on macOS11
see #682
- Loading branch information
Showing
5 changed files
with
78 additions
and
7 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
10.9-libcxx/stable/main/finkinfo/languages/python35-darwin20.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff -ruN Python-3.5.10-orig/configure Python-3.5.10/configure | ||
--- Python-3.5.10-orig/configure 2020-09-05 02:22:07.000000000 -0500 | ||
+++ Python-3.5.10/configure 2020-11-14 13:19:46.000000000 -0600 | ||
@@ -3492,7 +3492,7 @@ | ||
# has no effect, don't bother defining them | ||
Darwin/[6789].*) | ||
define_xopen_source=no;; | ||
- Darwin/1[0-9].*) | ||
+ Darwin/[12][0-9].*) | ||
define_xopen_source=no;; | ||
# On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but | ||
# used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined | ||
@@ -7222,7 +7222,7 @@ | ||
ARCH_RUN_32BIT="" | ||
;; | ||
64-bit) | ||
- UNIVERSAL_ARCH_FLAGS="-arch ppc64 -arch x86_64" | ||
+ UNIVERSAL_ARCH_FLAGS="-arch x86_64" | ||
LIPO_32BIT_FLAGS="" | ||
ARCH_RUN_32BIT="true" | ||
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
10.9-libcxx/stable/main/finkinfo/languages/python36-darwin20.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/configure 2020-06-29 23:03:57.000000000 +1000 | ||
+++ b/configure 2020-06-29 23:06:58.000000000 +1000 | ||
@@ -3377,7 +3377,7 @@ | ||
# has no effect, don't bother defining them | ||
Darwin/[6789].*) | ||
define_xopen_source=no;; | ||
- Darwin/1[0-9].*) | ||
+ Darwin/[12][0-9].*) | ||
define_xopen_source=no;; | ||
# On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but | ||
# used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters