From 5da00ad75b09e262774ec3675bbe4d5a4502a852 Mon Sep 17 00:00:00 2001 From: Bernard Spil Date: Sun, 1 Apr 2018 23:01:44 +0200 Subject: [PATCH] fix build with LibreSSL 2.7 LibreSSL 2.7 adds OpenSSL 1.1 API leading to conflicts on method names See also: https://bugs.freebsd.org/226853 Signed-off-by: Bernard Spil --- libarchive/archive_openssl_hmac_private.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libarchive/archive_openssl_hmac_private.h b/libarchive/archive_openssl_hmac_private.h index 59f95b80a..921249bb9 100644 --- a/libarchive/archive_openssl_hmac_private.h +++ b/libarchive/archive_openssl_hmac_private.h @@ -28,7 +28,8 @@ #include #include -#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) +#if OPENSSL_VERSION_NUMBER < 0x10100000L || \ + (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L) #include /* malloc, free */ #include /* memset */ static inline HMAC_CTX *HMAC_CTX_new(void) -- 2.47.2