From 2c9c7c9e9535f70bcaf5a798ad47a44e46889d85 Mon Sep 17 00:00:00 2001 From: Konstantin Podshumok Date: Sun, 16 Aug 2020 06:43:36 +0300 Subject: [PATCH] cmake: USE_INTERNAL_H3_LIBRARY is always ON by default as I don't know any system with package for it Signed-off-by: Konstantin Podshumok --- cmake/find/h3.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/find/h3.cmake b/cmake/find/h3.cmake index 7ca070b45fe..03b6f32fc3c 100644 --- a/cmake/find/h3.cmake +++ b/cmake/find/h3.cmake @@ -6,7 +6,8 @@ if(NOT ENABLE_H3) return() endif() -option(USE_INTERNAL_H3_LIBRARY "Set to FALSE to use system h3 library instead of bundled" ${NOT_UNBUNDLED}) +option(USE_INTERNAL_H3_LIBRARY "Set to FALSE to use system h3 library instead of bundled" + ON) # we are not aware of any distribution that provides h3 package if(NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/h3/src/h3lib/include/h3Index.h") if(USE_INTERNAL_H3_LIBRARY)