summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-11-26 18:36:48 (GMT)
committerGitHub <noreply@github.com>2021-11-26 18:36:48 (GMT)
commit4ebde73b8e416eeb1fd5d2ca3283f7ddb534c5b1 (patch)
tree1749ac9f7a8cd2f6231d08c240f240c82130e884 /Modules
parentb0b10e146b1cbf9c5dfa44af116a2eeb0f210e8b (diff)
downloadcpython-4ebde73b8e416eeb1fd5d2ca3283f7ddb534c5b1.zip
cpython-4ebde73b8e416eeb1fd5d2ca3283f7ddb534c5b1.tar.gz
cpython-4ebde73b8e416eeb1fd5d2ca3283f7ddb534c5b1.tar.bz2
bpo-40280: Move hard-coded feature checks to configure (GH-29789)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index c29d9fc..a89cff7 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -320,26 +320,6 @@ corresponding Unix manual entries for more information on calls.");
# define HAVE_CWAIT 1
# define HAVE_FSYNC 1
# define fsync _commit
-# else
- /* Unix functions that the configure script doesn't check for */
-# ifndef __VXWORKS__
-# define HAVE_EXECV 1
-# define HAVE_FORK 1
-# if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */
-# define HAVE_FORK1 1
-# endif
-# endif
-# define HAVE_GETEGID 1
-# define HAVE_GETEUID 1
-# define HAVE_GETGID 1
-# define HAVE_GETPPID 1
-# define HAVE_GETUID 1
-# define HAVE_KILL 1
-# define HAVE_OPENDIR 1
-# define HAVE_PIPE 1
-# define HAVE_SYSTEM 1
-# define HAVE_WAIT 1
-# define HAVE_TTYNAME 1
# endif /* _MSC_VER */
#endif /* ! __WATCOMC__ || __QNX__ */