From 67a3085716af0e2334dece594ec42fcf37d43bda Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 30 Mar 2011 09:23:42 +0000 Subject: [PATCH] Windows build fix: ignore pthread.h if it exists (#4989) --- includes/rts/OSThreads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/rts/OSThreads.h b/includes/rts/OSThreads.h index a24459c..c70f418 100644 --- a/includes/rts/OSThreads.h +++ b/includes/rts/OSThreads.h @@ -17,7 +17,7 @@ #if defined(THREADED_RTS) /* to the end */ -# if defined(HAVE_PTHREAD_H) && !defined(WANT_NATIVE_WIN32_THREADS) +#if defined(HAVE_PTHREAD_H) && !defined(mingw32_HOST_OS) #if CMINUSMINUS -- 1.7.10.4