Files
impala/cmake_modules/FindLdap.cmake
Martin Grund a4f84b1b1a Making CMake modules more modular for non-toolchain build
This patch makes sure that the Impala-lzo build can pickup the
cmake modules from Impala to avoid code duplication on the lzo side.

Change-Id: I7917946724ce4bfaa281e708e9ea5799b4e2cd37
Reviewed-on: http://gerrit.cloudera.org:8080/552
Reviewed-by: Martin Grund <mgrund@cloudera.com>
Tested-by: Internal Jenkins
2015-07-22 02:01:34 +00:00

55 lines
1.5 KiB
CMake

# - Find Openldap
# LDAP_ROOT hints a location
#
# This module defines
# LDAP_INCLUDE_DIR, where to find LDAP headers
# LDAP_STATIC_LIBRARY, the LDAP library to use.
# LBER_STATIC_LIBRARY, a support library for LDAP.
# ldapstatic, lberstatic, imported libraries
set(THIRDPARTY_LDAP $ENV{IMPALA_HOME}/thirdparty/openldap-$ENV{IMPALA_OPENLDAP_VERSION})
set(THIRDPARTY $ENV{IMPALA_HOME}/thirdparty)
set(LDAP_SEARCH_LIB_PATH
${OPENLDAP_ROOT}/lib
${THIRDPARTY}/openldap-$ENV{IMPALA_OPENLDAP_VERSION}/impala_install/lib
)
find_path(LDAP_INCLUDE_DIR ldap.h PATHS
${OPENLDAP_ROOT}/include
${THIRDPARTY_LDAP}/impala_install/include
NO_DEFAULT_PATH)
find_library(LDAP_STATIC_LIBRARY libldap.a
PATHS ${LDAP_SEARCH_LIB_PATH}
NO_DEFAULT_PATH
DOC "Static Openldap library"
)
find_library(LBER_STATIC_LIBRARY liblber.a
PATHS ${LDAP_SEARCH_LIB_PATH}
NO_DEFAULT_PATH
DOC "Static Openldap lber library"
)
if (NOT LDAP_STATIC_LIBRARY OR NOT LBER_STATIC_LIBRARY OR
NOT LDAP_INCLUDE_DIR)
message(FATAL_ERROR "LDAP includes and libraries NOT found.")
set(LDAP_FOUND TRUE)
else()
set(LDAP_FOUND FALSE)
add_library(ldapstatic STATIC IMPORTED)
set_target_properties(ldapstatic PROPERTIES IMPORTED_LOCATION ${LDAP_STATIC_LIBRARY})
add_library(lberstatic STATIC IMPORTED)
set_target_properties(lberstatic PROPERTIES IMPORTED_LOCATION ${LBER_STATIC_LIBRARY})
endif ()
mark_as_advanced(
LDAP_STATIC_LIBRARY
LBER_STATIC_LIBRARY
LDAP_INCLUDE_DIR
ldapstatic
lberstatic
)