From: Glenn Morris Date: Fri, 6 Jul 2012 10:17:34 +0000 (-0400) Subject: Auto-commit of generated files. X-Git-Tag: emacs-24.2.90~1199^2~179 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3181e279107e1fc1677af0731c4247681d766ec5;p=emacs.git Auto-commit of generated files. --- 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;