svn commit: r483074 - head/chinese/librime/files
Jan Beich
jbeich at FreeBSD.org
Sat Oct 27 00:53:06 UTC 2018
Author: jbeich
Date: Sat Oct 27 00:53:05 2018
New Revision: 483074
URL: https://svnweb.freebsd.org/changeset/ports/483074
Log:
chinese/librime: 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:41 (find_package)
PR: 232525
Added:
head/chinese/librime/files/patch-boost-1.69 (contents, props changed)
Added: head/chinese/librime/files/patch-boost-1.69
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/chinese/librime/files/patch-boost-1.69 Sat Oct 27 00:53:05 2018 (r483074)
@@ -0,0 +1,13 @@
+https://github.com/rime/librime/issues/225
+
+--- CMakeLists.txt.orig 2014-12-21 11:46:44 UTC
++++ CMakeLists.txt
+@@ -38,7 +38,7 @@ set(Boost_USE_MULTITHREADED ON)
+ if(MSVC)
+ set(Boost_USE_STATIC_RUNTIME ON)
+ endif(MSVC)
+-find_package(Boost 1.46.0 REQUIRED COMPONENTS filesystem regex signals system)
++find_package(Boost 1.46.0 REQUIRED COMPONENTS filesystem regex system)
+ if(Boost_FOUND)
+ include_directories(${Boost_INCLUDE_DIRS})
+ link_directories(${Boost_LIBRARY_DIRS})
More information about the svn-ports-all
mailing list