diff options
author | Hannes Rantzsch <[email protected]> | 2019-04-25 13:38:10 +0200 |
---|---|---|
committer | Hannes Rantzsch <[email protected]> | 2019-04-26 11:59:42 +0200 |
commit | cd2805db7d7117bae25da0abad6e730b013d89a0 (patch) | |
tree | 12e5e80b5fa8fcb7f08d4943b17720a2ed848bf1 /src | |
parent | 2c958f40b3ed1ee9c1f6870f90ddd853f4bb98b5 (diff) |
require boost 1.68 for asio stream unit test
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/unit_asio_stream.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/unit_asio_stream.cpp b/src/tests/unit_asio_stream.cpp index 0cbc85de9..a2d423785 100644 --- a/src/tests/unit_asio_stream.cpp +++ b/src/tests/unit_asio_stream.cpp @@ -10,8 +10,9 @@ #if defined(BOTAN_HAS_TLS) && defined(BOTAN_HAS_BOOST_ASIO) +// first boost version to include boost/beast/experimental/test/stream.hpp #include <boost/version.hpp> -#if BOOST_VERSION >= 106600 +#if BOOST_VERSION >= 106800 #include <botan/asio_stream.h> #include <botan/tls_callbacks.h> |