]> Savannah Git Hosting - gnulib.git/commitdiff
time_r: refactor tm_zone tests
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 16 Jun 2024 21:44:29 +0000 (14:44 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 16 Jun 2024 23:38:20 +0000 (16:38 -0700)
* m4/tm_gmtoff.m4 (gl_TM_GMTOFF): Also check for tm_zone
and define HAVE_STRUCT_TM_TM_ZONE accordingly.
* modules/time_r-tests (Files): Add m4/tm_gmtoff.m4.
(configure.ac): Simplify by using gl_TM_GMTOFF.

ChangeLog
m4/tm_gmtoff.m4
modules/time_r-tests

index 54eeb40706b60842ee1193147c4034eef9142354..5c24caebca7219390b4d6e710e1b102778a30989 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2024-06-16  Paul Eggert  <eggert@cs.ucla.edu>
 
+       time_r: refactor tm_zone tests
+       * m4/tm_gmtoff.m4 (gl_TM_GMTOFF): Also check for tm_zone
+       and define HAVE_STRUCT_TM_TM_ZONE accordingly.
+       * modules/time_r-tests (Files): Add m4/tm_gmtoff.m4.
+       (configure.ac): Simplify by using gl_TM_GMTOFF.
+
        time_r-tests: avoid tzname test
        * modules/time_r-tests (configure.ac):
        Do not check for tzname, as the tests don’t use it.
index ad64df49546a8eccbd39858501dddbb9055ced77..3d97edb7a7fb3b2149b655689b66538817da846b 100644 (file)
@@ -1,13 +1,22 @@
 # tm_gmtoff.m4
-# serial 4
+# serial 5
 dnl Copyright (C) 2002, 2009-2024 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
+dnl Check for tm_gmtoff and tm_zone in struct tm, and #define
+dnl HAVE_STRUCT_TM_TM_GMTOFF and HAVE_STRUCT_TM_TM_ZONE accordingly.
+dnl Most code that needs one needs the other, so there seemed little
+dnl point to having two macros to check them individually.
+dnl Although all platforms that we know of have either both members or
+dnl neither member, check for the two members separately just in case.
+dnl
+dnl These days this macro is more useful than AC_STRUCT_TIMEZONE, which also
+dnl checks for the obsolescent tzname and does not check for tm_gmtoff.
 AC_DEFUN([gl_TM_GMTOFF],
 [
-  AC_CHECK_MEMBERS([struct tm.tm_gmtoff], [], [],
+  AC_CHECK_MEMBERS([struct tm.tm_gmtoff, struct tm.tm_zone], [], [],
     [[#include <time.h>
     ]])
 
index 9d82cb3657ba26b830fd63e8c51b80dcc761fafa..c29d09cc24b5fc0902287f938e94f069f215f4b1 100644 (file)
@@ -1,4 +1,5 @@
 Files:
+m4/tm_gmtoff.m4
 tests/test-gmtime_r.c
 tests/test-gmtime_r-mt.c
 tests/test-localtime_r.c
@@ -11,9 +12,7 @@ thread
 nanosleep
 
 configure.ac:
-AC_CHECK_MEMBERS([struct tm.tm_gmtoff, struct tm.tm_zone], [], [],
-  [[#include <time.h>
-  ]])
+gl_TM_GMTOFF
 
 Makefile.am:
 TESTS += \