From 3398079449f3749da39a3004b645e6ececa8812a Mon Sep 17 00:00:00 2001
From: Marko Lindqvist <cazfi74@gmail.com>
Date: Mon, 31 Mar 2025 18:07:48 +0300
Subject: [PATCH 26/26] installer_cross: Make Windows 10 the minimum
 requirement

See RM #1275

Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
---
 platforms/windows/installer_cross/meson-winbuild.sh | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/platforms/windows/installer_cross/meson-winbuild.sh b/platforms/windows/installer_cross/meson-winbuild.sh
index 8949500c7c..ed9c1fe64c 100755
--- a/platforms/windows/installer_cross/meson-winbuild.sh
+++ b/platforms/windows/installer_cross/meson-winbuild.sh
@@ -8,7 +8,7 @@
 #
 
 MESON_WINBUILD_VERSION="3.3.0-dev"
-MIN_WINVER=0x0603 # Windows 8.1. Qt6-client and Qt6-ruledit builds override this
+MIN_WINVER=0x0A00 # Windows 10.
 CROSSER_FEATURE_LEVEL=2.9
 
 if test "$1" = "" || test "$1" = "-h" || test "$1" = "--help" ; then
@@ -88,17 +88,14 @@ case "${GUI}" in
   qt6) CLIENT="qt"
        FCMP="qt"
        TOOLS="${TOOLS},ruledit"
-       MIN_WINVER=0x0A00
        QTPARAMS="-Dqtver=qt6" ;;
   qt6x) CLIENT="qt"
         FCMP="qt"
         TOOLS="${TOOLS},ruledit"
-        MIN_WINVER=0x0A00
         QTPARAMS="-Dqtver=qt6x" ;;
   ruledit) CLIENT="[]"
            FCMP="[]"
            TOOLS="ruledit"
-           MIN_WINVER=0x0A00
            QTPARAMS="-Dqtver=qt6" ;;
 esac
 
-- 
2.47.2

