mcabber/macros/tm-gmtoff.m4
author Mikael Berthe <mikael@lilotux.net>
Sun, 28 Feb 2010 17:02:26 +0100
changeset 1730 860b58a0e8da
parent 800 103764a87777
permissions -rw-r--r--
Update XEP-0184 support The spec now says: "If receipts are desired, a sender SHOULD include a request for message receipts on all messages, no matter whether sending to the bare JID <localpart@domain.tld> of the recipient or the full JID <localpart@domain.tld/resource>." MCabber now sends message receipt requests to bare JIDs.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
800
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
dnl Check for the tm_gmtoff field in struct tm
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
dnl (Borrowed from the Gaim project)
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
AC_DEFUN([MC_TM_GMTOFF],
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
[AC_REQUIRE([AC_STRUCT_TM])dnl
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff,
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
[AC_TRY_COMPILE([#include <sys/types.h>
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
#include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;],
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
  ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)])
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
if test "$ac_cv_struct_tm_gmtoff" = yes; then
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
  AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.])
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    12
fi
103764a87777 Improve autoconf
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    13
])