diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2022-03-31 10:19:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 10:19:08 (GMT) |
commit | b36d222110d0d6d84dc8e973ca87d976c2423f5d (patch) | |
tree | 400ef6d69aad09d5e95ad89b64f56c60959bf175 /Modules | |
parent | 7fc39a21cb85163a456eab91b52e5fe85e7f7e3e (diff) | |
download | cpython-b36d222110d0d6d84dc8e973ca87d976c2423f5d.zip cpython-b36d222110d0d6d84dc8e973ca87d976c2423f5d.tar.gz cpython-b36d222110d0d6d84dc8e973ca87d976c2423f5d.tar.bz2 |
bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698)
- Remove ``--with-tclk-*`` options from `configure`
- Use pkg-config to detect `_tkinter` dependencies (Tcl/Tk, X11)
- Manual override via environment variables `TCLTK_CFLAGS` and `TCLTK_LIBS`
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Setup.stdlib.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in index 73f041e..22c0b14 100644 --- a/Modules/Setup.stdlib.in +++ b/Modules/Setup.stdlib.in @@ -150,12 +150,11 @@ # needs -lcrypt @MODULE__HASHLIB_TRUE@_hashlib _hashopenssl.c -# needs -ltk, -ltcl, and sometimes -lX11 -#@MODULE__TKINTER_TRUE@_tkinter _tkinter.c tkappinit.c - # Linux: -luuid, BSD/AIX: libc's uuid_create() @MODULE__UUID_TRUE@_uuid _uuidmodule.c +@MODULE__TKINTER_TRUE@_tkinter _tkinter.c tkappinit.c + ############################################################################ # macOS specific modules |