From bf988471918f45689bfee1700971efbd4ce08304 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 20 May 2009 14:21:54 +0000 Subject: [PATCH] attempt to remove regression caused by r13362 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13401 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 7bc8e48591..834603f4e9 100644 --- a/configure.in +++ b/configure.in @@ -337,11 +337,11 @@ AC_CHECK_LIB(rt, clock_gettime, [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you AC_CHECK_LIB(rt, clock_nanosleep, [AC_DEFINE(HAVE_CLOCK_NANOSLEEP, 1, [Define if you have clock_nanosleep()])]) AC_CHECK_FUNC(socket, , AC_CHECK_LIB(socket, socket)) -AC_CHECK_MEMBERS([struct tm.tm_gmtoff, struct tm.__tm_gmtoff],,,[ +AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,[ #include #include ]) -AC_CHECK_MEMBERS([struct tm.tm_zone, struct tm.__tm_zone],,,[ +AC_CHECK_MEMBERS([struct tm.tm_zone],,,[ #include #include ])