From: Rafael Kitover Date: Thu, 24 Jan 2019 09:29:59 +0000 (-0800) Subject: cmake: Lower Boost dep version 1.56 -> 1.54 X-Git-Tag: test-travis-01~51 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=3f71a843b5e84f05438bed8bdc331699f670755d cmake: Lower Boost dep version 1.56 -> 1.54 Require Boost 1.54 instead of 1.56. Tested to compile and work correctly on OpenSUSE Leap 42.3. Fixes #1510. Signed-off-by: Rafael Kitover --- diff --git a/CMakeLists.txt b/CMakeLists.txt index f8e97a7c..b42534f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -330,7 +330,7 @@ endif() # Non-Qt-based packages ##################################################################### -find_package(Boost 1.56 REQUIRED) +find_package(Boost 1.54 REQUIRED) set_package_properties(Boost PROPERTIES TYPE REQUIRED URL "https://www.boost.org/" DESCRIPTION "Boost libraries for C++" diff --git a/INSTALL b/INSTALL index 2d5d58db..824695ad 100644 --- a/INSTALL +++ b/INSTALL @@ -34,7 +34,7 @@ compiler is needed: Other compilers may work, but are not officially supported. As Quassel is a Qt application, you need the Qt SDK, version 5.5 or higher. -Furthermore, the Boost header-only libraries (at least version 1.56) and +Furthermore, the Boost header-only libraries (at least version 1.54) and CMake 3.5 or later are required. CMake will tell you about any missing dependencies when configuring the project.