From 131e4d2caccc227afa62837899123f424dccb296 Mon Sep 17 00:00:00 2001 From: arvidn Date: Thu, 25 Jun 2020 16:46:08 +0200 Subject: [PATCH] fix build with boost version newer than 1.65 (where sha1 header moved) --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 225032d..25a05f4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,7 +48,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include // for PRId64 #include +#if BOOST_VERSION < 106600 #include +#else +#include +#endif #include #include #include