1From f6866b0f166ad168618aae64c7fbee8775d3eb23 Mon Sep 17 00:00:00 2001
2From: mruddy <6440430+mruddy@users.noreply.github.com>
3Date: Sat, 30 Jun 2018 09:44:58 -0400
4Subject: [PATCH] fix build with older mingw64
5
6---
7 src/windows.hpp | 7 +++++++
8 1 file changed, 7 insertions(+)
9
10diff --git a/src/windows.hpp b/src/windows.hpp
11index 6c3839fd..2c32ec79 100644
12--- a/src/windows.hpp
13+++ b/src/windows.hpp
14@@ -58,6 +58,13 @@
15 #include <winsock2.h>
16 #include <windows.h>
17 #include <mswsock.h>
18+
19+#if defined __MINGW64_VERSION_MAJOR && __MINGW64_VERSION_MAJOR < 4
20+// Workaround for mingw-w64 < v4.0 which did not include ws2ipdef.h in iphlpapi.h.
21+// Fixed in mingw-w64 by 9bd8fe9148924840d315b4c915dd099955ea89d1.
22+#include <ws2def.h>
23+#include <ws2ipdef.h>
24+#endif
25 #include <iphlpapi.h>
26
27 #if !defined __MINGW32__
28--
292.17.1
30
31