summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-11-21 09:45:31 (GMT)
committerGitHub <noreply@github.com>2021-11-21 09:45:31 (GMT)
commitf201d261cf53365b5769a434ca2bb21a892bd23f (patch)
treecc769eec3c5fefa09019c435b7e99007674b6b7a /Modules
parent4f006a789a35f5d1a7ef142bd1304ce167392457 (diff)
downloadcpython-f201d261cf53365b5769a434ca2bb21a892bd23f.zip
cpython-f201d261cf53365b5769a434ca2bb21a892bd23f.tar.gz
cpython-f201d261cf53365b5769a434ca2bb21a892bd23f.tar.bz2
bpo-45847: Port grp, spwd, termios, resource, syslog to PY_STDLIB_MOD (GH-29668)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Setup.stdlib.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in
index fa553fb..495cfb4 100644
--- a/Modules/Setup.stdlib.in
+++ b/Modules/Setup.stdlib.in
@@ -61,8 +61,14 @@
# Modules with some UNIX dependencies
#
-# Linux and FreeBSD, needs sys/soundcard.h or linux/soundcard.h
+@MODULE_GRP_TRUE@grp grpmodule.c
+# needs sys/soundcard.h or linux/soundcard.h (Linux, FreeBSD)
@MODULE_OSSAUDIODEV_TRUE@ossaudiodev ossaudiodev.c
+@MODULE_RESOURCE_TRUE@resource resource.c
+# AIX has shadow passwords, but does not provide getspent API
+@MODULE_SPWD_TRUE@spwd spwdmodule.c
+@MODULE_SYSLOG_TRUE@syslog syslogmodule.c
+@MODULE_TERMIOS_TRUE@termios termios.c
############################################################################