Blame m4/sys_time_h.m4

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