Blame gnulib/m4/sys_time_h.m4

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