2 dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
9 # Redefine AC_FUNC_MKTIME, to fix a bug in Autoconf 2.57 and earlier.
10 # This redefinition can be removed once a new version of Autoconf comes out.
11 # The redefinition is taken from
12 # <http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/autoconf/autoconf/lib/autoconf/functions.m4?rev=1.78>.
15 AC_DEFUN([AC_FUNC_MKTIME],
16 [AC_REQUIRE([AC_HEADER_TIME])dnl
17 AC_CHECK_HEADERS(stdlib.h sys/time.h unistd.h)
19 AC_CACHE_CHECK([for working mktime], ac_cv_func_working_mktime,
20 [AC_RUN_IFELSE([AC_LANG_SOURCE(
21 [[/* Test program from Paul Eggert and Tony Leneis. */
22 #if TIME_WITH_SYS_TIME
23 # include <sys/time.h>
27 # include <sys/time.h>
42 # define alarm(X) /* empty */
45 /* Work around redefinition to rpl_putenv by other config tests. */
48 static time_t time_t_max;
49 static time_t time_t_min;
51 /* Values we'll use to set the TZ environment variable. */
52 static char *tz_strings[] = {
53 (char *) 0, "TZ=GMT0", "TZ=JST-9",
54 "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00"
56 #define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0]))
58 /* Fail if mktime fails to convert a date in the spring-forward gap.
59 Based on a problem report from Andreas Jaeger. */
63 /* glibc (up to about 1998-10-07) failed this test. */
66 /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0"
67 instead of "TZ=America/Vancouver" in order to detect the bug even
68 on systems that don't support the Olson extension, or don't have the
69 full zoneinfo tables installed. */
70 putenv ("TZ=PST8PDT,M4.1.0,M10.5.0");
79 if (mktime (&tm) == (time_t)-1)
88 if ((lt = localtime (&now)) && mktime (lt) != now)
97 mktime_test1 ((time_t) (time_t_max - now));
98 mktime_test1 ((time_t) (time_t_min + now));
104 /* Based on code from Ariel Faigon. */
114 if (tm.tm_mon != 2 || tm.tm_mday != 31)
124 tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = j;
126 if (now != (time_t) -1)
128 struct tm *lt = localtime (&now);
130 && lt->tm_year == tm.tm_year
131 && lt->tm_mon == tm.tm_mon
132 && lt->tm_mday == tm.tm_mday
133 && lt->tm_hour == tm.tm_hour
134 && lt->tm_min == tm.tm_min
135 && lt->tm_sec == tm.tm_sec
136 && lt->tm_yday == tm.tm_yday
137 && lt->tm_wday == tm.tm_wday
138 && ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst)
139 == (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst))))
150 /* This test makes some buggy mktime implementations loop.
151 Give up after 60 seconds; a mktime slower than that
152 isn't worth using anyway. */
155 for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
159 for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2)
161 delta = time_t_max / 997; /* a suitable prime number */
162 for (i = 0; i < N_STRINGS; i++)
165 putenv (tz_strings[i]);
167 for (t = 0; t <= time_t_max - delta; t += delta)
169 mktime_test ((time_t) 1);
170 mktime_test ((time_t) (60 * 60));
171 mktime_test ((time_t) (60 * 60 * 24));
173 for (j = 1; 0 < j; j *= 2)
175 bigtime_test (j - 1);
178 spring_forward_gap ();
181 [ac_cv_func_working_mktime=yes],
182 [ac_cv_func_working_mktime=no],
183 [ac_cv_func_working_mktime=no])])
184 if test $ac_cv_func_working_mktime = no; then
189 AC_DEFUN([gl_FUNC_MKTIME],
191 AC_REQUIRE([AC_FUNC_MKTIME])
192 if test $ac_cv_func_working_mktime = no; then
193 AC_DEFINE(mktime, rpl_mktime,
194 [Define to rpl_mktime if the replacement function should be used.])
199 # Prerequisites of lib/mktime.c.
200 AC_DEFUN([gl_PREREQ_MKTIME], [:])