From b2ae39f68206fe3b5dd150eb8e2ae7c1c1efec12 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Sun, 18 Dec 2022 18:39:56 +0000 Subject: [PATCH] meson: fix pkg-config name of libaudit Fedora and Debian seem to use "audit", not "libaudit". Signed-off-by: Chris Hofstaedtler --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index ac385e8b25..365a149c34 100644 --- a/meson.build +++ b/meson.build @@ -374,7 +374,7 @@ lib_econf = dependency( conf.set('HAVE_LIBECONF', lib_econf.found() ? 1 : false) lib_audit = dependency( - 'libaudit', + 'audit', required : get_option('audit')) conf.set('HAVE_LIBAUDIT', lib_audit.found() ? 1 : false) -- 2.47.3