libc-config: Fix __GNUC_PREREQ macro.
[gnulib.git] / m4 / utime.m4
blob7d4a6032f9c136f3fd32f525261b31a2a08894ce
1 # utime.m4 serial 1
2 dnl Copyright (C) 2017 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   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
25 # Prerequisites of lib/utime.c.
26 AC_DEFUN([gl_PREREQ_UTIME], [:])