bump boost version to 1.73 and fix docs
This commit is contained in:
parent
a1a3a712dd
commit
feca084ed6
3 changed files with 6 additions and 6 deletions
|
@ -71,15 +71,15 @@ For troubleshooting help see https://github.com/mapnik/mapnik/wiki/InstallationT
|
||||||
|
|
||||||
Build system dependencies are:
|
Build system dependencies are:
|
||||||
|
|
||||||
* C++ compiler supporting `-std=c++11` (like >= g++ 4.8 or >= clang++ 3.4)
|
* C++ compiler supporting `-std=c++14` (like >= g++ 4.8 or >= clang++ 3.4)
|
||||||
* >= 2 GB RAM (> 5 GB for g++)
|
* >= 2 GB RAM (> 5 GB for g++)
|
||||||
* Python 2.4-2.7
|
* Python 2.4-2.7
|
||||||
* Scons (a copy is bundled)
|
* Scons (a copy is bundled) or CMake >= 3.15 see [docs/cmake-usage.md](./docs/cmake-usage.md)
|
||||||
|
|
||||||
Mapnik Core depends on:
|
Mapnik Core depends on:
|
||||||
|
|
||||||
* Boost
|
* Boost
|
||||||
- >= 1.47 is required and >= 1.56 recommended
|
- >= 1.73 is required
|
||||||
- These libraries are used:
|
- These libraries are used:
|
||||||
- filesystem
|
- filesystem
|
||||||
- system
|
- system
|
||||||
|
@ -97,7 +97,7 @@ Mapnik Core optionally depends on:
|
||||||
* libjpeg - JPEG graphics (Default enabled, if found)
|
* libjpeg - JPEG graphics (Default enabled, if found)
|
||||||
* libtiff - TIFF graphics (Default enabled, if found)
|
* libtiff - TIFF graphics (Default enabled, if found)
|
||||||
* libwebp - WEBP graphics (Default enabled, if found)
|
* libwebp - WEBP graphics (Default enabled, if found)
|
||||||
* libproj - PROJ.4 projection library (Default enabled, if found)
|
* libproj >= 7.2.0 - PROJ projection library (Default enabled, if found)
|
||||||
|
|
||||||
Additional optional dependencies:
|
Additional optional dependencies:
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,7 @@ SCONS_CONFIGURE_CACHE = 'config.cache'
|
||||||
SCONF_TEMP_DIR = '.sconf_temp'
|
SCONF_TEMP_DIR = '.sconf_temp'
|
||||||
# auto-search directories for boost libs/headers
|
# auto-search directories for boost libs/headers
|
||||||
BOOST_SEARCH_PREFIXES = ['/usr/local','/opt/local','/sw','/usr',]
|
BOOST_SEARCH_PREFIXES = ['/usr/local','/opt/local','/sw','/usr',]
|
||||||
BOOST_MIN_VERSION = '1.61'
|
BOOST_MIN_VERSION = '1.73'
|
||||||
#CAIRO_MIN_VERSION = '1.8.0'
|
#CAIRO_MIN_VERSION = '1.8.0'
|
||||||
PROJ_MIN_VERSION = (7, 2, 0)
|
PROJ_MIN_VERSION = (7, 2, 0)
|
||||||
PROJ_MIN_VERSION_STRING = "%s.%s.%s" % PROJ_MIN_VERSION
|
PROJ_MIN_VERSION_STRING = "%s.%s.%s" % PROJ_MIN_VERSION
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
set(BOOST_MIN_VERSION 1.61)
|
set(BOOST_MIN_VERSION 1.73)
|
||||||
set(HARFBUZZ_MIN_VERSION 0.9.34)
|
set(HARFBUZZ_MIN_VERSION 0.9.34)
|
||||||
set(PROJ_MIN_VERSION 7.2.0)
|
set(PROJ_MIN_VERSION 7.2.0)
|
||||||
|
|
Loading…
Reference in a new issue