30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 4111e19a9065a54561fa436defe17dcc94e55af3 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 7f54147..f8dbb11 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -7857,7 +7857,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])
|
|
@@ -7910,6 +7909,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],
|