You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Tools/configure/configure.awk
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2588,6 +2588,7 @@ function _pyconf_register_options() {
2588
2588
pyconf_arg_enable("bolt", "", "enable usage of the llvm-bolt post-link optimizer (default is no)", "", "", "no")
2589
2589
pyconf_arg_with("platlibdir", "", "Python library directory name (default is \"lib\")", "", "", "")
2590
2590
pyconf_arg_with("wheel_pkg_dir", "", "Directory of wheel packages used by ensurepip (default: none)", "", "", "")
2591
+
pyconf_arg_enable("epoll", "", "disable epoll (default is yes if supported)", "", "", "")
2591
2592
pyconf_arg_with("c_locale_coercion", "yes", "enable C locale coercion to a UTF-8 based locale (default is yes)", "", "", "")
2592
2593
pyconf_arg_with("openssl", "", "root of the OpenSSL directory", "DIR", "", "")
2593
2594
pyconf_arg_with("openssl_rpath", "", "Set runtime library directory (rpath) for OpenSSL libraries, no (default): don't set rpath, auto: auto-detect from --with-openssl and pkg-config, DIR: set an explicit rpath", "DIR|auto|no", "", "")
@@ -6784,7 +6785,7 @@ function u_check_posix_functions( ANDROID_API_LEVEL, _i_name, blocked_len, ma
6784
6785
}
6785
6786
}
6786
6787
6787
-
function u_check_special_functions( _pyconf_cond_sys_eventfd_h, _pyconf_cond_sys_memfd_h, _pyconf_cond_sys_mman_h, _pyconf_cond_sys_timerfd_h, ac_cv_have_chflags, ac_cv_have_lchflags) {
6788
+
function u_check_special_functions( _pyconf_cond_sys_eventfd_h, _pyconf_cond_sys_memfd_h, _pyconf_cond_sys_mman_h, _pyconf_cond_sys_timerfd_h, ac_cv_have_chflags, ac_cv_have_lchflags, disable_epoll) {
6788
6789
pyconf_checking("whether dirfd is declared")
6789
6790
if (pyconf_check_decl("dirfd", "sys/types.h dirent.h", "HAVE_DIRFD")) {
6790
6791
pyconf_result("yes")
@@ -6797,8 +6798,13 @@ function u_check_special_functions( _pyconf_cond_sys_eventfd_h, _pyconf_cond_
0 commit comments