| From ad9ea63b35c8eb32a43f69530ebc798b5ac12553 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:26 +0530 |
| Subject: [PATCH 018/N] MINGW setup _multiprocessing module |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| Co-authored-by: Алексей <alexey.pawlow@gmail.com> |
| --- |
| setup.py | 5 +++++ |
| 1 file changed, 5 insertions(+) |
| |
| diff --git a/setup.py b/setup.py |
| index b483dd3..1f96ad4 100644 |
| --- a/setup.py |
| +++ b/setup.py |
| @@ -1761,7 +1761,12 @@ class PyBuildExt(build_ext): |
| libraries=libs, |
| include_dirs=["Modules/_multiprocessing"])) |
| |
| + multiprocessing_libs = [] |
| + if MS_WINDOWS: |
| + multiprocessing_libs += ['ws2_32'] |
| self.add(Extension('_multiprocessing', multiprocessing_srcs, |
| + define_macros={}, |
| + libraries=multiprocessing_libs, |
| include_dirs=["Modules/_multiprocessing"])) |
| |
| def detect_uuid(self): |
| -- |
| 2.32.0 |
| |