From owner-svn-ports-all@freebsd.org Sat Apr 16 23:45:37 2016 Return-Path: Delivered-To: svn-ports-all@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 E0383B11675; Sat, 16 Apr 2016 23:45:37 +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 936E41894; Sat, 16 Apr 2016 23:45:37 +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 u3GNjab6079218; Sat, 16 Apr 2016 23:45:36 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3GNjaBZ079216; Sat, 16 Apr 2016 23:45:36 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201604162345.u3GNjaBZ079216@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Sat, 16 Apr 2016 23:45:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413485 - in head/devel/libbrotli: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2016 23:45:38 -0000 Author: osa Date: Sat Apr 16 23:45:36 2016 New Revision: 413485 URL: https://svnweb.freebsd.org/changeset/ports/413485 Log: Update patch for Makefile.am to fix a compilation issue for www/nginx* ports when ngx_brotli enabled. Bump PORTREVISION. PR: 208829 Modified: head/devel/libbrotli/Makefile head/devel/libbrotli/files/patch-Makefile.am Modified: head/devel/libbrotli/Makefile ============================================================================== --- head/devel/libbrotli/Makefile Sat Apr 16 23:24:14 2016 (r413484) +++ head/devel/libbrotli/Makefile Sat Apr 16 23:45:36 2016 (r413485) @@ -3,7 +3,7 @@ PORTNAME= libbrotli PORTVERSION= 1.0 -PORTREVISION= 1 +PORTREVISION= 2 MASTER_SITES= https://github.com/bagder/libbrotli/archive/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} CATEGORIES= devel archivers Modified: head/devel/libbrotli/files/patch-Makefile.am ============================================================================== --- head/devel/libbrotli/files/patch-Makefile.am Sat Apr 16 23:24:14 2016 (r413484) +++ head/devel/libbrotli/files/patch-Makefile.am Sat Apr 16 23:45:36 2016 (r413485) @@ -1,26 +1,6 @@ ---- Makefile.am.orig 2016-02-13 06:10:48.000000000 -0500 -+++ Makefile.am 2016-02-14 10:28:29.982409000 -0500 -@@ -14,8 +14,7 @@ - brotli/enc/encode.cc brotli/enc/static_dict.cc \ - brotli/enc/encode_parallel.cc brotli/enc/streams.cc \ - brotli/enc/entropy_encode.cc brotli/enc/dictionary.cc \ -- brotli/enc/utf8_util.cc brotli/enc/compress_fragment.cc \ -- brotli/enc/compress_fragment_two_pass.cc -+ brotli/enc/utf8_util.cc - - DECODEHEADERS = brotli/dec/decode.h brotli/dec/state.h \ - brotli/dec/streams.h brotli/dec/types.h brotli/dec/bit_reader.h \ -@@ -32,16 +31,14 @@ - brotli/enc/literal_cost.h brotli/enc/cluster.h brotli/enc/bit_cost.h \ - brotli/enc/entropy_encode.h brotli/enc/brotli_bit_stream.h \ - brotli/enc/write_bits.h brotli/enc/static_dict_lut.h \ -- brotli/enc/encode_parallel.h brotli/enc/types.h brotli/enc/utf8_util.h \ -- brotli/enc/compress_fragment.h brotli/enc/compress_fragment_two_pass.h \ -- brotli/enc/entropy_encode_static.h -+ brotli/enc/encode_parallel.h brotli/enc/types.h brotli/enc/utf8_util.h - - EXTRA_DIST = AUTHORS README - +--- Makefile.am.orig 2016-04-16 19:40:04.016418000 -0400 ++++ Makefile.am 2016-04-16 19:40:13.154082000 -0400 +@@ -41,7 +41,7 @@ # install headers in $(includedir) with subdirs nobase_include_HEADERS = $(DECODEHEADERS) $(ENCODEHEADERS)