summarylogtreecommitdiffstats
path: root/0052-mingw-fix-ssl-dont-use-enum_certificates.patch
diff options
context:
space:
mode:
Diffstat (limited to '0052-mingw-fix-ssl-dont-use-enum_certificates.patch')
-rw-r--r--0052-mingw-fix-ssl-dont-use-enum_certificates.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/0052-mingw-fix-ssl-dont-use-enum_certificates.patch b/0052-mingw-fix-ssl-dont-use-enum_certificates.patch
new file mode 100644
index 000000000000..e4f7dc678d04
--- /dev/null
+++ b/0052-mingw-fix-ssl-dont-use-enum_certificates.patch
@@ -0,0 +1,39 @@
+From f5d305af4ee0826f1dcafe85fc7493657e667cb0 Mon Sep 17 00:00:00 2001
+From: Ray Donnelly <mingw.android@gmail.com>
+Date: Thu, 17 Jun 2021 18:52:03 +0530
+Subject: [PATCH 052/N] mingw fix ssl dont use enum_certificates
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Co-authored-by: Алексей <alexey.pawlow@gmail.com>
+Co-authored-by: Christoph Reiter <reiter.christoph@gmail.com>
+---
+ Lib/ssl.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Lib/ssl.py b/Lib/ssl.py
+index 30f4e59..dda3ae1 100644
+--- a/Lib/ssl.py
++++ b/Lib/ssl.py
+@@ -249,7 +249,7 @@ class _TLSMessageType(_IntEnum):
+ CHANGE_CIPHER_SPEC = 0x0101
+
+
+-if sys.platform == "win32":
++if sys.platform == "win32" and sys.version.find("GCC") == -1:
+ from _ssl import enum_certificates, enum_crls
+
+ from socket import socket, SOCK_STREAM, create_connection
+@@ -569,7 +569,7 @@ class SSLContext(_SSLContext):
+ def load_default_certs(self, purpose=Purpose.SERVER_AUTH):
+ if not isinstance(purpose, _ASN1Object):
+ raise TypeError(purpose)
+- if sys.platform == "win32":
++ if sys.platform == "win32" and sys.version.find("GCC") == -1:
+ for storename in self._windows_cert_stores:
+ self._load_windows_store_certs(storename, purpose)
+ self.set_default_verify_paths()
+--
+2.33.0
+