summaryrefslogtreecommitdiffhomepage
path: root/patches
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2018-05-05 16:59:05 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2018-05-05 16:59:05 +0000
commitf1617775b815e0737e59e5361254250c4b43f3ad (patch)
tree8c4df1c2563cdda322fe7c1b05afcd948aaf8048 /patches
parentaf7abc4ed4eaf4a263051685eb1f7b438532169f (diff)
downloadmidipix_build-f1617775b815e0737e59e5361254250c4b43f3ad.tar.bz2
midipix_build-f1617775b815e0737e59e5361254250c4b43f3ad.tar.xz
patches/libarchive-3.3.2.local.patch: check for both Open- & LibreSSL (via Redfoxmoon.)
Diffstat (limited to 'patches')
-rw-r--r--patches/libarchive-3.3.2.local.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/patches/libarchive-3.3.2.local.patch b/patches/libarchive-3.3.2.local.patch
new file mode 100644
index 00000000..5ab5610a
--- /dev/null
+++ b/patches/libarchive-3.3.2.local.patch
@@ -0,0 +1,12 @@
+--- a/libarchive/archive_openssl_hmac_private.h.orig 2018-03-22 20:47:12 UTC
++++ b/libarchive/archive_openssl_hmac_private.h
+@@ -28,7 +28,8 @@
+ #include <openssl/hmac.h>
+ #include <openssl/opensslv.h>
+
+-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
++ (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
+ #include <stdlib.h> /* malloc, free */
+ #include <string.h> /* memset */
+ static inline HMAC_CTX *HMAC_CTX_new(void)