From: kwolekr Date: Sat, 17 Oct 2015 05:16:17 +0000 (-0400) Subject: Fix missing include on AIX X-Git-Tag: 0.4.14~602 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6ba9d6545d9a02dd3552f89e7b79c6ba2e760736;p=oweals%2Fminetest.git Fix missing include on AIX --- diff --git a/src/threading/thread.h b/src/threading/thread.h index 3c8447b53..cd46856e9 100644 --- a/src/threading/thread.h +++ b/src/threading/thread.h @@ -32,7 +32,10 @@ DEALINGS IN THE SOFTWARE. #include #if USE_CPP11_THREADS - #include + #include // for std::thread +#endif +#ifdef _AIX + #include // for tid_t #endif /*