From: Arfrever Frehtes Taifersar Arahesis Date: Thu, 2 Feb 2017 17:42:29 +0000 (+0100) Subject: net-libs/neon: Fix compatibility with LibreSSL (bug #607812). X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=fa940322b14d81e123340b34ccdd5a407facc0ab;p=gentoo.git net-libs/neon: Fix compatibility with LibreSSL (bug #607812). --- diff --git a/net-libs/neon/neon-0.30.2.ebuild b/net-libs/neon/neon-0.30.2.ebuild index f80cf70e59e0..f63b661705b5 100644 --- a/net-libs/neon/neon-0.30.2.ebuild +++ b/net-libs/neon/neon-0.30.2.ebuild @@ -43,6 +43,11 @@ src_prepare() { # Use CHOST-prefixed version of xml2-config for cross-compilation. sed -e "s/AC_CHECK_PROG(XML2_CONFIG,/AC_CHECK_TOOL(XML2_CONFIG,/" -i macros/neon-xml-parser.m4 || die "sed failed" + # Use OpenSSL <1.1 compatibility code with LibreSSL. + # Functions EVP_PKEY_up_ref(), EVP_PKEY_get0_RSA(), RSA_meth_get0_app_data(), RSA_meth_new(), RSA_meth_free(), + # RSA_meth_set_priv_enc(), RSA_meth_set0_app_data() are not implemented in LibreSSL 2.5.1. + sed -e "s/#if OPENSSL_VERSION_NUMBER < 0x10100000L/& || defined(LIBRESSL_VERSION_NUMBER)/" -i src/ne_openssl.c src/ne_pkcs11.c || die "sed failed" + eapply_user AT_M4DIR="macros" eautoreconf