summaryrefslogtreecommitdiff
path: root/cmake/modules/FindLdap.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/modules/FindLdap.cmake')
-rw-r--r--cmake/modules/FindLdap.cmake35
1 files changed, 0 insertions, 35 deletions
diff --git a/cmake/modules/FindLdap.cmake b/cmake/modules/FindLdap.cmake
deleted file mode 100644
index 188debd..0000000
--- a/cmake/modules/FindLdap.cmake
+++ /dev/null
@@ -1,35 +0,0 @@
-# - Try to find the LDAP client libraries
-# Once done this will define
-#
-# LDAP_FOUND - system has libldap
-# LDAP_INCLUDE_DIR - the ldap include directory
-# LDAP_LIBRARIES - libldap + liblber (if found) library
-# LBER_LIBRARIES - liblber library
-
-if(LDAP_INCLUDE_DIR AND LDAP_LIBRARIES)
- # Already in cache, be silent
- set(Ldap_FIND_QUIETLY TRUE)
-endif()
-
-FIND_PATH(LDAP_INCLUDE_DIR ldap.h)
-FIND_LIBRARY(LDAP_LIBRARIES NAMES ldap)
-FIND_LIBRARY(LBER_LIBRARIES NAMES lber)
-
-if(LDAP_INCLUDE_DIR AND LDAP_LIBRARIES)
- set(LDAP_FOUND TRUE)
- if(LBER_LIBRARIES)
- set(LDAP_LIBRARIES ${LDAP_LIBRARIES} ${LBER_LIBRARIES})
- endif()
-endif()
-
-if(LDAP_FOUND)
- if(NOT Ldap_FIND_QUIETLY)
- message(STATUS "Found ldap: ${LDAP_LIBRARIES}")
- endif()
-else()
- if(Ldap_FIND_REQUIRED)
- message(FATAL_ERROR "Could NOT find ldap")
- endif()
-endif()
-
-MARK_AS_ADVANCED(LDAP_INCLUDE_DIR LDAP_LIBRARIES LBER_LIBRARIES)