summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--configure.ac4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4ed3b80b2fec..7da780aca76a 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ run and compile LibreOffice, also used by the TDF builds:
* Windows:
* Runtime: Windows 7
- * Build: Cygwin + Visual Studio 2019 version 16.4
+ * Build: Cygwin + Visual Studio 2019 version 16.5
* macOS:
* Runtime: 10.10
* Build: 10.14.4 + Xcode 11.3
diff --git a/configure.ac b/configure.ac
index 562d0141e6cd..7c97317170cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3991,11 +3991,11 @@ if test "$_os" = "WINNT"; then
AC_MSG_ERROR([Visual C++ not found after all, huh])
fi
- AC_MSG_CHECKING([$CC_BASE is at least Visual Studio 2019 version 16.4])
+ AC_MSG_CHECKING([$CC_BASE is at least Visual Studio 2019 version 16.5])
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
// See <https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros> for mapping
// between Visual Studio versions and _MSC_VER:
- #if _MSC_VER < 1924
+ #if _MSC_VER < 1925
#error
#endif
]])],[AC_MSG_RESULT([yes])],[AC_MSG_ERROR([no])])