From c910e00de12091d59097c4ab596d262be9c0f56b Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Sat, 24 Apr 2021 11:19:53 +0200 Subject: [PATCH] configure: fix function detection Fixes: #3809 Signed-off-by: Christian Brauner --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 72a05890f..ef0de3c2e 100644 --- a/configure.ac +++ b/configure.ac @@ -652,7 +652,7 @@ AC_CHECK_HEADER([ifaddrs.h], AC_HEADER_MAJOR # Check for some syscalls functions -AC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr faccessat gettid memfd_create move_mount open_tree execveat clone3 fsopen fspick fsconfig fsmount, openat2, close_range, statvfs, mount_setattr]) +AC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr faccessat gettid memfd_create move_mount open_tree execveat clone3 fsopen fspick fsconfig fsmount openat2 close_range statvfs mount_setattr]) AC_CHECK_TYPES([__aligned_u64], [], [], [[#include ]]) AC_CHECK_TYPES([struct mount_attr], [], [], [[#include ]]) AC_CHECK_TYPES([struct open_how], [], [], [[#include ]])