nginx: fix arm EAGAIN
This commit is contained in:
parent
0bfa4992c5
commit
04f7ebe979
2 changed files with 46 additions and 1 deletions
|
@ -98,11 +98,31 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_DLOPEN
|
||||
#define NGX_HAVE_DLOPEN 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_SCHED_YIELD
|
||||
#define NGX_HAVE_SCHED_YIELD 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_REUSEPORT
|
||||
#define NGX_HAVE_REUSEPORT 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_IP_PKTINFO
|
||||
#define NGX_HAVE_IP_PKTINFO 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_IPV6_RECVPKTINFO
|
||||
#define NGX_HAVE_IPV6_RECVPKTINFO 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_DEFERRED_ACCEPT
|
||||
#define NGX_HAVE_DEFERRED_ACCEPT 1
|
||||
#endif
|
||||
|
@ -138,6 +158,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_SYS_EVENTFD_H
|
||||
#define NGX_HAVE_SYS_EVENTFD_H 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_UNIX_DOMAIN
|
||||
#define NGX_HAVE_UNIX_DOMAIN 1
|
||||
#endif
|
||||
|
@ -207,6 +232,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_PWRITEV
|
||||
#define NGX_HAVE_PWRITEV 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_SYS_NERR
|
||||
#define NGX_SYS_NERR 135
|
||||
#endif
|
||||
|
@ -337,6 +367,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HTTP_X_FORWARDED_FOR
|
||||
#define NGX_HTTP_X_FORWARDED_FOR 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HTTP_SSL
|
||||
#define NGX_HTTP_SSL 1
|
||||
#endif
|
||||
|
@ -347,6 +382,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HTTP_UPSTREAM_ZONE
|
||||
#define NGX_HTTP_UPSTREAM_ZONE 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_STAT_STUB
|
||||
#define NGX_STAT_STUB 1
|
||||
#endif
|
||||
|
@ -407,6 +447,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_GEOIP_V6
|
||||
#define NGX_HAVE_GEOIP_V6 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_PREFIX
|
||||
#define NGX_PREFIX "/etc/nginx/"
|
||||
#endif
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'nginx'
|
||||
pkgname=nginx
|
||||
version=1.10.1
|
||||
revision=2
|
||||
revision=3
|
||||
makedepends="pcre-devel libressl-devel $(vopt_if geoip geoip-devel)"
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
# fake configure run on host
|
||||
|
|
Loading…
Reference in a new issue