diff options
author | Brad King <brad.king@kitware.com> | 2016-11-17 20:26:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-28 19:55:42 (GMT) |
commit | 7d433206cf7de8f28aa2d169ed25cd401fcfc413 (patch) | |
tree | 04c498f437c41bc3ddf92893deef6e59c6baff65 /Utilities/cmlibarchive/libarchive/archive_digest_private.h | |
parent | 5cfc2e926af645840c6a0464451af18f08528879 (diff) | |
download | CMake-7d433206cf7de8f28aa2d169ed25cd401fcfc413.zip CMake-7d433206cf7de8f28aa2d169ed25cd401fcfc413.tar.gz CMake-7d433206cf7de8f28aa2d169ed25cd401fcfc413.tar.bz2 |
libarchive: Add headers to adapt between OpenSSL 1.1 and older versions
Add private forwarding headers for `openssl/{evp,hmac}.h` to give us a
central place to add adaptation code to work across multiple
incompatible OpenSSL versions. Provide compatibility implementations of
some OpenSSL 1.1 APIs when using older OpenSSL versions.
Diffstat (limited to 'Utilities/cmlibarchive/libarchive/archive_digest_private.h')
-rw-r--r-- | Utilities/cmlibarchive/libarchive/archive_digest_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmlibarchive/libarchive/archive_digest_private.h b/Utilities/cmlibarchive/libarchive/archive_digest_private.h index 77fad58..00697ae 100644 --- a/Utilities/cmlibarchive/libarchive/archive_digest_private.h +++ b/Utilities/cmlibarchive/libarchive/archive_digest_private.h @@ -134,7 +134,7 @@ defined(ARCHIVE_CRYPTO_SHA384_OPENSSL) ||\ defined(ARCHIVE_CRYPTO_SHA512_OPENSSL) #define ARCHIVE_CRYPTO_OPENSSL 1 -#include <openssl/evp.h> +#include "archive_openssl_evp_private.h" #endif /* Windows crypto headers */ |