summaryrefslogtreecommitdiff
path: root/net/freerdp1/files/patch-cmake_FindOpenSSL.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'net/freerdp1/files/patch-cmake_FindOpenSSL.cmake')
-rw-r--r--net/freerdp1/files/patch-cmake_FindOpenSSL.cmake11
1 files changed, 0 insertions, 11 deletions
diff --git a/net/freerdp1/files/patch-cmake_FindOpenSSL.cmake b/net/freerdp1/files/patch-cmake_FindOpenSSL.cmake
deleted file mode 100644
index b03bcca93b08..000000000000
--- a/net/freerdp1/files/patch-cmake_FindOpenSSL.cmake
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/FindOpenSSL.cmake.orig 2014-09-11 22:46:32 UTC
-+++ cmake/FindOpenSSL.cmake
-@@ -266,7 +266,7 @@ if (OPENSSL_INCLUDE_DIR)
- set(OPENSSL_VERSION "${_OPENSSL_VERSION}")
- elseif(OPENSSL_INCLUDE_DIR AND EXISTS "${OPENSSL_INCLUDE_DIR}/openssl/opensslv.h")
- file(STRINGS "${OPENSSL_INCLUDE_DIR}/openssl/opensslv.h" openssl_version_str
-- REGEX "^#define[\t ]+OPENSSL_VERSION_NUMBER[\t ]+0x([0-9a-fA-F])+.*")
-+ REGEX "^#[\t ]*define[\t ]+OPENSSL_VERSION_NUMBER[\t ]+0x([0-9a-fA-F])+.*")
-
- # The version number is encoded as 0xMNNFFPPS: major minor fix patch status
- # The status gives if this is a developer or prerelease and is ignored here.