New upstream version 1.9
[debian/gzip] / m4 / utime.m4
1 # utime.m4 serial 1
2 dnl Copyright (C) 2017-2018 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.
6
7 AC_DEFUN([gl_FUNC_UTIME],
8 [
9   AC_REQUIRE([gl_UTIME_H_DEFAULTS])
10   AC_REQUIRE([AC_CANONICAL_HOST])
11   AC_CHECK_FUNCS_ONCE([utime])
12   if test $ac_cv_func_utime = no; then
13     HAVE_UTIME=0
14   else
15     case "$host_os" in
16       mingw*)
17         dnl On this platform, the original utime() or _utime() produces
18         dnl timestamps that are affected by the time zone.
19         REPLACE_UTIME=1
20         ;;
21     esac
22   fi
23 ])
24
25 # Prerequisites of lib/utime.c.
26 AC_DEFUN([gl_PREREQ_UTIME], [:])