From 674d4588995d24f8bc5167f73d8661ef5c82c2de Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 17 Aug 2022 15:35:47 -0700 Subject: [PATCH 1/2] Assume HAVE_TZSET in time/mktime.c This patch does not affect glibc. It affects only Gnulib-specific code and is for coordination with Gnulib. --- time/mktime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time/mktime.c b/time/mktime.c index 494c89bf54..aa12e28e16 100644 --- a/time/mktime.c +++ b/time/mktime.c @@ -94,7 +94,7 @@ my_tzset (void) const char *tz = getenv ("TZ"); if (tz != NULL && strchr (tz, '/') != NULL) _putenv ("TZ="); -# elif HAVE_TZSET +# else tzset (); # endif } -- 2.34.1