diff options
author | Luca Boccassi <bluca@debian.org> | 2024-03-30 00:36:51 +0100 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2024-04-03 12:50:25 +0200 |
commit | 8707c9b24465ad2d45c1093a431a0597d8341077 (patch) | |
tree | f27da979f05ae1240a73e210120608336777e89f /src/journal/meson.build | |
parent | resolve: avoid reusing 'r' for encoded packet size (diff) | |
download | systemd-8707c9b24465ad2d45c1093a431a0597d8341077.tar.xz systemd-8707c9b24465ad2d45c1093a431a0597d8341077.zip |
gcrypt: dlopenify for libsystemd
gcrypt is used only for journal sealing operations in libsystemd, so it
can be made into a dlopen dependency that is used only on demand. This
allows to reduce the footprint of libsystemd in the most common cases.
Keep systemd-pull and systemd-resolved with normal linking, as they are
executables, and usually built with OpenSSL support anyway.
Diffstat (limited to 'src/journal/meson.build')
-rw-r--r-- | src/journal/meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/journal/meson.build b/src/journal/meson.build index 11bb6fa1f2..7d87754e0e 100644 --- a/src/journal/meson.build +++ b/src/journal/meson.build @@ -47,7 +47,6 @@ if get_option('link-journalctl-shared') journalctl_link_with = [libshared] else journalctl_link_with = [ - libbasic_gcrypt, libshared_static, libsystemd_static, ] |