From: Debian Multimedia Maintainers Date: Mon, 8 Jun 2020 07:17:12 +0000 (+0100) Subject: boost1.71-04-1ede37b287dbe3010f98d0be9d1b38108e1dd530 X-Git-Tag: archive/raspbian/1%3.10.4+repack-1+rpi1~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9c7edc27632fbea7d5f250d4d4e74176868bd08b;p=supercollider.git boost1.71-04-1ede37b287dbe3010f98d0be9d1b38108e1dd530 Patch defuzzed by Peter Michael Green for Debian/Raspbian supercollider packaging. commit 1ede37b287dbe3010f98d0be9d1b38108e1dd530 Author: Brian Heim Date: Sun Oct 6 19:24:57 2019 -0500 CMake: don't use boost cmake config file Gbp-Pq: Name boost1.71-04-1ede37b287dbe3010f98d0be9d1b38108e1dd530 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 469b9cf..6908c88 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -253,6 +253,9 @@ if (NOT WIN32) endif() if(SYSTEM_BOOST) + # https://github.com/supercollider/supercollider/issues/4576#issuecomment-531499017 + # Boost >= 1.71 ships with its own Boost config file, we ignore it for now. + set(Boost_NO_BOOST_CMAKE ON) set(Boost_USE_MULTITHREADED ON) find_package( Boost 1.50.0 COMPONENTS thread system filesystem program_options regex test_exec_monitor ) endif()