mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
53 lines
2.1 KiB
CMake
53 lines
2.1 KiB
CMake
# Freebsd: contrib/cppkafka/include/cppkafka/detail/endianness.h:53:23: error: 'betoh16' was not declared in this scope
|
|
if (NOT ARCH_ARM AND NOT ARCH_32 AND NOT APPLE AND NOT OS_FREEBSD AND OPENSSL_FOUND)
|
|
option (ENABLE_RDKAFKA "Enable kafka" ON)
|
|
endif ()
|
|
|
|
if (NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/cppkafka/CMakeLists.txt")
|
|
message (WARNING "submodule contrib/cppkafka is missing. to fix try run: \n git submodule update --init --recursive")
|
|
set (ENABLE_RDKAFKA 0)
|
|
endif ()
|
|
|
|
if (ENABLE_RDKAFKA)
|
|
|
|
if (OS_LINUX AND NOT ARCH_ARM AND USE_LIBGSASL)
|
|
option (USE_INTERNAL_RDKAFKA_LIBRARY "Set to FALSE to use system librdkafka instead of the bundled" ${NOT_UNBUNDLED})
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_RDKAFKA_LIBRARY AND NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/librdkafka/CMakeLists.txt")
|
|
message (WARNING "submodule contrib/librdkafka is missing. to fix try run: \n git submodule update --init --recursive")
|
|
set (USE_INTERNAL_RDKAFKA_LIBRARY 0)
|
|
set (MISSING_INTERNAL_RDKAFKA_LIBRARY 1)
|
|
endif ()
|
|
|
|
if (NOT USE_INTERNAL_RDKAFKA_LIBRARY)
|
|
find_library (RDKAFKA_LIB rdkafka)
|
|
find_path (RDKAFKA_INCLUDE_DIR NAMES librdkafka/rdkafka.h PATHS ${RDKAFKA_INCLUDE_PATHS})
|
|
if (USE_STATIC_LIBRARIES AND NOT OS_FREEBSD)
|
|
find_library (SASL2_LIBRARY sasl2)
|
|
endif ()
|
|
set (CPPKAFKA_LIBRARY cppkafka) # TODO: try to use unbundled version.
|
|
endif ()
|
|
|
|
if (RDKAFKA_LIB AND RDKAFKA_INCLUDE_DIR)
|
|
set (USE_RDKAFKA 1)
|
|
set (RDKAFKA_LIBRARY ${RDKAFKA_LIB} ${OPENSSL_LIBRARIES})
|
|
set (CPPKAFKA_LIBRARY cppkafka)
|
|
if (SASL2_LIBRARY)
|
|
list (APPEND RDKAFKA_LIBRARY ${SASL2_LIBRARY})
|
|
endif ()
|
|
if (LZ4_LIBRARY)
|
|
list (APPEND RDKAFKA_LIBRARY ${LZ4_LIBRARY})
|
|
endif ()
|
|
elseif (NOT MISSING_INTERNAL_RDKAFKA_LIBRARY AND NOT ARCH_ARM)
|
|
set (USE_INTERNAL_RDKAFKA_LIBRARY 1)
|
|
set (RDKAFKA_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/librdkafka/src")
|
|
set (RDKAFKA_LIBRARY rdkafka)
|
|
set (CPPKAFKA_LIBRARY cppkafka)
|
|
set (USE_RDKAFKA 1)
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
message (STATUS "Using librdkafka=${USE_RDKAFKA}: ${RDKAFKA_INCLUDE_DIR} : ${RDKAFKA_LIBRARY} ${CPPKAFKA_LIBRARY}")
|