From: Ondřej Surý Date: Wed, 29 Aug 2018 19:44:34 +0000 (+0200) Subject: Bump the minimum required Windows version to Windows Vista and Windows Server 2008 X-Git-Tag: v9.13.3~20^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7cba3cc474722854029d5d34ebe4006ba8d8b842;p=thirdparty%2Fbind9.git Bump the minimum required Windows version to Windows Vista and Windows Server 2008 --- diff --git a/bin/win32/BINDInstall/StdAfx.h b/bin/win32/BINDInstall/StdAfx.h index 099ecb2c9e3..7c5a272bc4f 100644 --- a/bin/win32/BINDInstall/StdAfx.h +++ b/bin/win32/BINDInstall/StdAfx.h @@ -4,10 +4,10 @@ // /* - * Minimum version is Windows XP SP1 + * Minimum version is Windows Vista and Windows Server 2008 */ -#define _WIN32_WINNT 0x0501 -#define NTDDI_VERSION 0x05010100 +#define _WIN32_WINNT 0x0600 +#define NTDDI_VERSION 0x06000100 #ifndef _CRT_SECURE_NO_DEPRECATE #define _CRT_SECURE_NO_DEPRECATE 1 diff --git a/config.h.win32 b/config.h.win32 index 5ad82bc368d..0595c543e16 100644 --- a/config.h.win32 +++ b/config.h.win32 @@ -43,19 +43,19 @@ #endif /* - * Minimum version is Windows XP + * Minimum version is Windows Vista and Windows Server 2008 */ #ifndef _WIN32_WINNT -#define _WIN32_WINNT 0x0501 +#define _WIN32_WINNT 0x0600 #endif -#if _WIN32_WINNT < 0x0501 -#error Minimum Target environment is Windows XP and Windows Server 2003 +#if _WIN32_WINNT < 0x0600 +#error Minimum Target environment is Windows Vista and Windows Server 2008 #endif #ifndef NTDDI_VERSION -#define NTDDI_VERSION 0x05010100 +#define NTDDI_VERSION 0x06000100 #endif -#if NTDDI_VERSION < 0x05010100 -#error Minimum Target environment is Windows XP SP1 and Windows Server 2003 +#if NTDDI_VERSION < 0x06000100 +#error Minimum Target environment is Windows Vista and Windows Server 2008 #endif /* Define if you have the ANSI C header files. */