comparison mcabber/macros/tm-gmtoff.m4 @ 800:103764a87777

Improve autoconf - Check for strcasestr() - Check for tm_gmtoff - Use ACLOCAL_AMFLAGS so that autoreconf works correctly
author Mikael Berthe <mikael@lilotux.net>
date Mon, 10 Apr 2006 23:16:12 +0200
parents
children
comparison
equal deleted inserted replaced
799:7362ed14dee0 800:103764a87777
1 dnl Check for the tm_gmtoff field in struct tm
2 dnl (Borrowed from the Gaim project)
3
4 AC_DEFUN([MC_TM_GMTOFF],
5 [AC_REQUIRE([AC_STRUCT_TM])dnl
6 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff,
7 [AC_TRY_COMPILE([#include <sys/types.h>
8 #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;],
9 ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)])
10 if test "$ac_cv_struct_tm_gmtoff" = yes; then
11 AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.])
12 fi
13 ])