1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

Merge pull request #23206 from yuwata/meson-compression

meson: follow-ups about compression method
This commit is contained in:
Luca Boccassi 2022-04-27 18:27:47 +01:00 committed by GitHub
commit 8bc46fc006
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1470,9 +1470,7 @@ elif compression == 'lz4' and not have_lz4
elif compression == 'xz' and not have_xz
error('default-compression=xz requires xz')
endif
conf.set('DEFAULT_COMPRESSION',
compression == 'none' ? 0 :
'COMPRESSION_@0@'.format(compression.to_upper()))
conf.set('DEFAULT_COMPRESSION', 'COMPRESSION_@0@'.format(compression.to_upper()))
want_xkbcommon = get_option('xkbcommon')
if want_xkbcommon != 'false' and not skip_deps
@ -4127,6 +4125,7 @@ summary({
'nobody user name' : nobody_user,
'nobody group name' : nobody_group,
'fallback hostname' : get_option('fallback-hostname'),
'default compression method' : compression,
'default DNSSEC mode' : default_dnssec,
'default DNS-over-TLS mode' : default_dns_over_tls,
'default mDNS mode' : default_mdns,