From e664e284d7b9533ae9729dbb2a16019b316f8c5e Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Wed, 11 Dec 2019 12:28:34 +0100 Subject: [PATCH] configure.ac: add check for getegid function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We already use this function and so far we've been lucky that the same check is done by gnulib. This will change once we will drop gnulib and also make it obvious that we have to do the same check in Meson as well. Signed-off-by: Pavel Hrdina Reviewed-by: Daniel P. Berrangé --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 7d69b8bcb4..58c4454707 100644 --- a/configure.ac +++ b/configure.ac @@ -354,6 +354,7 @@ dnl Availability of various common functions (non-fatal if missing), dnl and various less common threadsafe functions AC_CHECK_FUNCS_ONCE([\ fallocate \ + getegid \ geteuid \ getgid \ getifaddrs \