dev-db/sqlcipher: fix building with LibreSSL 2.8

Signed-off-by: Sergey Popov <pinkbyte@gentoo.org>
Reported-by: Dmitry Grigoriev <dimgel@mail.ru>
Closes: https://bugs.gentoo.org/678502
Package-Manager: Portage-2.3.51, Repoman-2.3.10
This commit is contained in:
Sergey Popov
2019-02-26 12:54:37 +03:00
parent 0d9de5dfd9
commit 1f3fafce7f
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
--- a/src/crypto_openssl.c 2017-12-21 14:31:28.000000000 -0500
+++ b/src/crypto_openssl.c 2019-02-22 12:33:54.110516410 -0500
@@ -47,7 +47,7 @@
static unsigned int openssl_init_count = 0;
static sqlite3_mutex* openssl_rand_mutex = NULL;
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || LIBRESSL_VERSION_NUMBER < 0x2080000L
static HMAC_CTX *HMAC_CTX_new(void)
{
HMAC_CTX *ctx = OPENSSL_malloc(sizeof(*ctx));

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -36,6 +36,9 @@ REQUIRED_USE="
DOCS=( README.md )
src_prepare() {
# bug #678502
eapply "${FILESDIR}/${P}-libressl-2.8.patch"
append-cflags -DSQLITE_HAS_CODEC
eapply_user
eautoreconf