Thanks, should be fixed with the attached. I hadn't caught that in my testing because mktime.c does not need to be compiled on Fedora 38.
From 057084a14f36b3cd1ec033a85a2401aaf557895b Mon Sep 17 00:00:00 2001
From: Paul Eggert <egg...@cs.ucla.edu>
Date: Tue, 2 May 2023 13:18:52 -0700
Subject: [PATCH] mktime: include <intprops.h>

* lib/mktime.c: Include <intprops.h> again,
fixing a typo noted by Bruno Haible in:
https://lists.gnu.org/r/bug-gnulib/2023-05/msg00014.html
---
 ChangeLog    | 7 +++++++
 lib/mktime.c | 1 +
 2 files changed, 8 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 1486c3f894..6323068ffd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-05-02  Paul Eggert  <egg...@cs.ucla.edu>
+
+	mktime: include <intprops.h>
+	* lib/mktime.c: Include <intprops.h> again,
+	fixing a typo noted by Bruno Haible in:
+	https://lists.gnu.org/r/bug-gnulib/2023-05/msg00014.html
+
 2023-05-02  Bruno Haible  <br...@clisp.org>
 
 	fopen: Silence a gcc warning.
diff --git a/lib/mktime.c b/lib/mktime.c
index 9a37bb72f4..8e80bcdbd1 100644
--- a/lib/mktime.c
+++ b/lib/mktime.c
@@ -50,6 +50,7 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include <intprops.h>
 #include <verify.h>
 
 #ifndef NEED_MKTIME_INTERNAL
-- 
2.40.1

Reply via email to