mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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:
11
dev-db/sqlcipher/files/sqlcipher-3.4.2-libressl-2.8.patch
Normal file
11
dev-db/sqlcipher/files/sqlcipher-3.4.2-libressl-2.8.patch
Normal 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));
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user