git: f8ffeb6090dd - main - lang/python27: Fix build with libressl 3.5

From: Felix Palmen <zirias_at_FreeBSD.org>
Date: Fri, 04 Nov 2022 11:17:05 UTC
The branch main has been updated by zirias:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f8ffeb6090dd3b27d363c693d40975f12dfbd873

commit f8ffeb6090dd3b27d363c693d40975f12dfbd873
Author:     Felix Palmen <zirias@FreeBSD.org>
AuthorDate: 2022-10-17 10:27:08 +0000
Commit:     Felix Palmen <zirias@FreeBSD.org>
CommitDate: 2022-11-04 11:16:39 +0000

    lang/python27: Fix build with libressl 3.5
    
    Approved by:            python (maintainer, timeout), tcberner (mentor)
    Differential Revision:  https://reviews.freebsd.org/D37047
---
 lang/python27/files/patch-Modules___hashopenssl.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/lang/python27/files/patch-Modules___hashopenssl.c b/lang/python27/files/patch-Modules___hashopenssl.c
new file mode 100644
index 000000000000..3ea2cb9e2aea
--- /dev/null
+++ b/lang/python27/files/patch-Modules___hashopenssl.c
@@ -0,0 +1,20 @@
+--- Modules/_hashopenssl.c.orig	2022-10-17 10:25:01 UTC
++++ Modules/_hashopenssl.c
+@@ -56,7 +56,7 @@
+ #define _OPENSSL_SUPPORTS_SHA2
+ #endif
+ 
+-#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER)
++#if (OPENSSL_VERSION_NUMBER < 0x10100000L)
+ /* OpenSSL < 1.1.0 */
+ #define EVP_MD_CTX_new EVP_MD_CTX_create
+ #define EVP_MD_CTX_free EVP_MD_CTX_destroy
+@@ -901,7 +901,7 @@ init_hashlib(void)
+ {
+     PyObject *m, *openssl_md_meth_names;
+ 
+-#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER)
++#if (OPENSSL_VERSION_NUMBER < 0x10100000L)
+     /* Load all digest algorithms and initialize cpuid */
+     OPENSSL_add_all_algorithms_noconf();
+     ERR_load_crypto_strings();