mirror of https://github.com/F-Stack/f-stack.git
fix NGX_EXCLUSIVE_EVENT compile error on linux 4.5+ and glibc 2.24+
if Linux >= 4.5 and glibc >= 2.24, will compile with EPOLLEXCLUSIVE, but FreeBSD does not supported EPOLLEXCLUSIVE.
This commit is contained in:
parent
34a144bd04
commit
0f704af614
|
@ -85,7 +85,7 @@ if [ $ngx_found = yes ]; then
|
||||||
ee.events = EPOLLIN|EPOLLEXCLUSIVE;
|
ee.events = EPOLLIN|EPOLLEXCLUSIVE;
|
||||||
ee.data.ptr = NULL;
|
ee.data.ptr = NULL;
|
||||||
epoll_ctl(efd, EPOLL_CTL_ADD, fd, &ee)"
|
epoll_ctl(efd, EPOLL_CTL_ADD, fd, &ee)"
|
||||||
. auto/feature
|
# . auto/feature
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue