summaryrefslogtreecommitdiff
path: root/src/journal-remote
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-02-26 11:07:24 +0100
committerJan Janssen <medhefgo@web.de>2023-03-10 11:40:14 +0100
commit92148283131474116ed458dbc5966d4b8381e1b3 (patch)
treebd53411bb50a55aed3d7d8a4aa41e13f90927bbc /src/journal-remote
parentf69edd6fafde795fdabce3508043f1272575033f (diff)
downloadsystemd-92148283131474116ed458dbc5966d4b8381e1b3.tar.gz
meson: Introduce userspace dep
This will help in a later commit to separate userspace from EFI builds.
Diffstat (limited to 'src/journal-remote')
-rw-r--r--src/journal-remote/meson.build7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/journal-remote/meson.build b/src/journal-remote/meson.build
index 74f01b0476..9fe1b8049b 100644
--- a/src/journal-remote/meson.build
+++ b/src/journal-remote/meson.build
@@ -22,11 +22,12 @@ libsystemd_journal_remote = static_library(
libsystemd_journal_remote_sources,
include_directories : journal_includes,
link_with : libjournal_core,
- dependencies : [threads,
+ dependencies : [libgnutls,
+ liblz4,
libmicrohttpd,
- libgnutls,
libxz,
- liblz4],
+ threads,
+ userspace],
build_by_default : false)
systemd_journal_remote_sources = files('journal-remote-main.c')