diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-09-10 15:40:12 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-09-10 19:56:55 +0200 |
commit | d794c10d9695547834f60e282edc46be0f7f70ca (patch) | |
tree | 40838b4204966a121767e01bf7fb52e2cf306a44 /meson.build | |
parent | homectl: when chainloading a shell, prefix "-" rather than overriding first char (diff) | |
download | systemd-d794c10d9695547834f60e282edc46be0f7f70ca.tar.xz systemd-d794c10d9695547834f60e282edc46be0f7f70ca.zip |
cryptsetup: use the new crypt_token_set_external_path() API if available
Let's make use of libcryptsetup's new crypt_token_set_external_path()
API in place of the interposition stuff we have been doing before. Let's
kill it entirely, given that this was a developer feature only anyway
(and guarded by an appropriate ifdef).
Fixes: #30098
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 80e0047281..6d96996acb 100644 --- a/meson.build +++ b/meson.build @@ -1288,7 +1288,8 @@ foreach ident : ['crypt_set_metadata_size', 'crypt_reencrypt_run', 'crypt_set_data_offset', 'crypt_set_keyring_to_link', - 'crypt_resume_by_volume_key'] + 'crypt_resume_by_volume_key', + 'crypt_token_set_external_path'] have_ident = have and cc.has_function( ident, prefix : '#include <libcryptsetup.h>', |