From owner-svn-ports-all@freebsd.org Fri Sep 9 19:40:59 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 21E37BD4A5C; Fri, 9 Sep 2016 19:40:59 +0000 (UTC) (envelope-from marino@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 E3387CB1; Fri, 9 Sep 2016 19:40:58 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u89JevFC036248; Fri, 9 Sep 2016 19:40:57 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u89JevRg036246; Fri, 9 Sep 2016 19:40:57 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609091940.u89JevRg036246@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Sep 2016 19:40:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421634 - in head/benchmarks/polygraph: . 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.23 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: Fri, 09 Sep 2016 19:40:59 -0000 Author: marino Date: Fri Sep 9 19:40:56 2016 New Revision: 421634 URL: https://svnweb.freebsd.org/changeset/ports/421634 Log: benchmarks/polygraph: Handle missing SSLv3 Approved by: SSL blanket Added: head/benchmarks/polygraph/files/ head/benchmarks/polygraph/files/patch-src_xstd_Ssl.cc (contents, props changed) Modified: head/benchmarks/polygraph/Makefile Modified: head/benchmarks/polygraph/Makefile ============================================================================== --- head/benchmarks/polygraph/Makefile Fri Sep 9 19:40:50 2016 (r421633) +++ head/benchmarks/polygraph/Makefile Fri Sep 9 19:40:56 2016 (r421634) @@ -35,7 +35,7 @@ LDNS_LIB_DEPENDS= libldns.so:dns/ldns LDNS_CONFIGURE_ON= --with-ldns=${LOCALBASE}/bin/ldns-config LDNS_CONFIGURE_OFF= --without-ldns SSL_DESC= SSL/HTTPS support -SSL_USE= openssl=yes +SSL_USES= ssl SSL_CONFIGURE_ON= --with-ssl=${OPENSSLBASE} SSL_CONFIGURE_OFF= --without-ssl PERL_DESC= Install Perl for PolyGraph tools Added: head/benchmarks/polygraph/files/patch-src_xstd_Ssl.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/polygraph/files/patch-src_xstd_Ssl.cc Fri Sep 9 19:40:56 2016 (r421634) @@ -0,0 +1,14 @@ +--- src/xstd/Ssl.cc.orig 2014-10-22 23:22:22 UTC ++++ src/xstd/Ssl.cc +@@ -38,9 +38,11 @@ SslCtx::SslCtx(SslProtocol protocol, con + case TLSv1: + theCtx = ::SSL_CTX_new(::TLSv1_method()); + break; ++#ifndef OPENSSL_NO_SSL3 + case SSLv3: + theCtx = ::SSL_CTX_new(::SSLv3_method()); + break; ++#endif + case SSLv23: + theCtx = ::SSL_CTX_new(::SSLv23_method()); + break;