From owner-svn-ports-head@freebsd.org Tue Dec 6 01:49:33 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84F05C3E0D9; Tue, 6 Dec 2016 01:49:33 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50C90659; Tue, 6 Dec 2016 01:49:33 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB61nWh3003271; Tue, 6 Dec 2016 01:49:32 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB61nWMY003270; Tue, 6 Dec 2016 01:49:32 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201612060149.uB61nWMY003270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Tue, 6 Dec 2016 01:49:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427927 - head/www/nginx-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Dec 2016 01:49:33 -0000 Author: osa Date: Tue Dec 6 01:49:32 2016 New Revision: 427927 URL: https://svnweb.freebsd.org/changeset/ports/427927 Log: Add and enable vendor's stream_ssl_preread module. Bump PORTREVISION. PR: 213661 Modified: head/www/nginx-devel/Makefile Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Tue Dec 6 01:38:31 2016 (r427926) +++ head/www/nginx-devel/Makefile Tue Dec 6 01:49:32 2016 (r427927) @@ -3,7 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.11.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ MASTER_SITES+= LOCAL/osa @@ -59,6 +59,7 @@ OPTIONS_DEFINE= \ NJS \ STREAM \ STREAM_SSL \ + STREAM_SSL_PREREAD \ THREADS \ WWW \ AJP \ @@ -132,7 +133,8 @@ OPTIONS_DEFAULT?=DSO FILE_AIO HTTP HTTP_ HTTP_DAV HTTP_FLV HTTP_GZIP_STATIC HTTP_GUNZIP_FILTER \ HTTP_MP4 HTTP_RANDOM_INDEX HTTP_REALIP HTTP_SECURE_LINK \ HTTP_SLICE HTTP_REWRITE HTTP_SSL HTTP_STATUS HTTP_SUB \ - HTTPV2 MAIL MAIL_SSL STREAM STREAM_SSL THREADS WWW + HTTPV2 MAIL MAIL_SSL STREAM STREAM_SSL STREAM_SSL_PREREAD \ + THREADS WWW DSO_DESC= Enable dynamic modules support DEBUG_DESC= Build with debugging support @@ -169,6 +171,7 @@ HTTPV2_DESC= Enable HTTP/2 protocol su NJS_DESC= Enable http_javascript module STREAM_DESC= Enable stream module STREAM_SSL_DESC= Enable stream_ssl module (SSL req.) +STREAM_SSL_PREREAD_DESC= Enable stream_ssl_preread module (SSL req.) THREADS_DESC= Enable threads support WWW_DESC= Enable html sample files AJP_DESC= 3rd party ajp module @@ -1075,6 +1078,9 @@ CONFIGURE_ARGS+=--with-stream NGINX_OPENSSL= yes USE_HTTP_SSL= yes CONFIGURE_ARGS+=--with-stream_ssl_module +.if ${PORT_OPTIONS:MSTREAM_SSL_PREREAD} +CONFIGURE_ARGS+=--with-stream_ssl_preread_module +.endif .endif .endif