27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
From ee58680a2213f3a8b39a766d87a4c95d9029a288 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:52:10 +0530
|
|
Subject: [PATCH 056/N] fix signal module build
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
|
|
---
|
|
Modules/Setup | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Modules/Setup b/Modules/Setup
|
|
index e765e05..ecd64fe 100644
|
|
--- a/Modules/Setup
|
|
+++ b/Modules/Setup
|
|
@@ -111,7 +111,7 @@ _collections _collectionsmodule.c # Container types
|
|
_abc -DPy_BUILD_CORE_BUILTIN _abc.c # Abstract base classes
|
|
itertools itertoolsmodule.c # Functions creating iterators for efficient looping
|
|
atexit atexitmodule.c # Register functions to be run at interpreter-shutdown
|
|
-_signal -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal signalmodule.c
|
|
+_signal -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal signalmodule.c -lws2_32
|
|
_stat _stat.c # stat.h interface
|
|
time -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal timemodule.c # -lm # time operations and variables
|
|
_thread -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal _threadmodule.c # low-level threading interface
|