From f19a8044c3d246523fb02785c75b9b2fee84a74f Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Thu, 30 Dec 2021 16:04:38 +0100 Subject: [PATCH] autoconf: Remove check for struct stat.st_rdev It is defined by POSIX.1-2001. Let's assume it always exists. Signed-off-by: Alejandro Colomar --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index ba3314c8..e9794010 100644 --- a/configure.ac +++ b/configure.ac @@ -56,7 +56,6 @@ AC_CHECK_FUNCS(arc4random_buf l64a fchmod fchown fsync futimes \ AC_SYS_LARGEFILE dnl Checks for typedefs, structures, and compiler characteristics. -AC_CHECK_MEMBERS([struct stat.st_rdev]) AC_CHECK_MEMBERS([struct stat.st_atim]) AC_CHECK_MEMBERS([struct stat.st_atimensec]) AC_CHECK_MEMBERS([struct stat.st_mtim])