summaryrefslogtreecommitdiff
path: root/lib/curl_threads.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/curl_threads.h')
-rw-r--r--lib/curl_threads.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/curl_threads.h b/lib/curl_threads.h
index 9e0d14a30..2a93644c5 100644
--- a/lib/curl_threads.h
+++ b/lib/curl_threads.h
@@ -38,7 +38,8 @@
# define curl_thread_t HANDLE
# define curl_thread_t_null (HANDLE)0
# if !defined(_WIN32_WINNT) || !defined(_WIN32_WINNT_VISTA) || \
- (_WIN32_WINNT < _WIN32_WINNT_VISTA)
+ (_WIN32_WINNT < _WIN32_WINNT_VISTA) || \
+ (defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR))
# define Curl_mutex_init(m) InitializeCriticalSection(m)
# else
# define Curl_mutex_init(m) InitializeCriticalSectionEx(m, 0, 1)