Blame m4/tm_gmtoff.m4

Packit Service a2489d
# tm_gmtoff.m4 serial 3
Packit Service a2489d
dnl Copyright (C) 2002, 2009-2018 Free Software Foundation, Inc.
Packit Service a2489d
dnl This file is free software; the Free Software Foundation
Packit Service a2489d
dnl gives unlimited permission to copy and/or distribute it,
Packit Service a2489d
dnl with or without modifications, as long as this notice is preserved.
Packit Service a2489d
Packit Service a2489d
AC_DEFUN([gl_TM_GMTOFF],
Packit Service a2489d
[
Packit Service a2489d
 AC_CHECK_MEMBER([struct tm.tm_gmtoff],
Packit Service a2489d
                 [AC_DEFINE([HAVE_TM_GMTOFF], [1],
Packit Service a2489d
                            [Define if struct tm has the tm_gmtoff member.])],
Packit Service a2489d
                 ,
Packit Service a2489d
                 [#include <time.h>])
Packit Service a2489d
])