]> granicus.if.org Git - libevent/commit
Do not add epoll_sub (syscall wrappers) for epoll in cmake
authorAzat Khuzhin <a3at.mail@gmail.com>
Wed, 8 Mar 2017 20:15:33 +0000 (23:15 +0300)
committerAzat Khuzhin <a3at.mail@gmail.com>
Wed, 8 Mar 2017 20:34:44 +0000 (23:34 +0300)
commit819d04937729b7f8b7c84d6c5c40c5fcd6d68dfd
tree6e97dd74a1e165bd55dc935d22b65d3b2e77d4f4
parent5aade2d30b6c5eff226cbf7b63fda5a01987ba4f
Do not add epoll_sub (syscall wrappers) for epoll in cmake

Nowadays mostly all supported OS'es has this wrappers, and some of them (like
SmartOS) has wrappers but doesn't have __NR_epoll* defines for syscall numbers,
so just drop them (instead of adding yet another check int cmake like autotools
has, since this will break building in cross-compile environment).

Also one minor note, configure doesn't added epoll_sub.c either, since it check
epoll_create() in runtime.

And I tested it in SmartOS and it even works (`make verify`).

Fixes: #463
CMakeLists.txt