gettimeofday: Avoid bad guess when cross-compiling to glibc systems.
[gnulib.git] / m4 / gettimeofday.m4
1 # serial 19
2
3 # Copyright (C) 2001-2003, 2005, 2007, 2009-2012 Free Software Foundation, Inc.
4 # This file is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
7
8 dnl From Jim Meyering.
9
10 AC_DEFUN([gl_FUNC_GETTIMEOFDAY],
11 [
12   AC_REQUIRE([AC_C_RESTRICT])
13   AC_REQUIRE([gl_HEADER_SYS_TIME_H])
14   AC_REQUIRE([gl_HEADER_SYS_TIME_H_DEFAULTS])
15   AC_CHECK_FUNCS_ONCE([gettimeofday])
16
17   gl_gettimeofday_timezone=void
18   if test $ac_cv_func_gettimeofday != yes; then
19     HAVE_GETTIMEOFDAY=0
20   else
21     gl_FUNC_GETTIMEOFDAY_CLOBBER
22     AC_CACHE_CHECK([for gettimeofday with POSIX signature],
23       [gl_cv_func_gettimeofday_posix_signature],
24       [AC_COMPILE_IFELSE(
25          [AC_LANG_PROGRAM(
26             [[#include <sys/time.h>
27               struct timeval c;
28               int gettimeofday (struct timeval *restrict, void *restrict);
29             ]],
30             [[/* glibc uses struct timezone * rather than the POSIX void *
31                  if _GNU_SOURCE is defined.  However, since the only portable
32                  use of gettimeofday uses NULL as the second parameter, and
33                  since the glibc definition is actually more typesafe, it is
34                  not worth wrapping this to get a compliant signature.  */
35               int (*f) (struct timeval *restrict, void *restrict)
36                 = gettimeofday;
37               int x = f (&c, 0);
38               return !(x | c.tv_sec | c.tv_usec);
39             ]])],
40           [gl_cv_func_gettimeofday_posix_signature=yes],
41           [AC_COMPILE_IFELSE(
42             [AC_LANG_PROGRAM(
43               [[#include <sys/time.h>
44 int gettimeofday (struct timeval *restrict, struct timezone *restrict);
45               ]])],
46             [gl_cv_func_gettimeofday_posix_signature=almost],
47             [gl_cv_func_gettimeofday_posix_signature=no])])])
48     if test $gl_cv_func_gettimeofday_posix_signature = almost; then
49       gl_gettimeofday_timezone='struct timezone'
50     elif test $gl_cv_func_gettimeofday_posix_signature != yes; then
51       REPLACE_GETTIMEOFDAY=1
52     fi
53     dnl If we override 'struct timeval', we also have to override gettimeofday.
54     if test $REPLACE_STRUCT_TIMEVAL = 1; then
55       REPLACE_GETTIMEOFDAY=1
56     fi
57     m4_ifdef([gl_FUNC_TZSET_CLOBBER], [
58       gl_FUNC_TZSET_CLOBBER
59       if test $gl_cv_func_tzset_clobber = yes; then
60         REPLACE_GETTIMEOFDAY=1
61         gl_GETTIMEOFDAY_REPLACE_LOCALTIME
62         AC_DEFINE([tzset], [rpl_tzset],
63           [Define to rpl_tzset if the wrapper function should be used.])
64         AC_DEFINE([TZSET_CLOBBERS_LOCALTIME], [1],
65           [Define if tzset clobbers localtime's static buffer.])
66       fi
67     ])
68   fi
69   AC_DEFINE_UNQUOTED([GETTIMEOFDAY_TIMEZONE], [$gl_gettimeofday_timezone],
70     [Define this to 'void' or 'struct timezone' to match the system's
71      declaration of the second argument to gettimeofday.])
72 ])
73
74
75 dnl See if gettimeofday clobbers the static buffer that localtime uses
76 dnl for its return value.  The gettimeofday function from Mac OS X 10.0.4
77 dnl (i.e., Darwin 1.3.7) has this problem.
78 dnl
79 dnl If it does, then arrange to use gettimeofday and localtime only via
80 dnl the wrapper functions that work around the problem.
81
82 AC_DEFUN([gl_FUNC_GETTIMEOFDAY_CLOBBER],
83 [
84  AC_REQUIRE([gl_HEADER_SYS_TIME_H])
85  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
86
87  AC_CACHE_CHECK([whether gettimeofday clobbers localtime buffer],
88   [gl_cv_func_gettimeofday_clobber],
89   [AC_RUN_IFELSE(
90      [AC_LANG_PROGRAM(
91         [[#include <string.h>
92           #include <sys/time.h>
93           #include <time.h>
94           #include <stdlib.h>
95         ]],
96         [[
97           time_t t = 0;
98           struct tm *lt;
99           struct tm saved_lt;
100           struct timeval tv;
101           lt = localtime (&t);
102           saved_lt = *lt;
103           gettimeofday (&tv, NULL);
104           return memcmp (lt, &saved_lt, sizeof (struct tm)) != 0;
105         ]])],
106      [gl_cv_func_gettimeofday_clobber=no],
107      [gl_cv_func_gettimeofday_clobber=yes],
108      [# When cross-compiling:
109       case "$host_os" in
110                 # Guess all is fine on glibc systems.
111         *-gnu*) gl_cv_func_gettimeofday_clobber="guessing no" ;;
112                 # If we don't know, assume the worst.
113         *)      gl_cv_func_gettimeofday_clobber="guessing yes" ;;
114       esac
115      ])])
116
117  case "$gl_cv_func_gettimeofday_clobber" in
118    *yes)
119      REPLACE_GETTIMEOFDAY=1
120      gl_GETTIMEOFDAY_REPLACE_LOCALTIME
121      AC_DEFINE([GETTIMEOFDAY_CLOBBERS_LOCALTIME], [1],
122        [Define if gettimeofday clobbers the localtime buffer.])
123      ;;
124  esac
125 ])
126
127 AC_DEFUN([gl_GETTIMEOFDAY_REPLACE_LOCALTIME], [
128   AC_DEFINE([gmtime], [rpl_gmtime],
129     [Define to rpl_gmtime if the replacement function should be used.])
130   AC_DEFINE([localtime], [rpl_localtime],
131     [Define to rpl_localtime if the replacement function should be used.])
132 ])
133
134 # Prerequisites of lib/gettimeofday.c.
135 AC_DEFUN([gl_PREREQ_GETTIMEOFDAY], [
136   AC_CHECK_HEADERS([sys/timeb.h])
137   AC_CHECK_FUNCS([_ftime])
138 ])