[build] fix mingw build on Ubuntu 22.04

Seems like the version check was not ok and build was failing on Ubuntu 22.04.
This commit is contained in:
David Fort 2023-11-13 18:03:05 +01:00 committed by akallabeth
parent 0d975f9c27
commit 4e2e7e0eae
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 < 9)
#elif defined(__MINGW32__) && (__MINGW64_VERSION_MAJOR < 8)
#define WINPR_THREAD_POOL 1
#endif