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
Reported-by: Toralf Förster <toralf@gentoo.org> Gentoo-Bug: 622114 Package-Manager: Portage-2.3.5, Repoman-2.3.1
This commit is contained in:
11
dev-db/sqlcipher/files/sqlcipher-3.4.1-libressl.patch
Normal file
11
dev-db/sqlcipher/files/sqlcipher-3.4.1-libressl.patch
Normal file
@@ -0,0 +1,11 @@
|
||||
--- a/src/crypto_openssl.c 2017-07-06 08:11:21.560000000 +0300
|
||||
+++ b/src/crypto_openssl.c 2017-07-06 08:11:32.180000000 +0300
|
||||
@@ -46,7 +46,7 @@
|
||||
static unsigned int openssl_init_count = 0;
|
||||
static sqlite3_mutex* openssl_rand_mutex = NULL;
|
||||
|
||||
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
|
||||
static HMAC_CTX *HMAC_CTX_new(void)
|
||||
{
|
||||
HMAC_CTX *ctx = OPENSSL_malloc(sizeof(*ctx));
|
||||
@@ -33,6 +33,9 @@ DOCS=( README.md )
|
||||
src_prepare() {
|
||||
append-cflags -DSQLITE_HAS_CODEC
|
||||
|
||||
# bug #622114
|
||||
epatch "${FILESDIR}/${P}-libressl.patch"
|
||||
|
||||
eapply_user
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user