diff options
author | James E. King III <jking@apache.org> | 2019-05-04 08:20:59 -0400 |
---|---|---|
committer | James E. King III <jking@apache.org> | 2019-05-04 21:52:29 -0400 |
commit | ee8caca54ef51e05c7eee8d67e3c63cd73081e8a (patch) | |
tree | 3de37789b240d96c1edd4dbf2bfca1fa3780cd9b /doc | |
parent | 9ecdce3fe00931cebda39357b31b655236ab9221 (diff) | |
download | thrift-ee8caca54ef51e05c7eee8d67e3c63cd73081e8a.tar.gz |
THRIFT-4861: Set minimum boost to 1.56 and stop using deprecated boost predef endian header
Client: cpp
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install/README.md | 4 | ||||
-rw-r--r-- | doc/install/centos.md | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/install/README.md b/doc/install/README.md index 22231cd67..e48cc4a12 100644 --- a/doc/install/README.md +++ b/doc/install/README.md @@ -3,7 +3,7 @@ * A relatively POSIX-compliant *NIX system * Cygwin or MinGW can be used on Windows (but there are better options, see below) * g++ 4.2 -* boost 1.53.0 +* boost 1.56.0 * Runtime libraries for lex and yacc might be needed for the compiler. ## Requirements for building from source @@ -23,7 +23,7 @@ These are only required if you choose to build the libraries for the given language * C++ - * Boost 1.53.0 + * Boost 1.56.0 * libevent (optional, to build the nonblocking server) * zlib (optional) * Java diff --git a/doc/install/centos.md b/doc/install/centos.md index 04932c20a..18282a3a1 100644 --- a/doc/install/centos.md +++ b/doc/install/centos.md @@ -54,11 +54,11 @@ If you will be developing Apache Thrift clients/servers in C++ you will also nee sudo yum -y install libevent-devel zlib-devel openssl-devel -### Upgrade Boost >= 1.53 +### Upgrade Boost >= 1.56 - wget http://sourceforge.net/projects/boost/files/boost/1.53.0/boost_1_53_0.tar.gz - tar xvf boost_1_53_0.tar.gz - cd boost_1_53_0 + wget http://sourceforge.net/projects/boost/files/boost/1.56.0/boost_1_56_0.tar.gz + tar xvf boost_1_56_0.tar.gz + cd boost_1_56_0 ./bootstrap.sh sudo ./b2 install |