Blame m4/sys_time_h.m4

Packit Service 4684c1
# Configure a replacement for <sys/time.h>.
Packit Service 4684c1
# serial 9
Packit Service 4684c1
Packit Service 4684c1
# Copyright (C) 2007, 2009-2020 Free Software Foundation, Inc.
Packit Service 4684c1
# This file is free software; the Free Software Foundation
Packit Service 4684c1
# gives unlimited permission to copy and/or distribute it,
Packit Service 4684c1
# with or without modifications, as long as this notice is preserved.
Packit Service 4684c1
Packit Service 4684c1
# Written by Paul Eggert and Martin Lambers.
Packit Service 4684c1
Packit Service 4684c1
AC_DEFUN([gl_HEADER_SYS_TIME_H],
Packit Service 4684c1
[
Packit Service 4684c1
  dnl Use AC_REQUIRE here, so that the REPLACE_GETTIMEOFDAY=0 statement
Packit Service 4684c1
  dnl below is expanded once only, before all REPLACE_GETTIMEOFDAY=1
Packit Service 4684c1
  dnl statements that occur in other macros.
Packit Service 4684c1
  AC_REQUIRE([gl_HEADER_SYS_TIME_H_BODY])
Packit Service 4684c1
])
Packit Service 4684c1
Packit Service 4684c1
AC_DEFUN([gl_HEADER_SYS_TIME_H_BODY],
Packit Service 4684c1
[
Packit Service 4684c1
  AC_REQUIRE([AC_C_RESTRICT])
Packit Service 4684c1
  AC_REQUIRE([gl_HEADER_SYS_TIME_H_DEFAULTS])
Packit Service 4684c1
  AC_CHECK_HEADERS_ONCE([sys/time.h])
Packit Service 4684c1
  gl_CHECK_NEXT_HEADERS([sys/time.h])
Packit Service 4684c1
Packit Service 4684c1
  if test $ac_cv_header_sys_time_h != yes; then
Packit Service 4684c1
    HAVE_SYS_TIME_H=0
Packit Service 4684c1
  fi
Packit Service 4684c1
Packit Service 4684c1
  dnl On native Windows with MSVC, 'struct timeval' is defined in <winsock2.h>
Packit Service 4684c1
  dnl only. So include that header in the list.
Packit Service 4684c1
  gl_PREREQ_SYS_H_WINSOCK2
Packit Service 4684c1
  AC_CACHE_CHECK([for struct timeval], [gl_cv_sys_struct_timeval],
Packit Service 4684c1
    [AC_COMPILE_IFELSE(
Packit Service 4684c1
       [AC_LANG_PROGRAM(
Packit Service 4684c1
          [[#if HAVE_SYS_TIME_H
Packit Service 4684c1
             #include <sys/time.h>
Packit Service 4684c1
            #endif
Packit Service 4684c1
            #include <time.h>
Packit Service 4684c1
            #if HAVE_WINSOCK2_H
Packit Service 4684c1
            # include <winsock2.h>
Packit Service 4684c1
            #endif
Packit Service 4684c1
          ]],
Packit Service 4684c1
          [[static struct timeval x; x.tv_sec = x.tv_usec;]])],
Packit Service 4684c1
       [gl_cv_sys_struct_timeval=yes],
Packit Service 4684c1
       [gl_cv_sys_struct_timeval=no])
Packit Service 4684c1
    ])
Packit Service 4684c1
  if test $gl_cv_sys_struct_timeval != yes; then
Packit Service 4684c1
    HAVE_STRUCT_TIMEVAL=0
Packit Service 4684c1
  else
Packit Service 4684c1
    dnl On native Windows with a 64-bit 'time_t', 'struct timeval' is defined
Packit Service 4684c1
    dnl (in <sys/time.h> and <winsock2.h> for mingw64, in <winsock2.h> only
Packit Service 4684c1
    dnl for MSVC) with a tv_sec field of type 'long' (32-bit!), which is
Packit Service 4684c1
    dnl smaller than the 'time_t' type mandated by POSIX.
Packit Service 4684c1
    dnl On OpenBSD 5.1 amd64, tv_sec is 64 bits and time_t 32 bits, but
Packit Service 4684c1
    dnl that is good enough.
Packit Service 4684c1
    AC_CACHE_CHECK([for wide-enough struct timeval.tv_sec member],
Packit Service 4684c1
      [gl_cv_sys_struct_timeval_tv_sec],
Packit Service 4684c1
      [AC_COMPILE_IFELSE(
Packit Service 4684c1
         [AC_LANG_PROGRAM(
Packit Service 4684c1
            [[#if HAVE_SYS_TIME_H
Packit Service 4684c1
               #include <sys/time.h>
Packit Service 4684c1
              #endif
Packit Service 4684c1
              #include <time.h>
Packit Service 4684c1
              #if HAVE_WINSOCK2_H
Packit Service 4684c1
              # include <winsock2.h>
Packit Service 4684c1
              #endif
Packit Service 4684c1
            ]],
Packit Service 4684c1
            [[static struct timeval x;
Packit Service 4684c1
              typedef int verify_tv_sec_type[
Packit Service 4684c1
                sizeof (time_t) <= sizeof x.tv_sec ? 1 : -1
Packit Service 4684c1
              ];
Packit Service 4684c1
            ]])],
Packit Service 4684c1
         [gl_cv_sys_struct_timeval_tv_sec=yes],
Packit Service 4684c1
         [gl_cv_sys_struct_timeval_tv_sec=no])
Packit Service 4684c1
      ])
Packit Service 4684c1
    if test $gl_cv_sys_struct_timeval_tv_sec != yes; then
Packit Service 4684c1
      REPLACE_STRUCT_TIMEVAL=1
Packit Service 4684c1
    fi
Packit Service 4684c1
  fi
Packit Service 4684c1
Packit Service 4684c1
  dnl Check for declarations of anything we want to poison if the
Packit Service 4684c1
  dnl corresponding gnulib module is not in use.
Packit Service 4684c1
  gl_WARN_ON_USE_PREPARE([[
Packit Service 4684c1
#if HAVE_SYS_TIME_H
Packit Service 4684c1
# include <sys/time.h>
Packit Service 4684c1
#endif
Packit Service 4684c1
#include <time.h>
Packit Service 4684c1
    ]], [gettimeofday])
Packit Service 4684c1
])
Packit Service 4684c1
Packit Service 4684c1
AC_DEFUN([gl_SYS_TIME_MODULE_INDICATOR],
Packit Service 4684c1
[
Packit Service 4684c1
  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
Packit Service 4684c1
  AC_REQUIRE([gl_HEADER_SYS_TIME_H_DEFAULTS])
Packit Service 4684c1
  gl_MODULE_INDICATOR_SET_VARIABLE([$1])
Packit Service 4684c1
  dnl Define it also as a C macro, for the benefit of the unit tests.
Packit Service 4684c1
  gl_MODULE_INDICATOR_FOR_TESTS([$1])
Packit Service 4684c1
])
Packit Service 4684c1
Packit Service 4684c1
AC_DEFUN([gl_HEADER_SYS_TIME_H_DEFAULTS],
Packit Service 4684c1
[
Packit Service 4684c1
  GNULIB_GETTIMEOFDAY=0;     AC_SUBST([GNULIB_GETTIMEOFDAY])
Packit Service 4684c1
  dnl Assume POSIX behavior unless another module says otherwise.
Packit Service 4684c1
  HAVE_GETTIMEOFDAY=1;       AC_SUBST([HAVE_GETTIMEOFDAY])
Packit Service 4684c1
  HAVE_STRUCT_TIMEVAL=1;     AC_SUBST([HAVE_STRUCT_TIMEVAL])
Packit Service 4684c1
  HAVE_SYS_TIME_H=1;         AC_SUBST([HAVE_SYS_TIME_H])
Packit Service 4684c1
  REPLACE_GETTIMEOFDAY=0;    AC_SUBST([REPLACE_GETTIMEOFDAY])
Packit Service 4684c1
  REPLACE_STRUCT_TIMEVAL=0;  AC_SUBST([REPLACE_STRUCT_TIMEVAL])
Packit Service 4684c1
])