Auto-commit of generated files.

This commit is contained in:
Glenn Morris 2012-07-06 06:17:34 -04:00
parent 90fc478637
commit 3181e27910

8
autogen/configure vendored
View file

@ -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;