From b7609f8e457f3b61942e3e408e8da83fb0c0a434 Mon Sep 17 00:00:00 2001 From: Wes McKinney Date: Fri, 23 Jun 2017 17:43:41 -0400 Subject: [PATCH] Boost toolchain tweaks Change-Id: Id6781f80f4767ba3af8c0e2822322940f94685e7 --- cpp/cmake_modules/ThirdpartyToolchain.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake b/cpp/cmake_modules/ThirdpartyToolchain.cmake index 3b17bf3e376bc..f6a9bb4f80e80 100644 --- a/cpp/cmake_modules/ThirdpartyToolchain.cmake +++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake @@ -97,6 +97,7 @@ endif() set(Boost_DEBUG TRUE) set(Boost_USE_MULTITHREADED ON) set(Boost_ADDITIONAL_VERSIONS + "1.64.0" "1.64" "1.63.0" "1.63" "1.62.0" "1.61" "1.61.0" "1.62" @@ -135,7 +136,7 @@ else() if (ARROW_BOOST_HEADER_ONLY) find_package(Boost) else() - find_package(Boost COMPONENTS system filesystem regex REQUIRED) + find_package(Boost COMPONENTS system filesystem REQUIRED) if ("${CMAKE_BUILD_TYPE}" STREQUAL "DEBUG") set(BOOST_STATIC_SYSTEM_LIBRARY ${Boost_SYSTEM_LIBRARY_DEBUG}) set(BOOST_STATIC_FILESYSTEM_LIBRARY ${Boost_FILESYSTEM_LIBRARY_DEBUG})