mirror of
https://github.com/mborgerson/xemu.git
synced 2025-12-01 16:10:01 +00:00
meson, configure: move --tls-priority to meson
Use the new support for string option parsing. Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@ -1598,6 +1598,7 @@ foreach k : get_option('trace_backends')
|
||||
config_host_data.set('CONFIG_TRACE_' + k.to_upper(), true)
|
||||
endforeach
|
||||
config_host_data.set_quoted('CONFIG_TRACE_FILE', get_option('trace_file'))
|
||||
config_host_data.set_quoted('CONFIG_TLS_PRIORITY', get_option('tls_priority'))
|
||||
if iasl.found()
|
||||
config_host_data.set_quoted('CONFIG_IASL', iasl.full_path())
|
||||
endif
|
||||
@ -3820,7 +3821,7 @@ summary(summary_info, bool_yn: true, section: 'Block layer support')
|
||||
|
||||
# Crypto
|
||||
summary_info = {}
|
||||
summary_info += {'TLS priority': config_host['CONFIG_TLS_PRIORITY']}
|
||||
summary_info += {'TLS priority': get_option('tls_priority')}
|
||||
summary_info += {'GNUTLS support': gnutls}
|
||||
if gnutls.found()
|
||||
summary_info += {' GNUTLS crypto': gnutls_crypto.found()}
|
||||
|
||||
Reference in New Issue
Block a user