[issue45749] Silently fails to build hashlib if openssl has disabled algorithms

2021-11-08 Thread Christian Heimes
Christian Heimes added the comment: Out of curiosity, which vendor / platform provides OpenSSL builds without scrypt? -- ___ Python tracker ___

[issue45749] Silently fails to build hashlib if openssl has disabled algorithms

2021-11-08 Thread Ross Burton
Ross Burton added the comment: Cool, glad to see the additional checks. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue45749] Silently fails to build hashlib if openssl has disabled algorithms

2021-11-08 Thread Christian Heimes
Christian Heimes added the comment: This is by design. As of PEP 644, Python 3.10 requires a full OpenSSL 1.1.1 build. See bpo-45627 for a discussion why we need a full build. Traditionally we also don't fail the entire build if one or more optional modules fail to build. You only get error

[issue45749] Silently fails to build hashlib if openssl has disabled algorithms

2021-11-08 Thread Ross Burton
Change by Ross Burton : -- versions: +Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45749] Silently fails to build hashlib if openssl has disabled algorithms

2021-11-08 Thread Ross Burton
New submission from Ross Burton : If my openssl is built with no-scrypt then the Python build of hashlib fails (as EVP_PBE_scrypt isn't present), but the overall compile succeeds. -- components: Build messages: 405954 nosy: rossburton2 priority: normal severity: normal status: open