28 lines
892 B
Diff
28 lines
892 B
Diff
From bf664bb5297004cf47e5f10c66580fd1c379c990 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 036/N] build: 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>
|
|
Co-authored-by: Naveen M K <naveen521kk@gmail.com>
|
|
---
|
|
Modules/Setup.bootstrap.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Modules/Setup.bootstrap.in b/Modules/Setup.bootstrap.in
|
|
index 0ea9b25..891279e 100644
|
|
--- a/Modules/Setup.bootstrap.in
|
|
+++ b/Modules/Setup.bootstrap.in
|
|
@@ -9,7 +9,7 @@
|
|
atexit atexitmodule.c
|
|
faulthandler faulthandler.c
|
|
@MODULE_POSIXMODULE_NAME@ posixmodule.c
|
|
-_signal signalmodule.c
|
|
+_signal signalmodule.c -lws2_32
|
|
_tracemalloc _tracemalloc.c
|
|
_suggestions _suggestions.c
|
|
|