-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | m4/utime.m4 | 4 |
2 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,11 @@ +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 diff --git a/m4/utime.m4 b/m4/utime.m4 index 03df7b7..4ed4158 100644 --- a/m4/utime.m4 +++ b/m4/utime.m4 @@ -1,4 +1,4 @@ -# 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, @@ -34,7 +34,7 @@ AC_DEFUN([gl_FUNC_UTIME], AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include <stddef.h> - #include <time.h> + #include <utime.h> ]], [[int result = 0; if (!utime ("conftest.tmp/", NULL)) |