From b30eb9c00c7106a7ffbfcbf89960b55fbaed8475 Mon Sep 17 00:00:00 2001 From: ehofman Date: Sat, 13 Sep 2003 11:33:49 +0000 Subject: [PATCH] Add support for win32-pthreads in MSVC.NET --- simgear/threads/SGThread.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/simgear/threads/SGThread.cxx b/simgear/threads/SGThread.cxx index c6d016a0..484cce1d 100644 --- a/simgear/threads/SGThread.cxx +++ b/simgear/threads/SGThread.cxx @@ -5,6 +5,9 @@ #else # include #endif +#if _MSC_VER >= 1300 +# include "winsock2.h" +#endif #include "SGThread.hxx" -- 2.39.5