Blame src/gl/m4/tm_gmtoff.m4

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