unify and bump _WIN32_WINNT definition to Windows 8.1
Git for Windows doesn't support anything prior to Windows 8.1 since 2.47.0
and Git followed along with commits like ce6ccba (mingw: drop Windows
7-specific work-around, 2025-08-04).
There is no need to pretend to the compiler that we still support Windows
Vista, just to lock us out of easy access to newer APIs. There is also no
need to have conflicting and unused definitions claiming we support some
versions of Windows XP or even Windows NT 4.0.
Bump all definitions of _WIN32_WINNT to a realistic value of Windows 8.1.
This will also simplify code for a followup commit that will improve cpu
core detection on multi-socket systems.
Signed-off-by: Matthias Aßhauer <mha1993@live.de>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Matthias Aßhauer committedApr 6, 2026 at 05:45 UTC66dd13f3f72e8cad1327b6b134dec079936c4b07
5 files changed+7-5
compat/mingw.c
+1-1
index 338ec3535e..2023c16db6 100644--- a/compat/mingw.c+++ b/compat/mingw.c@@ -2464,7 +2464,7 @@ repeat: if (supports_file_rename_info_ex) { /* * Our minimum required Windows version is still set to Windows- * Vista. We thus have to declare required infrastructure for+ * 8.1. We thus have to declare required infrastructure for * FileRenameInfoEx ourselves until we bump _WIN32_WINNT to * 0x0A00. Furthermore, we have to handle cases where the * FileRenameInfoEx call isn't supported yet.
index a2becd16cd..ea362b4a8e 100644--- a/compat/poll/poll.c+++ b/compat/poll/poll.c@@ -20,7 +20,7 @@ #define DISABLE_SIGN_COMPARE_WARNINGS-/* To bump the minimum Windows version to Windows Vista */+/* To bump the minimum Windows version to Windows 8.1 */ #include "git-compat-util.h" /* Tell gcc not to warn about the (nfd < 0) tests, below. */@@ -41,7 +41,7 @@ #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ # define WIN32_NATIVE # if defined (_MSC_VER) && !defined(_WIN32_WINNT)-# define _WIN32_WINNT 0x0502+# define _WIN32_WINNT 0x0603 # endif # include <winsock2.h> # include <windows.h>
compat/posix.h
+1-1
index 3c611d2736..94699a03fa 100644--- a/compat/posix.h+++ b/compat/posix.h@@ -76,7 +76,7 @@ #if defined(WIN32) && !defined(__CYGWIN__) /* Both MinGW and MSVC */ # if !defined(_WIN32_WINNT)-# define _WIN32_WINNT 0x0600+# define _WIN32_WINNT 0x0603 # endif #define WIN32_LEAN_AND_MEAN /* stops windows.h including winsock.h */ #include <winsock2.h>