diff options
author | Christian Heimes <christian@python.org> | 2022-01-07 08:15:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 08:15:20 (GMT) |
commit | 994f90c0772612780361e1dc5fa5223dce22f70a (patch) | |
tree | bd33529897df229b6fe68a0d5c1720b08d8b014a /configure.ac | |
parent | f4e325c21d6d9c2bf70224dc69d707b226f87872 (diff) | |
download | cpython-994f90c0772612780361e1dc5fa5223dce22f70a.zip cpython-994f90c0772612780361e1dc5fa5223dce22f70a.tar.gz cpython-994f90c0772612780361e1dc5fa5223dce22f70a.tar.bz2 |
bpo-45723: Fix detection of epoll (#30449)
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 d9bdf9f..ff3163f 100644 --- a/configure.ac +++ b/configure.ac @@ -4089,7 +4089,7 @@ PY_CHECK_FUNC([symlink], [#include <unistd.h>]) PY_CHECK_FUNC([fchdir], [#include <unistd.h>]) PY_CHECK_FUNC([fsync], [#include <unistd.h>]) PY_CHECK_FUNC([fdatasync], [#include <unistd.h>]) -PY_CHECK_FUNC([epoll], [#include <sys/epoll.h>]) +PY_CHECK_FUNC([epoll_create], [#include <sys/epoll.h>], [HAVE_EPOLL]) PY_CHECK_FUNC([epoll_create1], [#include <sys/epoll.h>]) PY_CHECK_FUNC([kqueue],[ #include <sys/types.h> |