summaryrefslogtreecommitdiff
path: root/archivers/libarchive
diff options
context:
space:
mode:
authorsevan <sevan@pkgsrc.org>2018-10-01 00:37:51 +0000
committersevan <sevan@pkgsrc.org>2018-10-01 00:37:51 +0000
commitbbd4bbdcb79cacb6f335e38f7ac7e764880251f0 (patch)
tree5fd309c6c567318bd56b020636959be685790211 /archivers/libarchive
parentb1fa0c1c05e1ad6ae7ab8b855d92fc76e8173c64 (diff)
downloadpkgsrc-bbd4bbdcb79cacb6f335e38f7ac7e764880251f0.tar.gz
Fix build with LibreSSL 2.7
https://github.com/libarchive/libarchive/commit/5da00ad75b09e262774ec3675bbe4d5a4502a852
Diffstat (limited to 'archivers/libarchive')
-rw-r--r--archivers/libarchive/files/libarchive/archive_openssl_hmac_private.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/archivers/libarchive/files/libarchive/archive_openssl_hmac_private.h b/archivers/libarchive/files/libarchive/archive_openssl_hmac_private.h
index 59f95b80af8..921249bb945 100644
--- a/archivers/libarchive/files/libarchive/archive_openssl_hmac_private.h
+++ b/archivers/libarchive/files/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 < 0x20700000L)
#include <stdlib.h> /* malloc, free */
#include <string.h> /* memset */
static inline HMAC_CTX *HMAC_CTX_new(void)