From owner-svn-ports-all@freebsd.org Mon Oct 3 06:53:15 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 DDC33AC6A44; Mon, 3 Oct 2016 06:53:15 +0000 (UTC) (envelope-from jbeich@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 AB322E48; Mon, 3 Oct 2016 06:53:15 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u936rEmY079540; Mon, 3 Oct 2016 06:53:14 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u936rEj8079539; Mon, 3 Oct 2016 06:53:14 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201610030653.u936rEj8079539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 3 Oct 2016 06:53:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423167 - head/security/xmlsec1/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: Mon, 03 Oct 2016 06:53:16 -0000 Author: jbeich Date: Mon Oct 3 06:53:14 2016 New Revision: 423167 URL: https://svnweb.freebsd.org/changeset/ports/423167 Log: security/xmlsec1: unbreak on 9.x signatures.c:36: error: expected declaration specifiers or '...' before 'ECDSA_SIG' signatures.c: In function 'ECDSA_SIG_get0': signatures.c:38: error: 'sig' undeclared (first use in this function) signatures.c:38: error: (Each undeclared identifier is reported only once signatures.c:38: error: for each function it appears in.) Reported by: pkg-fallout Approved by: portmgr blanket Added: head/security/xmlsec1/files/ head/security/xmlsec1/files/patch-src_openssl_signatures.c (contents, props changed) Added: head/security/xmlsec1/files/patch-src_openssl_signatures.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/xmlsec1/files/patch-src_openssl_signatures.c Mon Oct 3 06:53:14 2016 (r423167) @@ -0,0 +1,10 @@ +--- src/openssl/signatures.c.orig 2016-04-20 16:26:22 UTC ++++ src/openssl/signatures.c +@@ -10,6 +10,7 @@ + + #include + ++#include // ECDSA_SIG + #include + #include + #include