seccomp: libseccomp version varying according to arch
Libseccomp dependency was mandating version 2.2.0 on all architectures and this was causing configure and virt-test to break on non-updates distros. This patch works-around it and give a more flexible way to check the version, giving more time for other distros to update libseccomp version. Signed-off-by: Eduardo Otubo <eduardo.otubo@profitbricks.com> Reported-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Tested-by: Juan Quintela <quintela@redhat.com> Message-id: 1427385385-30571-1-git-send-email-eduardo.otubo@profitbricks.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
99b7f47c54
commit
896848f0d3
8
configure
vendored
8
configure
vendored
@ -1848,13 +1848,19 @@ fi
|
|||||||
# libseccomp check
|
# libseccomp check
|
||||||
|
|
||||||
if test "$seccomp" != "no" ; then
|
if test "$seccomp" != "no" ; then
|
||||||
if $pkg_config --atleast-version=2.2.0 libseccomp; then
|
if $pkg_config --atleast-version=2.2.0 libseccomp ||
|
||||||
|
(test "$cpu" = "i386" || test "$cpu" = "x86_64" &&
|
||||||
|
$pkg_config --atleast-version=2.1.1 libseccomp); then
|
||||||
libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`"
|
libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`"
|
||||||
QEMU_CFLAGS="$QEMU_CFLAGS `$pkg_config --cflags libseccomp`"
|
QEMU_CFLAGS="$QEMU_CFLAGS `$pkg_config --cflags libseccomp`"
|
||||||
seccomp="yes"
|
seccomp="yes"
|
||||||
else
|
else
|
||||||
if test "$seccomp" = "yes"; then
|
if test "$seccomp" = "yes"; then
|
||||||
|
if test "$cpu" = "i386" || test "$cpu" = "x86_64"; then
|
||||||
|
feature_not_found "libseccomp" "Install libseccomp devel >= 2.1.1"
|
||||||
|
else
|
||||||
feature_not_found "libseccomp" "Install libseccomp devel >= 2.2.0"
|
feature_not_found "libseccomp" "Install libseccomp devel >= 2.2.0"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
seccomp="no"
|
seccomp="no"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user