Reported by Eli Zaretskii in:
<https://lists.gnu.org/archive/html/bug-gnulib/2024-06/msg00044.html>.
* lib/boot-time.c [_WIN32 && !__CYGWIN__]: Remove unnecessary
<sysinfoapi.h> include. Some systems do not have this header and
<windows.h> should have the correct declarations.
* lib/readutmp.c [_WIN32 && !__CYGWIN__]: Likewise.
+2024-06-04 Collin Funk <collin.funk1@gmail.com>
+
+ boot-time, readutmp: Fix missing MinGW include (regr. 2024-05-24).
+ Reported by Eli Zaretskii in:
+ <https://lists.gnu.org/archive/html/bug-gnulib/2024-06/msg00044.html>.
+ * lib/boot-time.c [_WIN32 && !__CYGWIN__]: Remove unnecessary
+ <sysinfoapi.h> include. Some systems do not have this header and
+ <windows.h> should have the correct declarations.
+ * lib/readutmp.c [_WIN32 && !__CYGWIN__]: Likewise.
+
2024-06-03 Bruno Haible <bruno@clisp.org>
readlinkat: Work around a Cygwin 3.3.6 bug.
#if defined _WIN32 && ! defined __CYGWIN__
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
-# include <sysinfoapi.h>
# include <sys/time.h>
#endif
#if defined _WIN32 && ! defined __CYGWIN__
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
-# include <sysinfoapi.h>
# include <sys/time.h>
#endif