mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
d456aa86ef
This reverts commit 89419ceb9b
(curl part moved to separate commit)
Squashed:
- termcap removed
- fix for cassandra on apple merged
- cmake: fix "Can't find system zlib library" in unbundled build
- cmake: fix condition when testing for rdkafka platform
- cmake: PROTOBUF_OLD_ABI_COMPAT shouldn't be enabled for internal protobuf
Signed-off-by: Konstantin Podshumok <kpp.live+signed@gmail.com>
24 lines
880 B
CMake
24 lines
880 B
CMake
macro(find_contrib_lib LIB_NAME)
|
|
|
|
string(TOLOWER ${LIB_NAME} LIB_NAME_LC)
|
|
string(TOUPPER ${LIB_NAME} LIB_NAME_UC)
|
|
string(REPLACE "-" "_" LIB_NAME_UC ${LIB_NAME_UC})
|
|
|
|
option (USE_INTERNAL_${LIB_NAME_UC}_LIBRARY "Use bundled library ${LIB_NAME} instead of system" ${NOT_UNBUNDLED})
|
|
|
|
if (NOT USE_INTERNAL_${LIB_NAME_UC}_LIBRARY)
|
|
find_package ("${LIB_NAME}")
|
|
if (NOT ${LIB_NAME_UC}_FOUND)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Cannot use system ${LIB_NAME}")
|
|
endif()
|
|
endif ()
|
|
|
|
if (NOT ${LIB_NAME_UC}_FOUND)
|
|
set (USE_INTERNAL_${LIB_NAME_UC}_LIBRARY 1)
|
|
set (${LIB_NAME_UC}_LIBRARIES ${LIB_NAME_LC})
|
|
set (${LIB_NAME_UC}_INCLUDE_DIR ${${LIB_NAME_UC}_CONTRIB_INCLUDE_DIR})
|
|
endif ()
|
|
|
|
message (STATUS "Using ${LIB_NAME}: ${${LIB_NAME_UC}_INCLUDE_DIR} : ${${LIB_NAME_UC}_LIBRARIES}")
|
|
endmacro()
|