diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-03 15:10:58 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-03 15:12:06 -0700 |
commit | 7f9721d3990155bae83e4e4840f0ff4913868d50 (patch) | |
tree | 6c7283459b89571444694523e3431834b1952f92 /m4 | |
parent | 967e2ef61dab8d2046f3285eefa71f3dcb9d9b60 (diff) |
Update from gnulib
This incorporates:
2016-07-03 mktime: call tzset as per POSIX
* doc/misc/texinfo.tex, lib/mktime.c, m4/mktime.m4:
Copy from gnulib.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/mktime.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/mktime.m4 b/m4/mktime.m4 index 5a0f2d88ab..23cad732ff 100644 --- a/m4/mktime.m4 +++ b/m4/mktime.m4 @@ -1,4 +1,4 @@ -# serial 26 +# serial 27 dnl Copyright (C) 2002-2003, 2005-2007, 2009-2016 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation @@ -30,6 +30,7 @@ AC_DEFUN([gl_FUNC_MKTIME], dnl in Autoconf and because it invokes AC_LIBOBJ. AC_CHECK_HEADERS_ONCE([unistd.h]) AC_CHECK_DECLS_ONCE([alarm]) + AC_CHECK_FUNCS_ONCE([tzset]) AC_REQUIRE([gl_MULTIARCH]) if test $APPLE_UNIVERSAL_BUILD = 1; then # A universal build on Apple Mac OS X platforms. |