From 8aaec042d4a7cff68c219443517b55b1d9f0ee9c Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 2 Dec 2018 18:33:57 +0100 Subject: gnu: kicad: Fix build with Boost >= 1.68. * gnu/packages/engineering.scm (kicad)[arguments]: Add phase 'adjust-boost-include'. --- gnu/packages/engineering.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 0080356494..8ef9a5c277 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -717,6 +717,13 @@ language.") "-DBUILD_GITHUB_PLUGIN=OFF") #:phases (modify-phases %standard-phases + (add-after 'unpack 'adjust-boost-include + (lambda _ + ;; The location of this header changed in Boost 1.66. + (substitute* "3d-viewer/3d_cache/3d_cache.cpp" + (("boost/uuid/sha1\\.hpp") + "boost/uuid/detail/sha1.hpp")) + #t)) (add-after 'install 'wrap-program ;; Ensure correct Python at runtime. (lambda* (#:key inputs outputs #:allow-other-keys) -- cgit v1.2.3