From 86c2747aebd10b1f81399bbf4c25b7a8532b0456 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Sat, 31 Dec 2011 16:14:27 +0100 Subject: [PATCH] ignore utimensat on GNU/kFreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit See: http://bugs.debian.org/651104 See: http://lists.debian.org/debian-bsd/2011/03/msg00063.html Signed-off-by: Gonéri Le Bouder --- config/configure | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/configure b/config/configure index 8841fff..a1272c3 100755 --- a/config/configure +++ b/config/configure @@ -59,7 +59,11 @@ AC_CHECK_HEADERS unistd.h AC_CHECK_HEADERS linux/fs.h AC_CHECK_HEADERS sys/ioctl.h -AC_CHECK_FUNCS utimensat +# on GNU/kFreeBSD utimensat is defined in the GNU libc +# but won't work +if [ -z "$OS_GNUKFREEBSD" ]; then + AC_CHECK_FUNCS utimensat +fi AC_CHECK_FUNCS utimes AC_CHECK_FUNCS lutimes -- 2.39.5