aboutsummaryrefslogtreecommitdiffstats
path: root/tools/cmake/patches
diff options
context:
space:
mode:
authorDaniel Engberg <daniel.engberg.lists@pyret.net>2018-10-06 12:37:22 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2018-10-07 02:10:15 +0200
commitf6159c1e37429b6505094cfd4b6c09f4634fea38 (patch)
tree6445f597e01597508fbdab4a77bbd4492a8c09ca /tools/cmake/patches
parent9efd0cb403f68bd728a40e069a7d04b623f469e6 (diff)
downloadupstream-f6159c1e37429b6505094cfd4b6c09f4634fea38.tar.gz
upstream-f6159c1e37429b6505094cfd4b6c09f4634fea38.tar.bz2
upstream-f6159c1e37429b6505094cfd4b6c09f4634fea38.zip
tools/cmake: Update to 3.12.3
Update CMake to 3.12.3 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Diffstat (limited to 'tools/cmake/patches')
-rw-r--r--tools/cmake/patches/140-libarchive-fix-libressl.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/cmake/patches/140-libarchive-fix-libressl.patch b/tools/cmake/patches/140-libarchive-fix-libressl.patch
index ad8a0969a8..ddddc5e836 100644
--- a/tools/cmake/patches/140-libarchive-fix-libressl.patch
+++ b/tools/cmake/patches/140-libarchive-fix-libressl.patch
@@ -11,18 +11,6 @@ Signed-off-by: Bernard Spil <brnrd@FreeBSD.org>
libarchive/archive_openssl_hmac_private.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---- a/Utilities/cmlibarchive/libarchive/archive_openssl_hmac_private.h
-+++ b/Utilities/cmlibarchive/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)
--- a/Utilities/cmlibarchive/libarchive/archive_openssl_evp_private.h
+++ b/Utilities/cmlibarchive/libarchive/archive_openssl_evp_private.h
@@ -28,7 +28,8 @@