* add libb2 as dep * remove "-Wl,--large-address-aware", default now via makepkg * remove 2to3 logic, no longer in Python
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 8b03054894af72bcee062a2de138ad17a08e3d7c Mon Sep 17 00:00:00 2001
|
|
From: Naveen M K <naveen521kk@gmail.com>
|
|
Date: Tue, 20 Jun 2023 20:17:23 +0530
|
|
Subject: [PATCH 080/N] Don't build _posixsubprocess on Windows.
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index bc9a610..8069aaa 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -8206,7 +8206,6 @@ PY_STDLIB_MOD_SIMPLE([_json])
|
|
PY_STDLIB_MOD_SIMPLE([_lsprof])
|
|
PY_STDLIB_MOD_SIMPLE([_opcode])
|
|
PY_STDLIB_MOD_SIMPLE([_pickle])
|
|
-PY_STDLIB_MOD_SIMPLE([_posixsubprocess])
|
|
PY_STDLIB_MOD_SIMPLE([_queue])
|
|
PY_STDLIB_MOD_SIMPLE([_random])
|
|
PY_STDLIB_MOD_SIMPLE([select])
|
|
@@ -8257,6 +8256,7 @@ PY_STDLIB_MOD([_scproxy],
|
|
[], [-framework SystemConfiguration -framework CoreFoundation])
|
|
PY_STDLIB_MOD([syslog], [], [test "$ac_cv_header_syslog_h" = yes])
|
|
PY_STDLIB_MOD([termios], [], [test "$ac_cv_header_termios_h" = yes])
|
|
+PY_STDLIB_MOD([_posixsubprocess], [], [test "$MACHDEP" != "win32"])
|
|
|
|
dnl _elementtree loads libexpat via CAPI hook in pyexpat
|
|
PY_STDLIB_MOD([pyexpat],
|