diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-08-02 02:34:05 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-08-02 02:34:05 (GMT) |
commit | 3e77677692e969fd0a0c14c7b927da6429e8e13e (patch) | |
tree | 3361da037f311a78d986a37b2d25456db8007ee5 /Modules/selectmodule.c | |
parent | 1c837f4010a409f0ecb31d5dde52f882b39ae9c6 (diff) | |
download | cpython-3e77677692e969fd0a0c14c7b927da6429e8e13e.zip cpython-3e77677692e969fd0a0c14c7b927da6429e8e13e.tar.gz cpython-3e77677692e969fd0a0c14c7b927da6429e8e13e.tar.bz2 |
Issue #23652: Make the select module compile against LSB headers.
Patch by Matt Frank.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r-- | Modules/selectmodule.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index ffaf865..d436f52 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -2372,11 +2372,22 @@ PyInit_select(void) PyModule_AddIntMacro(m, EPOLLONESHOT); #endif /* PyModule_AddIntConstant(m, "EPOLL_RDHUP", EPOLLRDHUP); */ + +#ifdef EPOLLRDNORM PyModule_AddIntMacro(m, EPOLLRDNORM); +#endif +#ifdef EPOLLRDBAND PyModule_AddIntMacro(m, EPOLLRDBAND); +#endif +#ifdef EPOLLWRNORM PyModule_AddIntMacro(m, EPOLLWRNORM); +#endif +#ifdef EPOLLWRBAND PyModule_AddIntMacro(m, EPOLLWRBAND); +#endif +#ifdef EPOLLMSG PyModule_AddIntMacro(m, EPOLLMSG); +#endif #ifdef EPOLL_CLOEXEC PyModule_AddIntMacro(m, EPOLL_CLOEXEC); |