summaryrefslogtreecommitdiff
path: root/pkg/python/patch
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2018-08-23 13:46:27 -0700
committerMichael Forney <mforney@mforney.org>2018-08-26 13:29:08 -0700
commitd91ba51ce99e7d8f202f234cf23782eae6fdc0ad (patch)
treed37a8f18f84b8d08ff1483a14bee2deda7bfeca3 /pkg/python/patch
parent30374560967b8f757ec0d714ccf8d8e3bdaa7b3b (diff)
python: Update to 3.7.0
Diffstat (limited to 'pkg/python/patch')
-rw-r--r--pkg/python/patch/0001-Fix-build-with-libressl-2.7.0.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkg/python/patch/0001-Fix-build-with-libressl-2.7.0.patch b/pkg/python/patch/0001-Fix-build-with-libressl-2.7.0.patch
deleted file mode 100644
index feb83c7e..00000000
--- a/pkg/python/patch/0001-Fix-build-with-libressl-2.7.0.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From b7f437785aa3616066e5c5845e466f49b50db263 Mon Sep 17 00:00:00 2001
-From: Michael Forney <mforney@mforney.org>
-Date: Thu, 22 Mar 2018 23:42:12 -0700
-Subject: [PATCH] Fix build with libressl-2.7.0
-
----
- Modules/_ssl.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Modules/_ssl.c b/Modules/_ssl.c
-index c54e43c2b4..93e15c91d0 100644
---- a/Modules/_ssl.c
-+++ b/Modules/_ssl.c
-@@ -104,7 +104,7 @@ struct py_ssl_library_code {
- /* Include generated data (error codes) */
- #include "_ssl_data.h"
-
--#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER)
-+#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && (!defined(LIBRESSL_VERSION_NUMBER) || LIBRESSL_VERSION_NUMBER >= 0x2070000fL)
- # define OPENSSL_VERSION_1_1 1
- #endif
-
---
-2.17.0
-