From 20405edb06f44308aae760dc2f4dad5c61e0d30f Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Sat, 3 Oct 2015 13:19:58 -0400 Subject: [PATCH] Fix MinGW 32-bit build --- src/threading/semaphore.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/threading/semaphore.cpp b/src/threading/semaphore.cpp index 00332eaa0..77ceff509 100644 --- a/src/threading/semaphore.cpp +++ b/src/threading/semaphore.cpp @@ -26,6 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define UNUSED(expr) do { (void)(expr); } while (0) #ifdef _WIN32 + #include #define MAX_SEMAPHORE_COUNT LONG_MAX - 1 #else #include