From 9249297d31fcb7ddf26ec48c4e4bdc49867011ae Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Sat, 5 Sep 2020 12:16:00 +0300 Subject: [PATCH] mdbx: fix MSVC compiler version requirements. Change-Id: Iabf7ab571ca887bd7995ae6293d3c70bb85a947b --- src/internals.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internals.h b/src/internals.h index 094f6571..06233526 100644 --- a/src/internals.h +++ b/src/internals.h @@ -64,8 +64,8 @@ #endif #ifdef _MSC_VER -# if _MSC_VER < 1400 -# error "Microsoft Visual C++ 8.0 (Visual Studio 2005) or later version is required" +# if _MSC_FULL_VER < 190024234 +# error "At least \"Microsoft C/C++ Compiler\" version 19.00.24234 (Visual Studio 2015 Update 3) is required." # endif # ifndef _CRT_SECURE_NO_WARNINGS # define _CRT_SECURE_NO_WARNINGS