mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
configure: drop unused variables for xts
All XTS configuration uses qemu_private_xts. Drop other variables as they have only ever been used to generate the summary (which has since been moved to meson.build). Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@liaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ec44e986b1
commit
19b9cb3caf
1 changed files with 0 additions and 4 deletions
4
configure
vendored
4
configure
vendored
|
@ -406,9 +406,7 @@ gtk="auto"
|
||||||
tls_priority="NORMAL"
|
tls_priority="NORMAL"
|
||||||
gnutls="$default_feature"
|
gnutls="$default_feature"
|
||||||
nettle="$default_feature"
|
nettle="$default_feature"
|
||||||
nettle_xts="no"
|
|
||||||
gcrypt="$default_feature"
|
gcrypt="$default_feature"
|
||||||
gcrypt_xts="no"
|
|
||||||
qemu_private_xts="yes"
|
qemu_private_xts="yes"
|
||||||
auth_pam="$default_feature"
|
auth_pam="$default_feature"
|
||||||
vte="$default_feature"
|
vte="$default_feature"
|
||||||
|
@ -2897,7 +2895,6 @@ int main(void) {
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
if compile_prog "$nettle_cflags" "$nettle_libs" ; then
|
if compile_prog "$nettle_cflags" "$nettle_libs" ; then
|
||||||
nettle_xts=yes
|
|
||||||
qemu_private_xts=no
|
qemu_private_xts=no
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -2938,7 +2935,6 @@ int main(void) {
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
|
if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
|
||||||
gcrypt_xts=yes
|
|
||||||
qemu_private_xts=no
|
qemu_private_xts=no
|
||||||
fi
|
fi
|
||||||
elif test "$gcrypt" = "yes"; then
|
elif test "$gcrypt" = "yes"; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue