blob: b1f25c89c2474e97eca8369a9e38e20991e0a597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
diff --git a/configure.ac b/configure.ac
index 4de263a..9aa0f69 100644
--- a/configure.ac
+++ b/configure.ac
@@ -200,6 +200,10 @@ esac
AX_CC_FOR_BUILD
AH_BOTTOM([
+#if defined(__MINGW32__) && !defined(_WIN32_WINNT)
+#define _WIN32_WINNT 0x0600 /* for STARTUPINFOEX */
+#endif
+
/* Force using of NLS for W32 even if no libintl has been found. This is
okay because we have our own gettext implementation for W32. */
#if defined(HAVE_W32_SYSTEM) && !defined(ENABLE_NLS)
|