Check for non standard timegm, and replace it if not available.

This commit is contained in:
Vreixo Formoso
2008-01-27 14:41:52 +01:00
parent b97121a0e9
commit 5d9e481dff
2 changed files with 25 additions and 0 deletions

View File

@ -98,6 +98,11 @@ AC_CHECK_MEMBER([struct tm.tm_gmtoff],
,
[#include <time.h>])
AC_CHECK_DECL([timegm],
[AC_DEFINE(HAVE_TIMEGM, 1, [Define this if timegm function is available])],
,
[#include <time.h>])
THREAD_LIBS=-lpthread
AC_SUBST(THREAD_LIBS)