view mcabber/macros/tm-gmtoff.m4 @ 1834:d3d4d1c1cb00

Fix previous changeset (760affbebb96) INSTALL_HEADERS wasn't set anymore after the configure.ac change. BTW, consistently use AC_HELP_STRING.
author Mikael Berthe <mikael@lilotux.net>
date Sat, 27 Mar 2010 15:49:14 +0100
parents 103764a87777
children
line wrap: on
line source

dnl Check for the tm_gmtoff field in struct tm
dnl (Borrowed from the Gaim project)

AC_DEFUN([MC_TM_GMTOFF],
[AC_REQUIRE([AC_STRUCT_TM])dnl
AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;],
  ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)])
if test "$ac_cv_struct_tm_gmtoff" = yes; then
  AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.])
fi
])