nginx: fix cross
This commit is contained in:
parent
198443cbf8
commit
c2c7666da2
|
@ -1,4 +1,4 @@
|
|||
#define NGX_CONFIGURE " --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --sbin-path=/usr/bin/nginx --pid-path=/run/nginx.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/tmp/nginx/client-body --http-proxy-temp-path=/var/tmp/nginx/proxy --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi --http-scgi-temp-path=/var/tmp/nginx/scgi --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --with-imap --with-imap_ssl_module --with-ipv6 --with-pcre-jit --with-file-aio --with-http_gunzip_module --with-http_spdy_module --with-http_dav_module --with-http_gzip_static_module --with-http_realip_module --with-http_ssl_module --with-http_stub_status_module"
|
||||
#define NGX_CONFIGURE " --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --sbin-path=/usr/bin/nginx --pid-path=/run/nginx.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/tmp/nginx/client-body --http-proxy-temp-path=/var/tmp/nginx/proxy --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi --http-scgi-temp-path=/var/tmp/nginx/scgi --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --with-mail --with-mail_ssl_module --with-pcre-jit --with-file-aio --with-http_gunzip_module --with-http_v2_module --with-http_dav_module --with-http_gzip_static_module --with-http_realip_module --with-http_ssl_module --with-http_stub_status_module --with-http_geoip_module"
|
||||
|
||||
#ifndef NGX_HAVE_GCC_ATOMIC
|
||||
#define NGX_HAVE_GCC_ATOMIC 1
|
||||
|
@ -15,6 +15,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_GCC_BSWAP64
|
||||
#define NGX_HAVE_GCC_BSWAP64 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_EPOLL
|
||||
#define NGX_HAVE_EPOLL 1
|
||||
#endif
|
||||
|
@ -30,6 +35,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_EPOLLEXCLUSIVE
|
||||
#define NGX_HAVE_EPOLLEXCLUSIVE 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_O_PATH
|
||||
#define NGX_HAVE_O_PATH 1
|
||||
#endif
|
||||
|
@ -50,8 +60,13 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_SCHED_SETAFFINITY
|
||||
#define NGX_HAVE_SCHED_SETAFFINITY 1
|
||||
#ifndef NGX_HAVE_PR_SET_KEEPCAPS
|
||||
#define NGX_HAVE_PR_SET_KEEPCAPS 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_CAPABILITIES
|
||||
#define NGX_HAVE_CAPABILITIES 1
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -108,11 +123,26 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_SCHED_SETAFFINITY
|
||||
#define NGX_HAVE_SCHED_SETAFFINITY 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_REUSEPORT
|
||||
#define NGX_HAVE_REUSEPORT 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_TRANSPARENT_PROXY
|
||||
#define NGX_HAVE_TRANSPARENT_PROXY 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_IP_BIND_ADDRESS_NO_PORT
|
||||
#define NGX_HAVE_IP_BIND_ADDRESS_NO_PORT 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_IP_PKTINFO
|
||||
#define NGX_HAVE_IP_PKTINFO 1
|
||||
#endif
|
||||
|
@ -184,7 +214,7 @@
|
|||
|
||||
|
||||
#ifndef NGX_MAX_SIZE_T_VALUE
|
||||
#define NGX_MAX_SIZE_T_VALUE 2147483647L
|
||||
#define NGX_MAX_SIZE_T_VALUE 2147483647
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -212,8 +242,9 @@
|
|||
#define NGX_TIME_T_LEN (sizeof("-2147483648") - 1)
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_MAX_TIME_T_VALUE
|
||||
#define NGX_MAX_TIME_T_VALUE 2147483647L
|
||||
#define NGX_MAX_TIME_T_VALUE 2147483647
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -247,6 +278,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_CLOCK_MONOTONIC
|
||||
#define NGX_HAVE_CLOCK_MONOTONIC 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_POSIX_MEMALIGN
|
||||
#define NGX_HAVE_POSIX_MEMALIGN 1
|
||||
#endif
|
||||
|
@ -337,6 +373,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HTTP_HEADERS
|
||||
#define NGX_HTTP_HEADERS 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HTTP_GZIP
|
||||
#define NGX_HTTP_GZIP 1
|
||||
#endif
|
||||
|
@ -417,31 +458,6 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_OPENSSL_MD5_H
|
||||
#define NGX_HAVE_OPENSSL_MD5_H 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_OPENSSL_MD5
|
||||
#define NGX_OPENSSL_MD5 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_MD5
|
||||
#define NGX_HAVE_MD5 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_OPENSSL_SHA1_H
|
||||
#define NGX_HAVE_OPENSSL_SHA1_H 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_HAVE_SHA1
|
||||
#define NGX_HAVE_SHA1 1
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NGX_ZLIB
|
||||
#define NGX_ZLIB 1
|
||||
#endif
|
||||
|
@ -535,5 +551,3 @@
|
|||
#ifndef NGX_GROUP
|
||||
#define NGX_GROUP "nginx"
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue