qa: Add [[fallthrough]] annotations where appropriate
[quassel.git] / cmake / FindLdap.cmake
1 # Copied from https://raw.github.com/facebook/hiphop-php/master/CMake/FindLdap.cmake
2
3 # - Try to find the LDAP client libraries
4 # Once done this will define
5 #
6 #  LDAP_FOUND - system has libldap
7 #  LDAP_INCLUDE_DIR - the ldap include directory
8 #  LDAP_LIBRARIES - libldap + liblber (if found) library
9 #  LBER_LIBRARIES - liblber library
10
11 if(LDAP_INCLUDE_DIR AND LDAP_LIBRARIES)
12     # Already in cache, be silent
13     set(Ldap_FIND_QUIETLY TRUE)
14 endif(LDAP_INCLUDE_DIR AND LDAP_LIBRARIES)
15
16 # Attempt to link against ldap.h regardless of platform!
17 FIND_PATH(LDAP_INCLUDE_DIR ldap.h)
18 FIND_LIBRARY(LDAP_LIBRARIES NAMES ldap)
19 FIND_LIBRARY(LBER_LIBRARIES NAMES lber)
20
21 # It'd be nice to link against winldap on Windows, unfortunately
22 # the interfaces are different. In theory a compatibility shim
23 # could be written; if someone ever gets around to doing that these
24 # lines should be uncommented and used on Windows.
25 #   FIND_PATH(LDAP_INCLUDE_DIR winldap.h)
26 #   FIND_LIBRARY(LDAP_LIBRARIES NAMES wldap32)
27
28 if(LDAP_INCLUDE_DIR AND LDAP_LIBRARIES)
29    set(LDAP_FOUND TRUE)
30    if(LBER_LIBRARIES)
31      set(LDAP_LIBRARIES ${LDAP_LIBRARIES} ${LBER_LIBRARIES})
32    endif(LBER_LIBRARIES)
33 endif(LDAP_INCLUDE_DIR AND LDAP_LIBRARIES)
34
35 if(LDAP_FOUND)
36    if(NOT Ldap_FIND_QUIETLY)
37       message(STATUS "Found ldap: ${LDAP_LIBRARIES}")
38    endif(NOT Ldap_FIND_QUIETLY)
39 else(LDAP_FOUND)
40    if (Ldap_FIND_REQUIRED)
41         message(FATAL_ERROR "Could NOT find ldap")
42    endif (Ldap_FIND_REQUIRED)
43 endif(LDAP_FOUND)
44
45 MARK_AS_ADVANCED(LDAP_INCLUDE_DIR LDAP_LIBRARIES LBER_LIBRARIES LDAP_DIR)