30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 3ac5f2fc5c320fd0c185e3faca5f48fdfcd9a3c8 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 082/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 56bd3c1..c1188de 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -7879,7 +7879,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])
|
|
@@ -7932,6 +7931,7 @@ PY_STDLIB_MOD([_scproxy],
|
|
PY_STDLIB_MOD([spwd], [], [test "$ac_cv_func_getspent" = yes -o "$ac_cv_func_getspnam" = yes])
|
|
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],
|