From cd52536a66748a9772ab681559a389ecee75c8e4 Mon Sep 17 00:00:00 2001 From: "Morten V. Pedersen" Date: Tue, 20 Nov 2012 15:16:26 +0100 Subject: [PATCH] Fixes issues with missing include on Android --- boost/thread/pthread/thread_data.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/boost/thread/pthread/thread_data.hpp b/boost/thread/pthread/thread_data.hpp index db4e09f..94eb8d5 100644 --- a/boost/thread/pthread/thread_data.hpp +++ b/boost/thread/pthread/thread_data.hpp @@ -24,6 +24,10 @@ #include #include +#if defined(__ANDROID__) +#include // http://code.google.com/p/android/issues/detail?id=39983 +#endif + #include #include -- 1.7.9.5