[issue45536] Verify OpenSSL APIs in configure script

2021-10-20 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45536] Verify OpenSSL APIs in configure script

2021-10-20 Thread miss-islington
miss-islington added the comment: New changeset 5537b9f10510735447bea81079ac586f46decf20 by Miss Islington (bot) in branch '3.10': bpo-45536: Check OpenSSL APIs in configure (GH-29088) https://github.com/python/cpython/commit/5537b9f10510735447bea81079ac586f46decf20 --

[issue45536] Verify OpenSSL APIs in configure script

2021-10-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 1.0 -> 2.0 pull_requests: +27369 pull_request: https://github.com/python/cpython/pull/29099 ___ Python tracker

[issue45536] Verify OpenSSL APIs in configure script

2021-10-20 Thread Christian Heimes
Christian Heimes added the comment: New changeset 81520fe677d15cc7f9af5140bc5f9eca8409ad90 by Christian Heimes in branch 'main': bpo-45536: Check OpenSSL APIs in configure (GH-29088) https://github.com/python/cpython/commit/81520fe677d15cc7f9af5140bc5f9eca8409ad90 --

[issue45536] Verify OpenSSL APIs in configure script

2021-10-20 Thread Christian Heimes
Christian Heimes added the comment: Example output: $ ./configure checking whether compiling and linking against OpenSSL works... yes checking for --with-openssl-rpath... checking whether OpenSSL provides required APIs... yes $ ./configure

[issue45536] Verify OpenSSL APIs in configure script

2021-10-20 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +27354 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29088 ___ Python tracker

[issue45536] Verify OpenSSL APIs in configure script

2021-10-20 Thread Christian Heimes
New submission from Christian Heimes : In thread [1] Robin Becker requested to check for working OpenSSL in configure script. With reasonable effort it is possible to probe for basic APIs such as minimum SSL and EVP interface. [1]