diff options
author | Christian Heimes <christian@python.org> | 2021-11-26 18:36:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 18:36:48 (GMT) |
commit | 4ebde73b8e416eeb1fd5d2ca3283f7ddb534c5b1 (patch) | |
tree | 1749ac9f7a8cd2f6231d08c240f240c82130e884 /Modules | |
parent | b0b10e146b1cbf9c5dfa44af116a2eeb0f210e8b (diff) | |
download | cpython-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.c | 20 |
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__ */ |