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:
Travis Lee 2017-06-01 12:15:11 +08:00
parent 34a144bd04
commit 0f704af614
1 changed files with 1 additions and 1 deletions

View File

@ -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