diff options
Diffstat (limited to 'gcc/ada/gsocket.h')
-rw-r--r-- | gcc/ada/gsocket.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ada/gsocket.h b/gcc/ada/gsocket.h index e10f954..ba51fb1 100644 --- a/gcc/ada/gsocket.h +++ b/gcc/ada/gsocket.h @@ -80,6 +80,12 @@ #define FD_SETSIZE 1024 #ifdef __MINGW32__ +/* winsock2.h allows WSAPoll related definitions only when + * _WIN32_WINNT >= 0x0600 */ +#if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0600 +#define _WIN32_WINNT 0x0600 +#endif + #include <winsock2.h> #include <ws2tcpip.h> #include <versionhelpers.h> |