Update from 1.1.6 to 1.1.7.
Update syslog patch. <ChangeLog> *) Feature: support of several resolvers in the "resolver" directive. Thanks to Kirill A. Korinskiy. *) Bugfix: a segmentation fault occurred on start or while reconfiguration if the "ssl" directive was used at http level and there was no "ssl_certificate" defined. *) Bugfix: reduced memory consumption while proxying of big files if they were buffered to disk. *) Bugfix: a segmentation fault might occur in a worker process if "proxy_http_version 1.1" directive was used. *) Bugfix: in the "expires @time" directive. </ChangeLog>
This commit is contained in:
parent
ef1a7001c8
commit
467720cf40
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=284822
3 changed files with 11 additions and 18 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= nginx
|
||||
PORTVERSION= 1.1.6
|
||||
PORTVERSION= 1.1.7
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://nginx.org/download/
|
||||
MASTER_SITES+= ${MASTER_SITE_LOCAL}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SHA256 (nginx-1.1.6.tar.gz) = a8a45769f454f7720ce1f8d0e46900009b9cbb4cd49d539541a49e466ff9b11f
|
||||
SIZE (nginx-1.1.6.tar.gz) = 692871
|
||||
SHA256 (nginx-1.1.7.tar.gz) = a1c0f16595a03757c6c5cc6bc17af6cb9059fc8d1681c2e0431c7bfb72fd0bf8
|
||||
SIZE (nginx-1.1.7.tar.gz) = 693853
|
||||
SHA256 (giom-nginx_accept_language_module-02262ce.tar.gz) = 3191f4caa70d9a8942c4f10b6abaaa96af451991d4b5e1e3d7b991376b00bf0c
|
||||
SIZE (giom-nginx_accept_language_module-02262ce.tar.gz) = 3398
|
||||
SHA256 (nginx-accesskey-2.0.3.tar.gz) = d9e94321e78a02de16c57f3e048fd31059fd8116ed03d6de7180f435c52502b1
|
||||
|
|
|
@ -210,9 +210,9 @@ index 5f356c3..5232ad6 100644
|
|||
|
||||
cat << END > $NGX_MAKEFILE
|
||||
|
||||
--- auto/options.orig 2010-06-18 19:51:14.000000000 +0400
|
||||
+++ auto/options 2010-12-08 13:00:42.000000000 +0300
|
||||
@@ -118,6 +118,8 @@
|
||||
--- auto/options.orig 2011-11-01 09:01:14.000000000 +0400
|
||||
+++ auto/options 2011-11-01 09:02:42.000000000 +0400
|
||||
@@ -120,6 +120,8 @@
|
||||
MD5_OPT=
|
||||
MD5_ASM=NO
|
||||
|
||||
|
@ -221,31 +221,24 @@ index 5f356c3..5232ad6 100644
|
|||
USE_SHA1=NO
|
||||
SHA1=NONE
|
||||
SHA1_OPT=
|
||||
@@ -270,6 +272,9 @@
|
||||
@@ -274,6 +276,9 @@
|
||||
--with-md5-opt=*) MD5_OPT="$value" ;;
|
||||
--with-md5-asm) MD5_ASM=YES ;;
|
||||
|
||||
+ --with-syslog) USE_SYSLOG=YES ;;
|
||||
+ --with-syslog-facility=*) SYSLOG_FACILITY="$value" ;;
|
||||
+ --with-syslog) USE_SYSLOG=YES ;;
|
||||
+ --with-syslog-facility=*) SYSLOG_FACILITY="$value" ;;
|
||||
+
|
||||
--with-sha1=*) SHA1="$value" ;;
|
||||
--with-sha1-opt=*) SHA1_OPT="$value" ;;
|
||||
--with-sha1-asm) SHA1_ASM=YES ;;
|
||||
@@ -410,6 +415,9 @@
|
||||
@@ -418,6 +423,9 @@
|
||||
--with-md5-opt=OPTIONS set additional options for md5 building
|
||||
--with-md5-asm use md5 assembler sources
|
||||
|
||||
+ --with-syslog use syslog instead of files to log messages
|
||||
+ --with-syslog use syslog instead of files to log messages
|
||||
+ --with-syslog-facility=FACILITY set syslog facility
|
||||
+
|
||||
--with-sha1=DIR set path to sha1 library sources
|
||||
--with-sha1-opt=OPTIONS set additional options for sha1 building
|
||||
--with-sha1-asm use sha1 assembler sources
|
||||
@@ -427,6 +435,7 @@
|
||||
--with-openssl-opt=OPTIONS set additional options for OpenSSL building
|
||||
|
||||
--with-debug enable the debugging logging
|
||||
+
|
||||
|
||||
END
|
||||
|
||||
|
|
Loading…
Reference in a new issue