Fix minGW build

MinGW-w64 ships all Windows SDK headers as lowercase, which prevents
cross-compiling this code from Linux.
This commit is contained in:
Martin Hauke 2021-09-11 16:31:36 +02:00 committed by Steve Markgraf
parent a4eab76c8c
commit d770add42e
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
#include <fcntl.h>
#else
#include <winsock2.h>
#include <WS2tcpip.h>
#include <ws2tcpip.h>
#include "getopt/getopt.h"
#endif