Minimal version of Boost: 1.48

This commit is contained in:
Laurent Rineau 2015-03-24 21:04:00 +01:00 committed by Laurent Rineau
parent 7d4da6aee2
commit 4eef28be7e
5 changed files with 16 additions and 9 deletions

View File

@ -347,7 +347,7 @@ installed as binaries.
\cgal requires the \sc{Boost} libraries. In particular the header files
and the threading library (`Boost.Thread` and
`Boost.System` binaries). Version 1.39 (or higher) are needed.
`Boost.System` binaries). Version 1.48 (or higher) are needed.
On Windows, as auto-linking is used, you also need the binaries of
`Boost.Serialization` and `Boost.DateTime`, but the
@ -724,13 +724,13 @@ cmake -DWITH_examples=OFF -DWITH_demos=OFF -DCMAKE_BUILD_TYPE=Release
-- MPFR libraries: /usr/lib/libmpfr.so
-- MPFR definitions:
-- USING MPFR_VERSION = '3.0.0'
-- Boost version: 1.39.0
-- Boost version: 1.48.0
-- Found the following Boost libraries:
-- thread
-- Boost include: /usr/include/boost_1_39_0/include/boost-1_39
-- Boost include: /usr/include/boost_1_48_0/include/boost-1_48
-- Boost libraries: /usr/lib/libboost_thread-mt.so;pthread
-- Boost definitions:
-- USING BOOST_VERSION = '1.39.0'
-- USING BOOST_VERSION = '1.48.0'
== Detect external libraries (DONE) ==
== Write compiler_config.h ==

View File

@ -1,9 +1,12 @@
-------------------------------- Release 4.6 --------------------------------
Release date: March 2015
Release date: April 2015
* Installation
- The required version of Boost is now 1.48 or higher.
* 2D Polyline Simplification (new package)

View File

@ -30,7 +30,7 @@ CGAL packages, some are only needed for demos.
Required for building CGAL
On Windows, CMake >= 2.8.6 is required.
* Boost (>= 1.39)
* Boost (>= 1.48)
Required for building CGAL and for applications using CGAL
Required compiled Boost library: Boost.Thread, Boost.System
Optional compiled Boost library: Boost.Program_options

View File

@ -117,6 +117,10 @@ and <code>src/</code> directories).
<p>Release date: April 2015 </p>
<!-- Installation (and general changes) -->
<h3>Installation</h3>
<ul>
<li>The required version of Boost is now 1.48 or higher.</li>
</ul>
<!-- New packages -->
<h3>2D Polyline Simplification (new package)</h3>
<ul>

View File

@ -1,9 +1,9 @@
if ( NOT CGAL_Boost_Setup )
include(CGAL_TweakFindBoost)
# In the documentation, we say we require Boost-1.39, but technically we
# require 1.33.1. Some packages may require more recent versions, though.
find_package( Boost 1.33.1 REQUIRED thread system )
# In the documentation, we say we require Boost-1.48, but technically we
# require 1.39. Some packages may require more recent versions, though.
find_package( Boost 1.39 REQUIRED thread system )
if(Boost_FOUND)
if(DEFINED Boost_DIR AND NOT Boost_DIR)