cmake: Lower Boost dep version 1.56 -> 1.54
authorRafael Kitover <rkitover@gmail.com>
Thu, 24 Jan 2019 09:29:59 +0000 (01:29 -0800)
committerManuel Nickschas <sputnick@quassel-irc.org>
Fri, 31 May 2019 17:32:58 +0000 (19:32 +0200)
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 <rkitover@gmail.com>
CMakeLists.txt
INSTALL

index f8e97a7..b42534f 100644 (file)
@@ -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 2d5d58d..824695a 100644 (file)
--- 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.