mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
4c7850fdc2
* Zookeeper include fix * Update submodule contrib/poco * Fix zookeeper submodule ho-to-make doc * Update zookeeper submodule * Update submodule zookeeper * Fix compile with external zookeeper * Optional kafka * fix * Fix * fix
27 lines
1011 B
CMake
27 lines
1011 B
CMake
option (USE_INTERNAL_ZOOKEEPER_LIBRARY "Set to FALSE to use system zookeeper library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if (NOT USE_INTERNAL_ZOOKEEPER_LIBRARY)
|
|
find_library (ZOOKEEPER_LIBRARY zookeeper_mt)
|
|
find_path (ZOOKEEPER_INCLUDE_DIR NAMES zookeeper/zookeeper.h PATHS ${ZOOKEEPER_INCLUDE_PATHS})
|
|
set(ZOOKEEPER_INCLUDE_DIR "${ZOOKEEPER_INCLUDE_DIR}/zookeeper")
|
|
endif ()
|
|
|
|
if (ZOOKEEPER_LIBRARY AND ZOOKEEPER_INCLUDE_DIR)
|
|
include_directories (${ZOOKEEPER_INCLUDE_DIR})
|
|
else ()
|
|
set (USE_INTERNAL_ZOOKEEPER_LIBRARY 1)
|
|
set(WANT_CPPUNIT 0 CACHE BOOL "")
|
|
set (ZOOKEEPER_LIBRARY zookeeper)
|
|
endif ()
|
|
|
|
message (STATUS "Using zookeeper: ${ZOOKEEPER_INCLUDE_DIR} : ${ZOOKEEPER_LIBRARY}")
|
|
|
|
|
|
# how to make clickhouse branch of https://github.com/ClickHouse-Extras/zookeeper.git :
|
|
# git remote add upstream https://github.com/apache/zookeeper.git
|
|
# git checkhout upstream/master
|
|
# git branch -D clickhouse
|
|
# git checkout -b clickhouse
|
|
# git merge clickhouse_misc
|
|
# git merge clickhouse_706
|