summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2015-11-29 21:25:55 -0800
committerAlan Antonuk <alan.antonuk@gmail.com>2015-11-29 21:25:55 -0800
commitd8851bd7af1af4508269e766442ae638334e4266 (patch)
tree51c99cac4e99b68317485b5b874a84a31f4c02bb /cmake
parent25ebb90cc8dcff14a615ada081c935b0b31d5237 (diff)
downloadrabbitmq-c-d8851bd7af1af4508269e766442ae638334e4266.tar.gz
CMake: remove unused Find{cyassl,Polarssl} files.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindPolarSSL.cmake23
-rw-r--r--cmake/FindcyaSSL.cmake23
2 files changed, 0 insertions, 46 deletions
diff --git a/cmake/FindPolarSSL.cmake b/cmake/FindPolarSSL.cmake
deleted file mode 100644
index b9d04ef..0000000
--- a/cmake/FindPolarSSL.cmake
+++ /dev/null
@@ -1,23 +0,0 @@
-# - Try to find the PolarSSL SSL Library
-# The module will set the following variables
-#
-# POLARSSL_FOUND - System has popt
-# POLARSSL_INCLUDE_DIR - The popt include directory
-# POLARSSL_LIBRARIES - The libraries needed to use popt
-
-# Find the include directories
-FIND_PATH(POLARSSL_INCLUDE_DIR
- NAMES polarssl/ssl.h
- DOC "Path containing the polarssl/ssl.h include file"
- )
-
-FIND_LIBRARY(POLARSSL_LIBRARIES
- NAMES polarssl
- DOC "polarssl library path"
- )
-
-include(FindPackageHandleStandardArgs)
-
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(POLARSSL
- REQUIRED_VARS POLARSSL_INCLUDE_DIR POLARSSL_LIBRARIES
- )
diff --git a/cmake/FindcyaSSL.cmake b/cmake/FindcyaSSL.cmake
deleted file mode 100644
index 06bac00..0000000
--- a/cmake/FindcyaSSL.cmake
+++ /dev/null
@@ -1,23 +0,0 @@
-# - Try to find the cyaSSL SSL Library
-# The module will set the following variables
-#
-# CYASSL_FOUND - System has popt
-# CYASSL_INCLUDE_DIR - The popt include directory
-# CYASSL_LIBRARIES - The libraries needed to use popt
-
-# Find the include directories
-FIND_PATH(CYASSL_INCLUDE_DIR
- NAMES cyassl/ssl.h
- DOC "Path containing the cyassl/ssl.h include file"
- )
-
-FIND_LIBRARY(CYASSL_LIBRARIES
- NAMES cyassl
- DOC "cyassl library path"
- )
-
-include(FindPackageHandleStandardArgs)
-
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(CYASSL
- REQUIRED_VARS CYASSL_INCLUDE_DIR CYASSL_LIBRARIES
- )