Auto-commit of generated files.
This commit is contained in:
parent
90fc478637
commit
3181e27910
1 changed files with 5 additions and 3 deletions
8
autogen/configure
vendored
8
autogen/configure
vendored
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue