Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Apr 2018 17:21:02 +0000 (UTC)
From:      Bernard Spil <brnrd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r466808 - head/net-p2p/transmission-cli/files
Message-ID:  <201804081721.w38HL2Jl021419@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brnrd
Date: Sun Apr  8 17:21:02 2018
New Revision: 466808
URL: https://svnweb.freebsd.org/changeset/ports/466808

Log:
  net-p2p/transmission-cli: Fix build with LibreSSL 2.7
  
   - LibreSSL 2.7 adds OpenSSL 1.1 API
  
  PR:		226953
  Approved by:	crees (maintainer)

Added:
  head/net-p2p/transmission-cli/files/patch-libtransmission_crypto-utils-openssl.c   (contents, props changed)

Added: head/net-p2p/transmission-cli/files/patch-libtransmission_crypto-utils-openssl.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/transmission-cli/files/patch-libtransmission_crypto-utils-openssl.c	Sun Apr  8 17:21:02 2018	(r466808)
@@ -0,0 +1,11 @@
+--- libtransmission/crypto-utils-openssl.c.orig	2018-01-23 19:17:43 UTC
++++ libtransmission/crypto-utils-openssl.c
+@@ -230,7 +230,7 @@ tr_rc4_process (tr_rc4_ctx_t   handle,
+ ****
+ ***/
+ 
+-#if OPENSSL_VERSION_NUMBER < 0x10100000 || defined(LIBRESSL_VERSION_NUMBER)
++#if OPENSSL_VERSION_NUMBER < 0x10100000 || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000)
+ static inline int
+ DH_set0_pqg (DH     * dh,
+              BIGNUM * p,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804081721.w38HL2Jl021419>