access tests: Fix test failure on native Windows.
[gnulib.git] / m4 / utime.m4
blobf0a82355523507578c6924197e340b32250e6518
1 # utime.m4 serial 2
2 dnl Copyright (C) 2017-2020 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_UTIME],
9   AC_REQUIRE([gl_UTIME_H_DEFAULTS])
10   AC_REQUIRE([AC_CANONICAL_HOST])
11   case "$host_os" in
12     mingw*)
13       dnl On this platform, the original utime() or _utime() produces
14       dnl timestamps that are affected by the time zone.
15       dnl Use the function name 'rpl_utime' always, in order to avoid a
16       dnl possible conflict with the function name 'utime' from oldnames.lib
17       dnl (MSVC) or liboldnames.a (mingw).
18       REPLACE_UTIME=1
19       ;;
20     *)
21       AC_CHECK_FUNCS([utime])
22       if test $ac_cv_func_utime = no; then
23         HAVE_UTIME=0
24       fi
25       ;;
26   esac
29 # Prerequisites of lib/utime.c.
30 AC_DEFUN([gl_PREREQ_UTIME], [:])