summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-11-23 07:52:05 (GMT)
committerGitHub <noreply@github.com>2021-11-23 07:52:05 (GMT)
commitd82f2caf942fa8b94e797a2f116ee54ec303c2df (patch)
tree770322bf217be774f6dfeac075d6c0504796788e /configure
parent758a23d1c4db97b578bc16e0ea110074d65c4c52 (diff)
downloadcpython-d82f2caf942fa8b94e797a2f116ee54ec303c2df.zip
cpython-d82f2caf942fa8b94e797a2f116ee54ec303c2df.tar.gz
cpython-d82f2caf942fa8b94e797a2f116ee54ec303c2df.tar.bz2
bpo-45847: Port _socket to PY_STDLIB_MOD (GH-29713)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure b/configure
index 7c0d866..148ef58 100755
--- a/configure
+++ b/configure
@@ -724,6 +724,8 @@ MODULE__TYPING_FALSE
MODULE__TYPING_TRUE
MODULE__STRUCT_FALSE
MODULE__STRUCT_TRUE
+MODULE__SOCKET_FALSE
+MODULE__SOCKET_TRUE
MODULE_SELECT_FALSE
MODULE_SELECT_TRUE
MODULE__RANDOM_FALSE
@@ -20578,6 +20580,15 @@ fi
as_fn_append MODULE_BLOCK "MODULE_SELECT=yes$as_nl"
if true; then
+ MODULE__SOCKET_TRUE=
+ MODULE__SOCKET_FALSE='#'
+else
+ MODULE__SOCKET_TRUE='#'
+ MODULE__SOCKET_FALSE=
+fi
+ as_fn_append MODULE_BLOCK "MODULE__SOCKET=yes$as_nl"
+
+ if true; then
MODULE__STRUCT_TRUE=
MODULE__STRUCT_FALSE='#'
else
@@ -22099,6 +22110,10 @@ if test -z "${MODULE_SELECT_TRUE}" && test -z "${MODULE_SELECT_FALSE}"; then
as_fn_error $? "conditional \"MODULE_SELECT\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
+if test -z "${MODULE__SOCKET_TRUE}" && test -z "${MODULE__SOCKET_FALSE}"; then
+ as_fn_error $? "conditional \"MODULE__SOCKET\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
if test -z "${MODULE__STRUCT_TRUE}" && test -z "${MODULE__STRUCT_FALSE}"; then
as_fn_error $? "conditional \"MODULE__STRUCT\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5