diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-12-27 21:36:32 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-12-27 21:36:32 (GMT) |
commit | 95c16629d3549e7306d297ed09e26e58b151f720 (patch) | |
tree | b6d9d79119a31b9029a4bad9d82c27ea362886b3 /pyconfig.h.in | |
parent | a5f6f2aba34dcf8f2a7e899aff0d7c37218502e9 (diff) | |
download | cpython-95c16629d3549e7306d297ed09e26e58b151f720.zip cpython-95c16629d3549e7306d297ed09e26e58b151f720.tar.gz cpython-95c16629d3549e7306d297ed09e26e58b151f720.tar.bz2 |
fix for old kernels which don't have epoll_create1
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 6b49721..accc893 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -196,6 +196,9 @@ /* Define if you have the 'epoll' functions. */ #undef HAVE_EPOLL +/* Define if you have the 'epoll_create1' function. */ +#undef HAVE_EPOLL_CREATE1 + /* Define to 1 if you have the `erf' function. */ #undef HAVE_ERF |