summaryrefslogtreecommitdiff
path: root/m4/utime.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-01-23 22:10:25 +0100
committerBruno Haible <bruno@clisp.org>2021-01-23 22:10:25 +0100
commitc20ba6929e5ac4a9cc72cd2b1f2d938e219adb01 (patch)
tree51beaf19d4e2e81175e1df037b0d121db3c790c6 /m4/utime.m4
parent195a10b512067f18c79da0b2184689bc5520517c (diff)
downloadgnulib-c20ba6929e5ac4a9cc72cd2b1f2d938e219adb01.tar.gz
gnulib-c20ba6929e5ac4a9cc72cd2b1f2d938e219adb01.tar.bz2
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>.
Diffstat (limited to 'm4/utime.m4')
-rw-r--r--m4/utime.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/utime.m4 b/m4/utime.m4
index 03df7b7282..4ed415811d 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))

Return to:

Send suggestions and report system problems to the System administrator.