freebsd-ports/archivers/libarchive/files/patch-libarchive-archive_openssl_evp_private.h
Greg Lewis 9fcaa71e46 . Fix the build with libressl-devel
PR:		226853
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
2018-03-27 07:07:16 +00:00

12 lines
488 B
C

--- libarchive/archive_openssl_evp_private.h.orig 2017-01-29 05:06:27 UTC
+++ libarchive/archive_openssl_evp_private.h
@@ -28,7 +28,8 @@
#include <openssl/evp.h>
#include <openssl/opensslv.h>
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
+ (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
#include <stdlib.h> /* malloc, free */
#include <string.h> /* memset */
static inline EVP_MD_CTX *EVP_MD_CTX_new(void)