summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorMichal Sekletar <msekleta@redhat.com>2024-07-09 15:21:34 +0200
committerLuca Boccassi <luca.boccassi@gmail.com>2024-08-06 18:32:42 +0200
commit68511cebe58977ea68ae4f57c6462e979efd1cff (patch)
tree9fb9445b00cd0b8f810dbb24220fc1e52043dc90 /meson.build
parentsysusers: check if requested group name matches user name in queue (diff)
downloadsystemd-68511cebe58977ea68ae4f57c6462e979efd1cff.tar.xz
systemd-68511cebe58977ea68ae4f57c6462e979efd1cff.zip
coredump: generate properly symbolized stacktrace for containerized processes
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index c0eb6ca437..09e7c81c59 100644
--- a/meson.build
+++ b/meson.build
@@ -1389,6 +1389,10 @@ conf.set10('HAVE_ELFUTILS', libdw.found())
conf.set10('HAVE_DWELF_ELF_E_MACHINE_STRING',
libdw.found() and cc.has_function('dwelf_elf_e_machine_string', dependencies : libdw))
+# New in elfutils 0.192
+conf.set10('HAVE_DWFL_SET_SYSROOT',
+ libdw.found() and cc.has_function('dwfl_set_sysroot', dependencies : libdw))
+
libz = dependency('zlib',
required : get_option('zlib'))
conf.set10('HAVE_ZLIB', libz.found())