From 056e9d482d8b5cb9d5304a7dd812da13d39b569b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Tue, 4 Feb 2025 22:50:13 -0500 Subject: [PATCH] Default GNUmake to Vista/IE7 as well --- src/build/Common.gmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/build/Common.gmake b/src/build/Common.gmake index 23bb63b583..7adf813340 100644 --- a/src/build/Common.gmake +++ b/src/build/Common.gmake @@ -247,10 +247,10 @@ endif os := $(shell echo $(os) | tr '[A-Z]' '[a-z]' | tr ' ' '_') ifdef win - WINNT ?= 0x0501 - WINVER ?= 0x0501 - WIN32_IE ?= 0x0500 - NTDDI ?= 0x0500 + WINNT ?= 0x0600 + WINVER ?= 0x0600 + WIN32_IE ?= 0x0700 + NTDDI ?= 0x06000000 else CFLAGS += -DPREFER_POLL machine_uname := $(shell if uname -m | egrep -v "(i[3456789]*|x)86" > /dev/null; then uname -m | tr "[A-Z]" "[a-z]" | tr " " "_" ; fi) -- GitLab