From 3181e279107e1fc1677af0731c4247681d766ec5 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 6 Jul 2012 06:17:34 -0400 Subject: [PATCH] Auto-commit of generated files. --- autogen/configure | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/autogen/configure b/autogen/configure index 47c21af749d..29c5a9ddef8 100755 --- a/autogen/configure +++ b/autogen/configure @@ -10070,8 +10070,8 @@ $as_echo "$gl_cv_sys_struct_timeval" >&6; } if test $gl_cv_sys_struct_timeval != yes; then HAVE_STRUCT_TIMEVAL=0 else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for correct struct timeval.tv_sec member" >&5 -$as_echo_n "checking for correct struct timeval.tv_sec member... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wide-enough struct timeval.tv_sec member" >&5 +$as_echo_n "checking for wide-enough struct timeval.tv_sec member... " >&6; } if test "${gl_cv_sys_struct_timeval_tv_sec+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -10089,7 +10089,9 @@ int main () { static struct timeval x; - typedef int verify_tv_sec_type[sizeof (x.tv_sec) == sizeof (time_t) ? 1 : -1]; + typedef int verify_tv_sec_type[ + sizeof (time_t) <= sizeof x.tv_sec ? 1 : -1 + ]; ; return 0; -- 2.11.4.GIT