From 56320a331498bda962bc13d293c8274d311c05bb Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Sat, 19 Jan 2019 19:07:54 +0300 Subject: [PATCH] Ticket 3960: fix compilation fail on AIX 7.2. Signed-off-by: Andrew Borodin --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 62f025a8c..b898ab3c3 100644 --- a/configure.ac +++ b/configure.ac @@ -312,9 +312,9 @@ AC_EGREP_CPP([yes], ]) dnl utimensat is supported since glibc 2.6 and specified in POSIX.1-2008 -dnl utimensat() causes different timespec structures to cause failures on IBM i +dnl utimensat() causes different timespec structures to cause failures on IBM i and AIX case $host_os in -*os400) +*os400 | aix*) ;; *) AC_CHECK_FUNCS([utimensat]) -- 2.11.4.GIT