diff options
author | Christian Heimes <christian@python.org> | 2022-08-16 11:44:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-16 11:44:02 (GMT) |
commit | ab4d72954f3c3fe4bdf51dc6a9cf0ed38f210a68 (patch) | |
tree | 2c581495c8508413569525df1d826c6bcc9f6647 /Misc | |
parent | bfc2028df075317fc9cc311169fc67677a93a42d (diff) | |
download | cpython-ab4d72954f3c3fe4bdf51dc6a9cf0ed38f210a68.zip cpython-ab4d72954f3c3fe4bdf51dc6a9cf0ed38f210a68.tar.gz cpython-ab4d72954f3c3fe4bdf51dc6a9cf0ed38f210a68.tar.bz2 |
gh-95957: Add instructions for Tcl/Tk and OpenSSL on RHEL/CentOS 7 (#95964)
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2022-08-13-20-34-51.gh-issue-95957.W9ZZAx.rst | 2 | ||||
-rw-r--r-- | Misc/rhel7/README.md | 19 | ||||
-rw-r--r-- | Misc/rhel7/openssl.pc | 3 | ||||
-rw-r--r-- | Misc/rhel7/tcl.pc | 4 | ||||
-rw-r--r-- | Misc/rhel7/tk.pc | 5 |
5 files changed, 33 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2022-08-13-20-34-51.gh-issue-95957.W9ZZAx.rst b/Misc/NEWS.d/next/Documentation/2022-08-13-20-34-51.gh-issue-95957.W9ZZAx.rst new file mode 100644 index 0000000..c617bd4 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-08-13-20-34-51.gh-issue-95957.W9ZZAx.rst @@ -0,0 +1,2 @@ +What's New 3.11 now has instructions for how to provide compiler and +linker flags for Tcl/Tk and OpenSSL on RHEL 7 and CentOS 7. diff --git a/Misc/rhel7/README.md b/Misc/rhel7/README.md new file mode 100644 index 0000000..8642e7c --- /dev/null +++ b/Misc/rhel7/README.md @@ -0,0 +1,19 @@ +# pkg-config overrides for RHEL 7 and CentOS 7 + +RHEL 7 and CentOS 7 do not provide pkg-config `.pc` files for Tcl/Tk. The + OpenSSL 1.1.1 pkg-config file is named `openssl11.pc` and not picked up + by Python's `configure` script. + +To build Python with system Tcl/Tk libs and OpenSSL 1.1 package, first +install the developer packages and the `pkgconfig` package with `pkg-config` +command. + +```shell +sudo yum install pkgconfig 'tcl-devel >= 8.5.12' 'tk-devel >= 8.5.12' openssl11-devel +``` + +The run `configure` with `PKG_CONFIG_PATH` environment variable. + +```shell +PKG_CONFIG_PATH=Misc/rhel7 ./configure -C +``` diff --git a/Misc/rhel7/openssl.pc b/Misc/rhel7/openssl.pc new file mode 100644 index 0000000..ffccd36 --- /dev/null +++ b/Misc/rhel7/openssl.pc @@ -0,0 +1,3 @@ +Name: OpenSSL +Version: 1.1.1k +Requires: libssl11 libcrypto11 diff --git a/Misc/rhel7/tcl.pc b/Misc/rhel7/tcl.pc new file mode 100644 index 0000000..922eb51 --- /dev/null +++ b/Misc/rhel7/tcl.pc @@ -0,0 +1,4 @@ +Name: Tool Command Language +Version: 8.5.12 +Libs: -ltcl8.5 -ltclstub8.5 +# Libs.private: -ldl -lz -lpthread -lm diff --git a/Misc/rhel7/tk.pc b/Misc/rhel7/tk.pc new file mode 100644 index 0000000..67cebb2 --- /dev/null +++ b/Misc/rhel7/tk.pc @@ -0,0 +1,5 @@ +Name: The Tk Toolkit +Version: 8.5.12 +Requires: tcl >= 8.5.12 +Libs: -ltk8.5 -ltkstub8.5 +# Libs.private: -lXft -lfontconfig -lfreetype -lfontconfig -lX11 |