5 dnl See if gettimeofday clobbers the static buffer that localtime uses
6 dnl for it's return value. The gettimeofday function from Mac OS X 10.0.4,
7 dnl i.e. Darwin 1.3.7 has this problem.
9 dnl If it does, then arrange to use gettimeofday and localtime only via
10 dnl the wrapper functions that work around the problem.
12 AC_DEFUN([AC_FUNC_GETTIMEOFDAY_CLOBBER],
14 AC_REQUIRE([AC_HEADER_TIME])
15 AC_CACHE_CHECK([whether gettimeofday clobbers localtime buffer],
16 jm_cv_func_gettimeofday_clobber,
21 #if TIME_WITH_SYS_TIME
22 # include <sys/time.h>
26 # include <sys/time.h>
43 gettimeofday (&tv, NULL);
44 if (memcmp (lt, &saved_lt, sizeof (struct tm)) != 0)
50 jm_cv_func_gettimeofday_clobber=no,
51 jm_cv_func_gettimeofday_clobber=yes,
52 dnl When crosscompiling, assume it is broken.
53 jm_cv_func_gettimeofday_clobber=yes)
55 if test $jm_cv_func_gettimeofday_clobber = yes; then
56 gl_GETTIMEOFDAY_REPLACE_LOCALTIME
58 AC_DEFINE(gettimeofday, rpl_gettimeofday,
59 [Define to rpl_gettimeofday if the replacement function should be used.])
60 AC_DEFINE(GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, 1,
61 [Define if gettimeofday clobbers localtime's static buffer.])
62 gl_PREREQ_GETTIMEOFDAY
66 AC_DEFUN([gl_GETTIMEOFDAY_REPLACE_LOCALTIME], [
67 AC_LIBOBJ(gettimeofday)
68 AC_DEFINE(gmtime, rpl_gmtime,
69 [Define to rpl_gmtime if the replacement function should be used.])
70 AC_DEFINE(localtime, rpl_localtime,
71 [Define to rpl_localtime if the replacement function should be used.])
74 # Prerequisites of lib/gettimeofday.c.
75 AC_DEFUN([gl_PREREQ_GETTIMEOFDAY], [
76 AC_REQUIRE([AC_HEADER_TIME])