From 06ef804f11e4e0213013e7729f43ebde529fca48 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 3 Jan 2016 04:07:22 +0100 Subject: [PATCH] Bump the Boost requirement to >= 1.53. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is required now since we use the Boost multiprecision module. Thanks to Daniel Glöckner for the report. This fixes bug #722. --- CMakeLists.txt | 4 ++-- INSTALL | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f9977465..0c551828 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,9 +98,9 @@ else() endif() if(ENABLE_TESTS) - find_package(Boost 1.48 COMPONENTS filesystem system thread unit_test_framework REQUIRED) + find_package(Boost 1.53 COMPONENTS filesystem system thread unit_test_framework REQUIRED) else() - find_package(Boost 1.48 COMPONENTS filesystem system thread REQUIRED) + find_package(Boost 1.53 COMPONENTS filesystem system thread REQUIRED) endif() # Find the platform's thread library (needed for C++11 threads). diff --git a/INSTALL b/INSTALL index 42cc79b5..90485581 100644 --- a/INSTALL +++ b/INSTALL @@ -17,7 +17,7 @@ Requirements - Qt4 >= 4.5 or Qt5 (including the following components): - Qt4: QtCore, QtGui, QtSvg - Qt5: Qt5Core, Qt5Gui, Qt5Widgets, Qt5Svg - - libboost >= 1.48 (including the following libs): + - libboost >= 1.53 (including the following libs): - libboost-system - libboost-filesystem - libboost-thread -- 2.30.2