mirror of
https://github.com/apache/impala.git
synced 2025-12-30 03:01:44 -05:00
Change-Id: I5bfe77f9a871018e7a67553ed270e2df53006962 Reviewed-on: http://gerrit.cloudera.org:8080/4361 Reviewed-by: Alex Behm <alex.behm@cloudera.com> Tested-by: Internal Jenkins
74 lines
2.4 KiB
CMake
74 lines
2.4 KiB
CMake
##############################################################################
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
##############################################################################
|
|
|
|
# - 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
|
|
)
|