From ad55783f56e929e1de9638a3dfc3749f56e4a5d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Terziman?= Date: Thu, 16 Jan 2014 12:05:40 +0100 Subject: [PATCH] Boost libraries on windows are too much a hassle to handle, so thread safety is not worth all the trouble => think to move to c++11 thread support --- include/assimp/defs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/assimp/defs.h b/include/assimp/defs.h index 91ad095c8..e0019f893 100644 --- a/include/assimp/defs.h +++ b/include/assimp/defs.h @@ -234,9 +234,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * threads then and is itself not threadsafe. * If this flag is specified boost::threads is *not* required. */ ////////////////////////////////////////////////////////////////////////// -//#ifndef ASSIMP_BUILD_SINGLETHREADED -//# define ASSIMP_BUILD_SINGLETHREADED -//#endif +#ifndef ASSIMP_BUILD_SINGLETHREADED +# define ASSIMP_BUILD_SINGLETHREADED +#endif #if defined(_DEBUG) || ! defined(NDEBUG) # define ASSIMP_BUILD_DEBUG