Blame m4/timegm.m4

Packit 8f70b4
# timegm.m4 serial 12
Packit 8f70b4
dnl Copyright (C) 2003, 2007, 2009-2018 Free Software Foundation, Inc.
Packit 8f70b4
dnl This file is free software; the Free Software Foundation
Packit 8f70b4
dnl gives unlimited permission to copy and/or distribute it,
Packit 8f70b4
dnl with or without modifications, as long as this notice is preserved.
Packit 8f70b4
Packit 8f70b4
AC_DEFUN([gl_FUNC_TIMEGM],
Packit 8f70b4
[
Packit 8f70b4
  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
Packit 8f70b4
  AC_REQUIRE([gl_FUNC_MKTIME_WORKS])
Packit 8f70b4
  REPLACE_TIMEGM=0
Packit 8f70b4
  AC_CHECK_FUNCS_ONCE([timegm])
Packit 8f70b4
  if test $ac_cv_func_timegm = yes; then
Packit 8f70b4
    if test "$gl_cv_func_working_mktime" != yes; then
Packit 8f70b4
      # Assume that timegm is buggy if mktime is.
Packit 8f70b4
      REPLACE_TIMEGM=1
Packit 8f70b4
    fi
Packit 8f70b4
  else
Packit 8f70b4
    HAVE_TIMEGM=0
Packit 8f70b4
  fi
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# Prerequisites of lib/timegm.c.
Packit 8f70b4
AC_DEFUN([gl_PREREQ_TIMEGM], [
Packit 8f70b4
  :
Packit 8f70b4
])