diff options
author | Christian Heimes <christian@python.org> | 2021-03-19 09:29:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-19 09:29:25 (GMT) |
commit | 32eba61ea431c76f15a910c0a4eded7f5f8b9b34 (patch) | |
tree | 4e927023cfd797501d0dc8cf160068acfb4f61b9 /Doc/whatsnew | |
parent | ff8c77fe96c1e0e1822f3b821e9c6dcfbec22a56 (diff) | |
download | cpython-32eba61ea431c76f15a910c0a4eded7f5f8b9b34.zip cpython-32eba61ea431c76f15a910c0a4eded7f5f8b9b34.tar.gz cpython-32eba61ea431c76f15a910c0a4eded7f5f8b9b34.tar.bz2 |
bpo-43466: Add --with-openssl-rpath configure option (GH-24820)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 25f71c4..362ce8f 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1181,6 +1181,12 @@ Build Changes and ``--with-tcltk-libs`` configuration options. (Contributed by Manolis Stamatogiannakis in :issue:`42603`.) +* Add ``--with-openssl-rpath`` option to ``configure`` script. The option + simplifies building Python with a custom OpenSSL installation, e.g. + ``./configure --with-openssl=/path/to/openssl --with-openssl-rpath=auto``. + (Contributed by Christian Heimes in :issue:`43466`.) + + C API Changes ============= |