Use pthreads on MacOS X too

MacOS X is POSIXy enough for this to be a suitable choice
This commit is contained in:
Roland Kaufmann 2014-12-01 09:52:47 +01:00
parent fe84daefc5
commit 90249e1158

View File

@ -45,7 +45,7 @@
#pragma warning (pop)
#endif
#if defined CVF_LINUX || defined(CVF_ANDROID)
#if defined(CVF_LINUX) || defined(CVF_ANDROID) || defined(CVF_OSX)
#include <pthread.h>
#endif