diff --git a/CMakeLists.txt b/CMakeLists.txt index 69e39be6de4..3faece7776a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1028,7 +1028,7 @@ if(STATIC) endif() # Find Boost headers -set(BOOST_MIN_VER 1.62) +set(BOOST_MIN_VER 1.69) find_package(Boost ${BOOST_MIN_VER} QUIET REQUIRED) if(NOT Boost_FOUND) @@ -1041,11 +1041,6 @@ elseif(Boost_FOUND) list(APPEND BOOST_COMPONENTS locale) endif() - # Boost System is header-only since 1.69 - if (Boost_VERSION_STRING VERSION_LESS 1.69.0) - list(APPEND BOOST_COMPONENTS system) - endif() - # Boost Regex is header-only since 1.77 if (Boost_VERSION_STRING VERSION_LESS 1.77.0) list(APPEND BOOST_COMPONENTS regex) diff --git a/README.md b/README.md index 0ffe561014c..3b375739edb 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ library archives (`.a`). | GCC | 7 | NO | `build-essential` | `base-devel` | `base-devel` | `gcc` | NO | | | CMake | 3.10 | NO | `cmake` | `cmake` | `cmake` | `cmake` | NO | | | pkg-config | any | NO | `pkg-config` | `base-devel` | `base-devel` | `pkgconf` | NO | | -| Boost | 1.66 | NO | `libboost-all-dev` | `boost` | `boost-devel` | `boost-devel` | NO | C++ libraries | +| Boost | 1.69 | NO | `libboost-all-dev` | `boost` | `boost-devel` | `boost-devel` | NO | C++ libraries | | OpenSSL | basically any | NO | `libssl-dev` | `openssl` | `openssl-devel` | `openssl-devel` | NO | sha256 sum | | libzmq | 4.2.0 | NO | `libzmq3-dev` | `zeromq` | `zeromq-devel` | `zeromq-devel` | NO | ZeroMQ library | | libunbound | 1.4.16 | NO | `libunbound-dev` | `unbound` | `unbound-devel` | `unbound-devel` | NO | DNS resolver |