From owner-svn-ports-all@freebsd.org Thu Jan 4 19:16:46 2018 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 B2861EAFA97; Thu, 4 Jan 2018 19:16:46 +0000 (UTC) (envelope-from ultima@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 88FA37AB78; Thu, 4 Jan 2018 19:16:46 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w04JGjOc027276; Thu, 4 Jan 2018 19:16:45 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w04JGjQR027273; Thu, 4 Jan 2018 19:16:45 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201801041916.w04JGjQR027273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 4 Jan 2018 19:16:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458047 - in head/security/certificate-transparency: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head/security/certificate-transparency: . files X-SVN-Commit-Revision: 458047 X-SVN-Commit-Repository: ports 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.25 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: Thu, 04 Jan 2018 19:16:46 -0000 Author: ultima Date: Thu Jan 4 19:16:45 2018 New Revision: 458047 URL: https://svnweb.freebsd.org/changeset/ports/458047 Log: * Revision bump for libevhtp * Fix build errors for updated libevhtp MFH: 2018Q1 Added: head/security/certificate-transparency/files/patch-cpp_net_connection__pool.cc (contents, props changed) head/security/certificate-transparency/files/patch-cpp_net_url__fetcher.cc (contents, props changed) Modified: head/security/certificate-transparency/Makefile Modified: head/security/certificate-transparency/Makefile ============================================================================== --- head/security/certificate-transparency/Makefile Thu Jan 4 19:15:27 2018 (r458046) +++ head/security/certificate-transparency/Makefile Thu Jan 4 19:16:45 2018 (r458047) @@ -3,7 +3,7 @@ PORTNAME= certificate-transparency PORTVERSION= 20161015 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= security MAINTAINER= ports@FreeBSD.org Added: head/security/certificate-transparency/files/patch-cpp_net_connection__pool.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/certificate-transparency/files/patch-cpp_net_connection__pool.cc Thu Jan 4 19:16:45 2018 (r458047) @@ -0,0 +1,18 @@ +--- cpp/net/connection_pool.cc.orig 2018-01-04 08:45:06 UTC ++++ cpp/net/connection_pool.cc +@@ -454,12 +454,12 @@ unique_ptr ConnectionPool: + kZeroMillis}; + evhtp_connection_set_timeouts(handle->connection(), &read_timeout, + &write_timeout); +- evhtp_set_hook(&handle->connection()->hooks, evhtp_hook_on_conn_error, ++ evhtp_connection_set_hook(handle->connection(), evhtp_hook_on_conn_error, + reinterpret_cast( + EvConnection::ConnectionErrorHook), + reinterpret_cast(conn.get())); +- evhtp_set_hook( +- &handle->connection()->hooks, evhtp_hook_on_connection_fini, ++ evhtp_connection_set_hook( ++ handle->connection(), evhtp_hook_on_connection_fini, + reinterpret_cast(EvConnection::ConnectionFinishedHook), + // We'll hold on to another shared_ptr to the Connection + // until evhtp tells us that it's finished with the cnxn. Added: head/security/certificate-transparency/files/patch-cpp_net_url__fetcher.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/certificate-transparency/files/patch-cpp_net_url__fetcher.cc Thu Jan 4 19:16:45 2018 (r458047) @@ -0,0 +1,11 @@ +--- cpp/net/url_fetcher.cc.orig 2018-01-04 08:54:28 UTC ++++ cpp/net/url_fetcher.cc +@@ -4,7 +4,7 @@ + #include + #include + #include +-#include ++#include + + #include "net/connection_pool.h" + #include "util/thread_pool.h"