diff options
author | Hannes Rantzsch <[email protected]> | 2019-04-10 15:04:37 +0200 |
---|---|---|
committer | Hannes Rantzsch <[email protected]> | 2019-04-16 10:48:21 +0200 |
commit | 873e1966b739044b175e5b3dfaebe45d38b12016 (patch) | |
tree | d1a7f1b26df6ce0ab1eab7167d3e427504394497 /src/lib/tls/asio/asio_stream_base.h | |
parent | 431ab2a49382c8b7238bb877252f910dd6957bd6 (diff) |
fix: require boost 1.66
Diffstat (limited to 'src/lib/tls/asio/asio_stream_base.h')
-rw-r--r-- | src/lib/tls/asio/asio_stream_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/asio/asio_stream_base.h b/src/lib/tls/asio/asio_stream_base.h index 4832b2f8f..adf3b8386 100644 --- a/src/lib/tls/asio/asio_stream_base.h +++ b/src/lib/tls/asio/asio_stream_base.h @@ -12,7 +12,7 @@ #if defined(BOTAN_HAS_TLS) && defined(BOTAN_HAS_BOOST_ASIO) #include <boost/version.hpp> -#if BOOST_VERSION > 106600 +#if BOOST_VERSION >= 106600 #include <botan/tls_client.h> #include <botan/asio_context.h> |