From dc966c6e46de2add009e73abada14a8b7782c561 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Sun, 20 May 2018 08:29:02 +0530 Subject: [PATCH] build-sys: Add some missing header/function checks to meson build --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 9308aa9f8..08a5fa9aa 100644 --- a/meson.build +++ b/meson.build @@ -57,6 +57,7 @@ cdata.set_quoted('DESKTOPFILEDIR', join_paths(datadir, 'applications')) check_headers = [ 'arpa/inet.h', 'cpuid.h', + 'execinfo.h', 'grp.h', 'langinfo.h', 'locale.h', @@ -78,6 +79,7 @@ check_headers = [ 'sys/select.h', 'sys/socket.h', 'sys/un.h', + 'sys/wait.h', 'valgrind/memcheck.h', 'xlocale.h', ] @@ -104,6 +106,8 @@ check_functions = [ 'fork', 'fstat', 'getaddrinfo', + 'getgrgid_r', + 'getpwnam_r', 'gettimeofday', 'getuid', 'lstat', -- 2.34.1