]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Bump the minimum required Windows version to Windows Vista and Windows Server 2008
authorOndřej Surý <ondrej@sury.org>
Wed, 29 Aug 2018 19:44:34 +0000 (21:44 +0200)
committerOndřej Surý <ondrej@sury.org>
Wed, 29 Aug 2018 20:03:09 +0000 (22:03 +0200)
bin/win32/BINDInstall/StdAfx.h
config.h.win32

index 099ecb2c9e3d25cb23ba3868cab7b46b4eac948b..7c5a272bc4fedd43af63000b50701077d2ef5085 100644 (file)
@@ -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
index 5ad82bc368d41fecf67a36458ac439485a4b88ac..0595c543e16228afb1f8014b3e69e29caf076f92 100644 (file)
 #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.  */