Files
MINGW-packages/mingw-w64-python/0086-distutils-find-import-library.patch
Christoph Reiter 4177c0198b python: Update to 3.10.8
See https://github.com/msys2-contrib/cpython-mingw/pull/110

update-patches: remove git version signature to keep the diff smaller
2022-10-15 15:57:24 +02:00

27 lines
946 B
Diff

From d2b7729abf961a200b889c3534a6eb15ad7e8cc9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?=
<alexey.pawlow@gmail.com>
Date: Thu, 17 Jun 2021 18:51:36 +0530
Subject: [PATCH 086/N] distutils: find import library
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
---
Lib/distutils/cygwinccompiler.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py
index 1960ef8..39ad631 100644
--- a/Lib/distutils/cygwinccompiler.py
+++ b/Lib/distutils/cygwinccompiler.py
@@ -91,6 +91,7 @@ class CygwinCCompiler(UnixCCompiler):
obj_extension = ".o"
static_lib_extension = ".a"
shared_lib_extension = ".dll"
+ dylib_lib_extension = ".dll.a"
static_lib_format = "lib%s%s"
shared_lib_format = "%s%s"
exe_extension = ".exe"