svn commit: r534701 - head/www/h2o/files

Christian S.J. Peron csjp at FreeBSD.org
Sat May 9 01:52:03 UTC 2020


Author: csjp (src committer)
Date: Sat May  9 01:52:02 2020
New Revision: 534701
URL: https://svnweb.freebsd.org/changeset/ports/534701

Log:
  Fix h2o build when building with libressl
  
  PR:	242863
  Reported by:	Ulas SAYGIN
  Reviewed by:	dch
  Approved by:	dch
  Differential Revision:	https://reviews.freebsd.org/D24455

Added:
  head/www/h2o/files/patch-deps_neverbleed_neverbleed.c   (contents, props changed)

Added: head/www/h2o/files/patch-deps_neverbleed_neverbleed.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/h2o/files/patch-deps_neverbleed_neverbleed.c	Sat May  9 01:52:02 2020	(r534701)
@@ -0,0 +1,11 @@
+--- deps/neverbleed/neverbleed.c.orig	2019-08-12 14:09:44 UTC
++++ deps/neverbleed/neverbleed.c
+@@ -630,7 +630,7 @@ static int sign_stub(struct expbuf_t *buf)
+     return 0;
+ }
+ 
+-#if !OPENSSL_1_1_API
++#if !OPENSSL_1_1_API && (!defined(LIBRESSL_VERSION_NUMBER) || LIBRESSL_VERSION_NUMBER < 0x2070000fL)
+ 
+ static void RSA_get0_key(const RSA *rsa, const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
+ {


More information about the svn-ports-head mailing list