diff --git a/configure b/configure
index a90be038210..1e63c6862bc 100755
--- a/configure
+++ b/configure
@@ -16809,10 +16809,9 @@ fi
if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then
# Cygwin and (apparently, based on test results) Mingw both
- # have a broken strtof(), so substitute the same replacement
- # code we use with VS2013. That's not a perfect fix, since
- # (unlike with VS2013) it doesn't avoid double-rounding, but
- # we have no better options. To get that, though, we have to
+ # have a broken strtof(), so substitute its implementation.
+ # That's not a perfect fix, since it doesn't avoid double-rounding,
+ # but we have no better options. To get that, though, we have to
# force the file to be compiled despite HAVE_STRTOF.
case " $LIBOBJS " in
*" strtof.$ac_objext "* ) ;;
diff --git a/configure.ac b/configure.ac
index 7fbfb6795fe..71191f14ad7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1919,10 +1919,9 @@ fi
if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then
# Cygwin and (apparently, based on test results) Mingw both
- # have a broken strtof(), so substitute the same replacement
- # code we use with VS2013. That's not a perfect fix, since
- # (unlike with VS2013) it doesn't avoid double-rounding, but
- # we have no better options. To get that, though, we have to
+ # have a broken strtof(), so substitute its implementation.
+ # That's not a perfect fix, since it doesn't avoid double-rounding,
+ # but we have no better options. To get that, though, we have to
# force the file to be compiled despite HAVE_STRTOF.
AC_LIBOBJ([strtof])
AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.])
diff --git a/doc/src/sgml/install-windows.sgml b/doc/src/sgml/install-windows.sgml
index 66567d17a04..afb004b5cf0 100644
--- a/doc/src/sgml/install-windows.sgml
+++ b/doc/src/sgml/install-windows.sgml
@@ -22,7 +22,7 @@
Windows. The simplest way to build with
Microsoft tools is to install Visual Studio 2022
and use the included compiler. It is also possible to build with the full
- Microsoft Visual C++ 2013 to 2022.
+ Microsoft Visual C++ 2015 to 2022.
In some cases that requires the installation of the
Windows SDK in addition to the compiler.
@@ -77,15 +77,13 @@
Both 32-bit and 64-bit builds are possible with the Microsoft Compiler suite.
32-bit PostgreSQL builds are possible with
- Visual Studio 2013 to
+ Visual Studio 2015 to
Visual Studio 2022,
as well as standalone Windows SDK releases 8.1a to 10.
64-bit PostgreSQL builds are supported with
Microsoft Windows SDK version 8.1a to 10 or
- Visual Studio 2013 and above.
+ Visual Studio 2015 and above.