mirror of https://github.com/FreeRDP/FreeRDP
[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:
parent
0d975f9c27
commit
4e2e7e0eae
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue