From 6e02c45d3736d97601c2fa070c6a301753df2bb0 Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 26 Oct 2020 11:01:30 +0000 Subject: [PATCH] FileChooser: Fix build compatibility issue with MinGW The recent IFileChooser update to the JUCE FileChooser meant that Windows build machines must be running Vista or newer. For compilers other than MinGW, we were already requiring that the build machine must be running Windows 8 or newer. --- modules/juce_core/native/juce_BasicNativeHeaders.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/native/juce_BasicNativeHeaders.h b/modules/juce_core/native/juce_BasicNativeHeaders.h index c767726f15..306bb53667 100644 --- a/modules/juce_core/native/juce_BasicNativeHeaders.h +++ b/modules/juce_core/native/juce_BasicNativeHeaders.h @@ -132,7 +132,7 @@ #define STRICT 1 #define WIN32_LEAN_AND_MEAN 1 #if JUCE_MINGW - #define _WIN32_WINNT 0x0501 + #define _WIN32_WINNT 0x0600 #else #define _WIN32_WINNT 0x0602 #endif