diff options
author | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-09-11 19:28:07 +0300 |
---|---|---|
committer | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-09-11 19:28:07 +0300 |
commit | 98a6390ee5c37d5c326956bc8494581364d8c11b (patch) | |
tree | 905c352702680353118cce2b4de5ff40b730552a /contrib/libs/apache/arrow | |
parent | 269d61cb11390c773c2b69ec4e3326fd3a78dfa6 (diff) | |
download | ydb-98a6390ee5c37d5c326956bc8494581364d8c11b.tar.gz |
Remove boost/multiprecision from metaproject
Diffstat (limited to 'contrib/libs/apache/arrow')
-rw-r--r-- | contrib/libs/apache/arrow/CMakeLists.txt | 2 | ||||
-rw-r--r-- | contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libs/apache/arrow/CMakeLists.txt b/contrib/libs/apache/arrow/CMakeLists.txt index bae344e8b2..b23a330225 100644 --- a/contrib/libs/apache/arrow/CMakeLists.txt +++ b/contrib/libs/apache/arrow/CMakeLists.txt @@ -42,7 +42,6 @@ target_include_directories(libs-apache-arrow PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/re2 ${CMAKE_SOURCE_DIR}/contrib/libs/utf8proc ${CMAKE_SOURCE_DIR}/contrib/libs/zstd/include - ${CMAKE_SOURCE_DIR}/contrib/restricted/boost ) target_link_libraries(libs-apache-arrow PUBLIC contrib-libs-cxxsupp @@ -59,6 +58,7 @@ target_link_libraries(libs-apache-arrow PUBLIC ZLIB::ZLIB contrib-libs-zstd contrib-restricted-boost + restricted-boost-multiprecision contrib-restricted-fast_float contrib-restricted-thrift contrib-restricted-uriparser diff --git a/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h b/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h index ea7df20962..14cb51bacc 100644 --- a/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h +++ b/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h @@ -23,7 +23,7 @@ // Check if thrift version < 0.11.0 // or if FORCE_BOOST_SMART_PTR is defined. Ref: https://thrift.apache.org/lib/cpp #if defined(PARQUET_THRIFT_USE_BOOST) || defined(FORCE_BOOST_SMART_PTR) -#include <boost/shared_ptr.hpp> +#error #include <boost/shared_ptr.hpp> #else #include <memory> #endif |