Reported by Ryan Schmidt <wget@ryandesign.com> via Tim Rühsen in
<https://lists.gnu.org/archive/html/bug-gnulib/2021-01/msg00282.html>.
* m4/utime.m4 (gl_FUNC_UTIME): In the test program, include <utime.h>,
not <time.h>.
+2021-01-23 Bruno Haible <bruno@clisp.org>
+
+ utime: Fix configure test (regression 2020-12-04).
+ Reported by Ryan Schmidt <wget@ryandesign.com> via Tim Rühsen in
+ <https://lists.gnu.org/archive/html/bug-gnulib/2021-01/msg00282.html>.
+ * m4/utime.m4 (gl_FUNC_UTIME): In the test program, include <utime.h>,
+ not <time.h>.
+
2021-01-23 Paul Eggert <eggert@cs.ucla.edu>
libc-config: port to Xcode 7
-# utime.m4 serial 3
+# utime.m4 serial 4
dnl Copyright (C) 2017-2021 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
AC_RUN_IFELSE(
[AC_LANG_PROGRAM(
[[#include <stddef.h>
- #include <time.h>
+ #include <utime.h>
]],
[[int result = 0;
if (!utime ("conftest.tmp/", NULL))