From d0a49ddcb35b014b7f67dbbd69d2256420a5d7a2 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Sun, 25 Aug 2024 15:28:21 +0100 Subject: [PATCH] build: Check for epoll_create1 rather than epoll_create in meson.build Because `epoll_create1()` is what the code in `giounix-private.c` actually uses. Spotted by Xuntao Chi. Signed-off-by: Philip Withnall Fixes: #3450 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 48b4d9576..28f02e131 100644 --- a/meson.build +++ b/meson.build @@ -677,7 +677,7 @@ functions = [ 'copy_file_range', 'endmntent', 'endservent', - 'epoll_create', + 'epoll_create1', 'fallocate', 'fchmod', 'fchown',