svn commit: r423167 - head/security/xmlsec1/files

Jan Beich jbeich at FreeBSD.org
Mon Oct 3 06:53:16 UTC 2016


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>


More information about the svn-ports-all mailing list