net-libs/neon: Fix compatibility with LibreSSL (bug #607812).
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Thu, 2 Feb 2017 17:42:29 +0000 (18:42 +0100)
committerMike Gilbert <floppym@gentoo.org>
Thu, 2 Feb 2017 20:06:34 +0000 (15:06 -0500)
net-libs/neon/neon-0.30.2.ebuild

index f80cf70e59e047b5b19931e34709e7316dd638a0..f63b661705b5fe55928a18ea84a15f1b561d0043 100644 (file)
@@ -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