Date: Sat, 27 Oct 2018 00:52:29 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483072 - head/games/spring/files Message-ID: <201810270052.w9R0qTU6012356@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sat Oct 27 00:52:29 2018 New Revision: 483072 URL: https://svnweb.freebsd.org/changeset/ports/483072 Log: games/spring: unbreak with boost 1.69 CMake Error at /usr/local/share/cmake/Modules/FindBoost.cmake:2049 (message): Unable to find the requested Boost libraries. Boost version: 1.69.0 Boost include path: /usr/local/include Could not find the following Boost libraries: boost_signals Some (but not all) of the required Boost libraries were found. You may need to install these additional Boost libraries. Alternatively, set BOOST_LIBRARYDIR to the directory containing Boost libraries or BOOST_ROOT to the location of Boost. Call Stack (most recent call first): CMakeLists.txt:245 (FIND_PACKAGE) PR: 232525 Added: head/games/spring/files/patch-boost-1.69 (contents, props changed) Added: head/games/spring/files/patch-boost-1.69 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/spring/files/patch-boost-1.69 Sat Oct 27 00:52:29 2018 (r483072) @@ -0,0 +1,31 @@ +https://github.com/spring/spring/commit/a385d9d7715a + +CMake Error at /usr/local/share/cmake/Modules/FindBoost.cmake:2049 (message): + Unable to find the requested Boost libraries. + + Boost version: 1.69.0 + + Boost include path: /usr/local/include + + Could not find the following Boost libraries: + + boost_signals + + Some (but not all) of the required Boost libraries were found. You may + need to install these additional Boost libraries. Alternatively, set + BOOST_LIBRARYDIR to the directory containing Boost libraries or BOOST_ROOT + to the location of Boost. +Call Stack (most recent call first): + CMakeLists.txt:245 (FIND_PACKAGE) + +--- CMakeLists.txt.orig 2014-10-07 20:09:51 UTC ++++ CMakeLists.txt +@@ -242,7 +242,7 @@ if (MINGW) + set(SDL2_INCLUDE_DIR "${MINGWLIBS}/include/SDL2") + endif (MINGW) + +-FIND_PACKAGE(Boost 1.47.0 COMPONENTS thread regex program_options system chrono signals filesystem REQUIRED) ++FIND_PACKAGE(Boost 1.47.0 COMPONENTS thread regex program_options system chrono filesystem REQUIRED) + FIND_PACKAGE(Boost 1.47.0 COMPONENTS timer) + INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR}) +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810270052.w9R0qTU6012356>