Blame m4/strftime.m4

Packit 33f14e
# serial 34
Packit 33f14e
Packit 33f14e
# Copyright (C) 1996-1997, 1999-2007, 2009-2017 Free Software Foundation, Inc.
Packit 33f14e
#
Packit 33f14e
# This file is free software; the Free Software Foundation
Packit 33f14e
# gives unlimited permission to copy and/or distribute it,
Packit 33f14e
# with or without modifications, as long as this notice is preserved.
Packit 33f14e
Packit 33f14e
# Written by Jim Meyering and Paul Eggert.
Packit 33f14e
Packit 33f14e
AC_DEFUN([gl_FUNC_GNU_STRFTIME],
Packit 33f14e
[
Packit 33f14e
 # This defines (or not) HAVE_TZNAME and HAVE_TM_ZONE.
Packit 33f14e
 AC_REQUIRE([AC_STRUCT_TIMEZONE])
Packit 33f14e
Packit 33f14e
 AC_REQUIRE([gl_TM_GMTOFF])
Packit 33f14e
Packit 33f14e
 AC_CHECK_FUNCS_ONCE([tzset])
Packit 33f14e
Packit 33f14e
 AC_DEFINE([my_strftime], [nstrftime],
Packit 33f14e
   [Define to the name of the strftime replacement function.])
Packit 33f14e
])