From 09ec95549784a2603bb4babcb9b57d2f27fb5d4b Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 10 Jan 2024 16:54:44 +0100 Subject: [PATCH] Require NT 6.1+, i.e. Windows 7 and Server 2008 R2 Enables CERT_CHAIN_ENGINE_CONFIG#hExclusiveRoot used by Boost.WinTLS. Icinga 2 already doesn't start on the original Server 2008. --- lib/base/win32.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/win32.hpp b/lib/base/win32.hpp index 064c5d669..80d8729f3 100644 --- a/lib/base/win32.hpp +++ b/lib/base/win32.hpp @@ -5,7 +5,7 @@ #define WIN32_LEAN_AND_MEAN #ifndef _WIN32_WINNT -#define _WIN32_WINNT _WIN32_WINNT_VISTA +#define _WIN32_WINNT _WIN32_WINNT_WIN7 #endif /* _WIN32_WINNT */ #define NOMINMAX #include