* add libb2 as dep * remove "-Wl,--large-address-aware", default now via makepkg * remove 2to3 logic, no longer in Python
25 lines
847 B
Diff
25 lines
847 B
Diff
From e218b41b12e944fcecdb645ebbd2a521d481ef3b Mon Sep 17 00:00:00 2001
|
|
From: Naveen M K <naveen521kk@gmail.com>
|
|
Date: Fri, 23 Jun 2023 20:13:23 +0530
|
|
Subject: [PATCH 084/N] include `_multiprocessing/semaphore.c` on win32
|
|
|
|
while building `_multiprocessing` extension
|
|
also, always build that module on win32
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index e74d042..556dfa1 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -8225,7 +8225,7 @@ PY_STDLIB_MOD_SIMPLE([_zoneinfo])
|
|
|
|
dnl multiprocessing modules
|
|
PY_STDLIB_MOD([_multiprocessing],
|
|
- [], [test "$ac_cv_func_sem_unlink" = "yes"],
|
|
+ [], [test "$ac_cv_func_sem_unlink" = "yes" -o "$MACHDEP" = "win32"],
|
|
[-I\$(srcdir)/Modules/_multiprocessing])
|
|
PY_STDLIB_MOD([_posixshmem],
|
|
[], [test "$have_posix_shmem" = "yes"],
|