diff options
author | Ned Deily <nad@python.org> | 2020-05-18 08:32:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 08:32:38 (GMT) |
commit | 1731d6da263e9a2d6e783e87a8a5d5ce58fda46d (patch) | |
tree | 9aa610afd6986443ce998af1f5a0a4b53d4feb97 /Misc | |
parent | 58205a0217e91232cc1e945dbfe4e387d636eb76 (diff) | |
download | cpython-1731d6da263e9a2d6e783e87a8a5d5ce58fda46d.zip cpython-1731d6da263e9a2d6e783e87a8a5d5ce58fda46d.tar.gz cpython-1731d6da263e9a2d6e783e87a8a5d5ce58fda46d.tar.bz2 |
bpo-34956: Fix macOS _tkinter use of Tcl/Tk in /Library/Frameworks (GH-20171)
_tkinter now builds and links with non-system Tcl and Tk frameworks if they
are installed in /Library/Frameworks as had been the case on older releases
of macOS. If a macOS SDK is explicitly configured, by using ./configure
--enable-universalsdk= or -isysroot, only a Library/Frameworks directory in
the SDK itself is searched. The default behavior can still be overridden with
configure --with-tcltk-includes and --with-tcltk-libs.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2020-05-18-02-43-11.bpo-34956.35IcGF.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2020-05-18-02-43-11.bpo-34956.35IcGF.rst b/Misc/NEWS.d/next/macOS/2020-05-18-02-43-11.bpo-34956.35IcGF.rst new file mode 100644 index 0000000..6ad9c1a --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2020-05-18-02-43-11.bpo-34956.35IcGF.rst @@ -0,0 +1,6 @@ +_tkinter now builds and links with non-system Tcl and Tk frameworks if they +are installed in /Library/Frameworks as had been the case on older releases +of macOS. If a macOS SDK is explicitly configured, by using ./configure +--enable-universalsdk= or -isysroot, only a Library/Frameworks directory in +the SDK itself is searched. The default behavior can still be overridden with +configure --with-tcltk-includes and --with-tcltk-libs. |