summaryrefslogtreecommitdiff
path: root/mobicore/common/curl/CMake/FindOpenSSL.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'mobicore/common/curl/CMake/FindOpenSSL.cmake')
-rw-r--r--mobicore/common/curl/CMake/FindOpenSSL.cmake19
1 files changed, 0 insertions, 19 deletions
diff --git a/mobicore/common/curl/CMake/FindOpenSSL.cmake b/mobicore/common/curl/CMake/FindOpenSSL.cmake
deleted file mode 100644
index 63a9d60..0000000
--- a/mobicore/common/curl/CMake/FindOpenSSL.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-# Extension of the standard FindOpenSSL.cmake
-# Adds OPENSSL_INCLUDE_DIRS and libeay32
-include("${CMAKE_ROOT}/Modules/FindOpenSSL.cmake")
-
-# Bill Hoffman told that libeay32 is necessary for him:
-find_library(SSL_LIBEAY NAMES libeay32)
-
-if(OPENSSL_FOUND)
- if(SSL_LIBEAY)
- list(APPEND OPENSSL_LIBRARIES ${SSL_LIBEAY})
- else()
- set(OPENSSL_FOUND FALSE)
- endif()
-endif()
-
-
-if(OPENSSL_FOUND)
- set(OPENSSL_INCLUDE_DIRS ${OPENSSL_INCLUDE_DIR})
-endif()