Date: Mon, 3 Oct 2016 06:53:14 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423167 - head/security/xmlsec1/files Message-ID: <201610030653.u936rEj8079539@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <string.h> + ++#include <openssl/ecdsa.h> // ECDSA_SIG + #include <openssl/evp.h> + #include <openssl/rand.h> + #include <openssl/sha.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610030653.u936rEj8079539>