From db500b674b08b4109f9751aaf08565d48ad5171d Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 26 May 2012 16:21:15 +0000 Subject: [PATCH] merged boost-1.44 fix from RC_0_16 --- ChangeLog | 1 + src/asio.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index d5ff44f84..6f84be760 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ + * fixed support for boost-1.44 * fixed reversed semantics of queue_up() and queue_down() * added missing functions to python bindings (file_priority()) * fixed low_prio_disk support on linux diff --git a/src/asio.cpp b/src/asio.cpp index aa5667db2..0565794a3 100644 --- a/src/asio.cpp +++ b/src/asio.cpp @@ -3,5 +3,7 @@ #if BOOST_VERSION >= 104500 #include +#elif BOOST_VERSION >= 104400 +#include #endif