diff options
author | Jakub KulĂk <Kulikjak@gmail.com> | 2019-09-11 15:11:57 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2019-09-11 15:11:57 (GMT) |
commit | e20134f889a0cfcc37a46979f31a1c98b800de07 (patch) | |
tree | 0c56d2bd05ccd3160b05721e168a8658193f096a /configure.ac | |
parent | af636f4f91b8289b6dad95cb84123f6e22fd7f4f (diff) | |
download | cpython-e20134f889a0cfcc37a46979f31a1c98b800de07.zip cpython-e20134f889a0cfcc37a46979f31a1c98b800de07.tar.gz cpython-e20134f889a0cfcc37a46979f31a1c98b800de07.tar.bz2 |
bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)
Use fdwalk() on platforms that support it to implement os.closerange().
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9f5cea5c..5ca775c 100644 --- a/configure.ac +++ b/configure.ac @@ -3538,7 +3538,7 @@ fi AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ clock confstr copy_file_range ctermid dup3 execv explicit_bzero explicit_memset \ faccessat fchmod fchmodat fchown fchownat \ - fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + fdwalk fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ futimens futimes gai_strerror getentropy \ getgrgid_r getgrnam_r \ getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \ |