]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
meson: add adt_libs to libdbus dependencies
authorAlan Coopersmith <alan.coopersmith@oracle.com>
Tue, 8 Oct 2024 00:29:46 +0000 (17:29 -0700)
committerAlan Coopersmith <alan.coopersmith@oracle.com>
Tue, 8 Oct 2024 00:29:46 +0000 (17:29 -0700)
Needed when building with support for Solaris audit API, otherwise
linking fails with:

Undefined                       first referenced
 symbol                             in file
adt_export_session_data             dbus/libdbus-1.so.3.38.1.p/dbus-sysdeps-unix.c.o
adt_start_session                   dbus/libdbus-1.so.3.38.1.p/dbus-sysdeps-unix.c.o
adt_end_session                     dbus/libdbus-1.so.3.38.1.p/dbus-sysdeps-unix.c.o
adt_set_from_ucred                  dbus/libdbus-1.so.3.38.1.p/dbus-sysdeps-unix.c.o

Fixes: cd2e3826 ("Add Meson build system")
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
dbus/meson.build

index 70b16f5ebce6791542e5cd043232437a62ae7177..905255c2e4e9bbacb1433ed95534af1e726a7739 100644 (file)
@@ -21,6 +21,7 @@
 
 dbus_dependencies = [
     threads,
+    adt_libs,
     network_libs,
     systemd,
     valgrind.partial_dependency(compile_args: true),