Disable WINPR_THREAD_POOL for mingw 7

This commit is contained in:
Kai Pastor 2024-03-12 09:03:33 +01:00 committed by akallabeth
parent 44c86c8049
commit f2f9c59b01
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ typedef VOID (*PTP_WIN32_IO_CALLBACK)(PTP_CALLBACK_INSTANCE Instance, PVOID Cont
#define WINPR_THREAD_POOL 1
#elif defined(_WIN32) && (_WIN32_WINNT < 0x0600)
#define WINPR_THREAD_POOL 1
#elif defined(__MINGW32__) && (__MINGW64_VERSION_MAJOR < 8)
#elif defined(__MINGW32__) && (__MINGW64_VERSION_MAJOR < 7)
#define WINPR_THREAD_POOL 1
#endif