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 /Makefile.pre.in | |
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 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 8d335a7..e784b43 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -302,10 +302,6 @@ _PYTHON_HOST_PLATFORM=@_PYTHON_HOST_PLATFORM@ BUILD_GNU_TYPE= @build@ HOST_GNU_TYPE= @host@ -# Tcl and Tk config info from --with-tcltk-includes and -libs options -TCLTK_INCLUDES= @TCLTK_INCLUDES@ -TCLTK_LIBS= @TCLTK_LIBS@ - # The task to run while instrumented when building the profile-opt target. # To speed up profile generation, we don't run the full unit test suite # by default. The default is "-m test --pgo". To run more tests, use @@ -736,10 +732,8 @@ sharedmods: $(BUILDPYTHON) pybuilddir.txt @LIBMPDEC_INTERNAL@ @LIBEXPAT_INTERNAL *) quiet="";; \ esac; \ echo "$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \ - _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \ $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build"; \ $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \ - _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \ $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build |