mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +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>
12 lines
451 B
CMake
12 lines
451 B
CMake
option (USE_SIMDJSON "Use simdjson" ${ENABLE_LIBRARIES})
|
|
|
|
if (NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/simdjson/include/simdjson.h")
|
|
message (WARNING "submodule contrib/simdjson is missing. to fix try run: \n git submodule update --init --recursive")
|
|
if (USE_SIMDJSON)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't find internal simdjson library")
|
|
endif()
|
|
return()
|
|
endif ()
|
|
|
|
message(STATUS "Using simdjson=${USE_SIMDJSON}")
|