* https://github.com/marksamman/otclient:
  Fix compiling on OS X
This commit is contained in:
Allan Ference 2013-07-28 04:42:31 +02:00
commit 6fa9631d6a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
#include <boost/thread/future.hpp> #include <boost/thread/future.hpp>
// hack to enable std::thread on mingw32 4.6 // hack to enable std::thread on mingw32 4.6
#if !defined(_GLIBCXX_HAS_GTHREADS) && defined(__GNUG__) #if !defined(_GLIBCXX_HAS_GTHREADS) && defined(__GNUG__) && !defined(__clang__)
#include <boost/thread/thread.hpp> #include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp> #include <boost/thread/mutex.hpp>