Merge branch 'adt' into 'master'

meson fixes for Solaris audit API support

See merge request dbus/dbus!477
This commit is contained in:
Simon McVittie 2024-10-08 11:31:31 +00:00
commit 88ec21ce94
2 changed files with 2 additions and 1 deletions

View file

@ -21,6 +21,7 @@
dbus_dependencies = [
threads,
adt_libs,
network_libs,
systemd,
valgrind.partial_dependency(compile_args: true),

View file

@ -568,7 +568,7 @@ endif
adt_api_check = cc.compiles('''
#include <bsm/adt.h>
int main() {
adt_user_context = ADT_USER;
int adt_user_context = ADT_USER;
return 0;
}
''', args: compile_args_c)