27 lines
910 B
Diff
27 lines
910 B
Diff
From 0d5fd96165d3bebc0d17245d31aee5bb424ea3ec Mon Sep 17 00:00:00 2001
|
|
From: Joan Torres <joantolo@redhat.com>
|
|
Date: Mon, 28 Apr 2025 11:51:58 +0200
|
|
Subject: [PATCH] meson: Define missing HAVE_LIBAUDIT
|
|
|
|
This allows using libaudit to use audit logs.
|
|
---
|
|
meson.build | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index 8da5ae878..eaa93a652 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -263,6 +263,7 @@ conf.set_quoted('GNOME_SETTINGS_DAEMON_DIR', gnome_settings_daemon_dir)
|
|
conf.set_quoted('LANG_CONFIG_FILE', lang_config_file)
|
|
conf.set_quoted('PAM_PROFILES_DIR', pam_profiles_dir[0] == '/' ? pam_profiles_dir : '/' + pam_profiles_dir)
|
|
conf.set('HAVE_ADT', have_adt)
|
|
+conf.set('HAVE_LIBAUDIT', libaudit_dep.found())
|
|
conf.set('HAVE_UTMP_H', have_utmp_header)
|
|
conf.set('HAVE_UTMPX_H', have_utmpx_header)
|
|
conf.set('HAVE_POSIX_GETPWNAM_R', have_posix_getpwnam_r)
|
|
--
|
|
2.49.0
|
|
|
|
|