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:
Sergey Popov
2017-07-06 08:20:04 +03:00
parent a42f99f16f
commit e26a572ff1
2 changed files with 14 additions and 0 deletions

View 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));

View File

@@ -33,6 +33,9 @@ DOCS=( README.md )
src_prepare() {
append-cflags -DSQLITE_HAS_CODEC
# bug #622114
epatch "${FILESDIR}/${P}-libressl.patch"
eapply_user
eautoreconf
}