From ec2460f653f7a225658302259e6aaefda19c0e14 Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 20 Sep 2025 16:08:34 -0500 Subject: [PATCH] fix issue #23829 build with boost v1.89 and greater --- cMake/FreeCAD_Helpers/SetupBoost.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cMake/FreeCAD_Helpers/SetupBoost.cmake b/cMake/FreeCAD_Helpers/SetupBoost.cmake index 4e07e2e7c0..45538b6762 100644 --- a/cMake/FreeCAD_Helpers/SetupBoost.cmake +++ b/cMake/FreeCAD_Helpers/SetupBoost.cmake @@ -3,7 +3,7 @@ macro(SetupBoost) set(_boost_TEST_VERSIONS ${Boost_ADDITIONAL_VERSIONS}) - set (BOOST_COMPONENTS program_options regex system thread date_time) + set (BOOST_COMPONENTS program_options regex thread date_time) find_package(Boost ${BOOST_MIN_VERSION} COMPONENTS ${BOOST_COMPONENTS} REQUIRED)