mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
f6d8436f81
* Try travis * wip * Try travis * try * try * try * try * Revert "try" This reverts commit7ecd73c2eb
. * try unbundled * Try unbundled2 * Try undundled3 * Try unbundled4 * Try5 * try gcc7 * try6 * Try clang * Try min * try ccache * try ccache stats * no sudo * try clang * try ccache * reset changelog * Try fix clang * try limit time * Faster * try timeout * try faster * Try * try * try * try * try * try * ccache * Fix * try test * try test * Fix try_listen in some vm's * fix * test * fix * cache timeout * packages * fix * fix * fix * try emb compiler * Try emb compiler * Revert "try emb compiler" This reverts commit471713cabe
. * try * Revert "Try emb compiler" This reverts commit95e632abf6
. * Skip long * fix * fix * ccache * fix * debug * Fxi test * test fix * tes fix * Fix * Fix link * Fix odbc link * Fxi test * fix boost unbundled include * fix test * fix test * test fix * fix tests * tests * Test fail
90 lines
3.5 KiB
CMake
90 lines
3.5 KiB
CMake
option (USE_INTERNAL_POCO_LIBRARY "Set to FALSE to use system poco library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if (USE_INTERNAL_POCO_LIBRARY AND NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/poco/CMakeLists.txt")
|
|
message (WARNING "submodule contrib/poco is missing. to fix try run: \n git submodule update --init --recursive")
|
|
set (USE_INTERNAL_POCO_LIBRARY 0)
|
|
endif ()
|
|
|
|
if (NOT USE_INTERNAL_POCO_LIBRARY)
|
|
find_package (Poco COMPONENTS Net NetSSL XML Data Crypto DataODBC MongoDB)
|
|
endif ()
|
|
|
|
if (Poco_INCLUDE_DIRS AND Poco_Foundation_LIBRARY)
|
|
else ()
|
|
|
|
set (USE_INTERNAL_POCO_LIBRARY 1)
|
|
|
|
set (ENABLE_ZIP 0 CACHE BOOL "")
|
|
set (ENABLE_PAGECOMPILER 0 CACHE BOOL "")
|
|
set (ENABLE_PAGECOMPILER_FILE2PAGE 0 CACHE BOOL "")
|
|
set (ENABLE_REDIS 0 CACHE BOOL "")
|
|
set (ENABLE_DATA_SQLITE 0 CACHE BOOL "")
|
|
set (ENABLE_DATA_MYSQL 0 CACHE BOOL "")
|
|
set (ENABLE_DATA_POSTGRESQL 0 CACHE BOOL "")
|
|
set (POCO_UNBUNDLED 1 CACHE BOOL "")
|
|
set (POCO_UNBUNDLED_PCRE 0 CACHE BOOL "")
|
|
set (POCO_UNBUNDLED_EXPAT 0 CACHE BOOL "")
|
|
set (POCO_STATIC ${MAKE_STATIC_LIBRARIES} CACHE BOOL "")
|
|
set (POCO_VERBOSE_MESSAGES 1 CACHE BOOL "")
|
|
|
|
|
|
# used in internal compiler
|
|
list (APPEND Poco_INCLUDE_DIRS
|
|
"${ClickHouse_SOURCE_DIR}/contrib/poco/Foundation/include/"
|
|
"${ClickHouse_SOURCE_DIR}/contrib/poco/Util/include/"
|
|
)
|
|
|
|
if (NOT DEFINED POCO_ENABLE_MONGODB OR POCO_ENABLE_MONGODB)
|
|
set (Poco_MongoDB_FOUND 1)
|
|
set (Poco_MongoDB_LIBRARY PocoMongoDB)
|
|
set (Poco_MongoDB_INCLUDE_DIRS "${ClickHouse_SOURCE_DIR}/contrib/poco/MongoDB/include/")
|
|
endif ()
|
|
|
|
if (ODBC_FOUND)
|
|
set (Poco_DataODBC_FOUND 1)
|
|
set (Poco_DataODBC_LIBRARY PocoDataODBC ${ODBC_LIBRARIES} ${LTDL_LIBRARY})
|
|
set (Poco_DataODBC_INCLUDE_DIRS "${ClickHouse_SOURCE_DIR}/contrib/poco/Data/ODBC/include/")
|
|
endif ()
|
|
|
|
if (OPENSSL_FOUND)
|
|
set (Poco_NetSSL_FOUND 1)
|
|
set (Poco_NetSSL_LIBRARY PocoNetSSL)
|
|
set (Poco_Crypto_LIBRARY PocoCrypto)
|
|
set (Poco_NetSSL_INCLUDE_DIRS
|
|
"${ClickHouse_SOURCE_DIR}/contrib/poco/NetSSL_OpenSSL/include/"
|
|
"${ClickHouse_SOURCE_DIR}/contrib/poco/Crypto/include/"
|
|
)
|
|
endif ()
|
|
|
|
if (USE_STATIC_LIBRARIES AND USE_INTERNAL_ZLIB_LIBRARY)
|
|
list (APPEND Poco_INCLUDE_DIRS
|
|
"${ClickHouse_SOURCE_DIR}/contrib/zlib-ng/"
|
|
"${ClickHouse_BINARY_DIR}/contrib/zlib-ng/"
|
|
)
|
|
endif ()
|
|
|
|
set (Poco_Foundation_LIBRARY PocoFoundation)
|
|
set (Poco_Util_LIBRARY PocoUtil)
|
|
set (Poco_Net_LIBRARY PocoNet)
|
|
set (Poco_Data_LIBRARY PocoData)
|
|
set (Poco_XML_LIBRARY PocoXML)
|
|
|
|
endif ()
|
|
|
|
message(STATUS "Using Poco: ${Poco_INCLUDE_DIRS} : ${Poco_Foundation_LIBRARY},${Poco_Util_LIBRARY},${Poco_Net_LIBRARY},${Poco_NetSSL_LIBRARY},${Poco_XML_LIBRARY},${Poco_Data_LIBRARY},${Poco_DataODBC_LIBRARY},${Poco_MongoDB_LIBRARY}; MongoDB=${Poco_MongoDB_FOUND}, DataODBC=${Poco_DataODBC_FOUND}, NetSSL=${Poco_NetSSL_FOUND}")
|
|
|
|
# How to make sutable poco:
|
|
# use branch:
|
|
# develop OR poco-1.7.9-release + 6a49c94d18c654d7a20b8c8ea47071b1fdd4813b
|
|
# and merge:
|
|
# ClickHouse-Extras/clickhouse_unbundled
|
|
# ClickHouse-Extras/clickhouse_unbundled_zlib
|
|
# ClickHouse-Extras/clickhouse_task
|
|
# ClickHouse-Extras/clickhouse_misc
|
|
# ClickHouse-Extras/clickhouse_anl
|
|
# ClickHouse-Extras/clickhouse_http_header https://github.com/pocoproject/poco/pull/1574
|
|
# ClickHouse-Extras/clickhouse_socket
|
|
# ClickHouse-Extras/clickhouse_warning
|
|
# ClickHouse-Extras/clickhouse-purge-logs-on-no-space
|
|
# ClickHouse-Extras/clickhouse_freebsd
|