Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Oct 2018 00:53:05 +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: r483074 - head/chinese/librime/files
Message-ID:  <201810270053.w9R0r5nD012618@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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})



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810270053.w9R0r5nD012618>