forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
101 lines (88 loc) · 3.7 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright (c) 2017, 2023, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is also distributed with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation. The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have included with MySQL.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Configuration for building LDAP SASL Authentication Plugin (client-side)
#
INCLUDE(CheckIncludeFile)
# If cmake was invoked with -DWITH_AUTHENTICATION_LDAP=1
# then fail if we are unable to build the LDAP plugin.
MACRO(CROAK_AND_RETURN)
IF (WITH_AUTHENTICATION_LDAP)
MESSAGE(FATAL_ERROR ${ARGV})
ELSE()
MESSAGE(STATUS ${ARGV}
"Skipping the LDAP SASL client authentication plugin.")
RETURN()
ENDIF()
ENDMACRO()
IF(NOT HAVE_SASL_SASL_H)
CROAK_AND_RETURN("Required SASL header is missing.")
ENDIF()
# On windows the LDAP system header is Winldap.h and is in some Windows SDK.
IF(NOT WIN32 AND NOT HAVE_LBER_H)
CROAK_AND_RETURN("Required LBER header is missing.")
ENDIF()
IF(FREEBSD)
# To locate /usr/local/include/sasl/sasl.h
INCLUDE_DIRECTORIES(SYSTEM /usr/local/include)
ENDIF()
MYSQL_ADD_PLUGIN(authentication_ldap_sasl_client
auth_ldap_sasl_client.cc
log_client.cc
LINK_LIBRARIES
${SASL_LIBRARY}
# Uncomment to verify that all symbols are found.
# ${LINK_FLAG_NO_UNDEFINED} ${SSL_LIBRARIES}
CLIENT_ONLY
MODULE_ONLY
MODULE_OUTPUT_NAME "authentication_ldap_sasl_client")
# The plugin may need symbols which are not loaded by the client.
IF(STATIC_SASL_LIBRARY)
TARGET_LINK_LIBRARIES(authentication_ldap_sasl_client ${SSL_LIBRARIES})
ENDIF()
IF(WIN32)
GET_FILENAME_COMPONENT(SASL_DLL_NAME ${SASL_LIBRARY_DLL} NAME)
GET_FILENAME_COMPONENT(SASL_SCRAM_PLUGIN_NAME "${SASL_SCRAM_PLUGIN}" NAME)
MESSAGE(STATUS "SASL_INCLUDE_DIR = ${SASL_INCLUDE_DIR}")
MESSAGE(STATUS "SASL_LIBRARY_DLL = ${SASL_LIBRARY_DLL}")
MESSAGE(STATUS "SASL_SCRAM_PLUGIN = ${SASL_SCRAM_PLUGIN}")
# Note that "libsasl.dll" and "saslSCRAM.dll" go into the "bin" directory
# where "mysql.exe" and other client executables are located.
INSTALL(FILES "${SASL_LIBRARY_DLL}"
DESTINATION ${INSTALL_BINDIR}
COMPONENT SharedLibraries)
INSTALL(FILES "${SASL_SCRAM_PLUGIN}"
DESTINATION ${INSTALL_BINDIR}
COMPONENT SharedLibraries)
# To run client executables that load the plug-in from the build tree we need
# to copy the SASL library DLL and SASL SCRAM library DLL to the
# same directory as the client executables.
ADD_CUSTOM_COMMAND(TARGET authentication_ldap_sasl_client POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
"${SASL_LIBRARY_DLL}"
"${CMAKE_BINARY_DIR}/client/${CMAKE_CFG_INTDIR}/${SASL_DLL_NAME}"
COMMAND ${CMAKE_COMMAND} -E copy_if_different
"${SASL_SCRAM_PLUGIN}"
"${CMAKE_BINARY_DIR}/client/${CMAKE_CFG_INTDIR}/${SASL_SCRAM_PLUGIN_NAME}"
)
ADD_DEPENDENCIES(authentication_ldap_sasl_client mysqltest)
ENDIF()