summaryrefslogtreecommitdiff
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
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>.
-rw-r--r--ChangeLog8
-rw-r--r--m4/utime.m44
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 43d1a1671c..2cd75b4a40 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,14 @@
+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
Problem reported by Mattias Engdegård in:
https://lists.gnu.org/r/emacs-devel/2021-01/msg01089.html
* lib/cdefs.h (__nonnull): If already defined but glibc is not in
diff --git a/m4/utime.m4 b/m4/utime.m4
index 03df7b7282..4ed415811d 100644
--- a/m4/utime.m4
+++ b/m4/utime.m4
@@ -1,7 +1,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,
dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([gl_FUNC_UTIME],
@@ -31,13 +31,13 @@ AC_DEFUN([gl_FUNC_UTIME],
if test $ac_cv_func_lstat = yes; then
ln -s conftest.tmp conftest.lnk
fi
AC_RUN_IFELSE(
[AC_LANG_PROGRAM(
[[#include <stddef.h>
- #include <time.h>
+ #include <utime.h>
]],
[[int result = 0;
if (!utime ("conftest.tmp/", NULL))
result |= 1;
#if HAVE_LSTAT
if (!utime ("conftest.lnk/", NULL))

Return to:

Send suggestions and report system problems to the System administrator.