1
0
mirror of https://github.com/systemd/systemd synced 2026-04-26 00:45:09 +02:00

Compare commits

..

No commits in common. "8bc46fc00649e28a32a338b79656ab0f834e70d9" and "4d5713bb7e34d007f0a38c3bd3bc35e7e4fcaada" have entirely different histories.

View File

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