From: Thomas Huth Date: Thu, 14 Sep 2017 10:36:03 +0000 (+0200) Subject: configure: Allow --enable-seccomp on s390x, too X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3aa35fcffcf0fe22ac48d4277ed6057ae3e57ce0;p=qemu.git configure: Allow --enable-seccomp on s390x, too libseccomp supports s390x since version 2.3.0, and I was able to start a VM with "-sandbox on" without any obvious problems by using this patch, so it should be safe to allow --enable-seccomp on s390x nowadays, too. Signed-off-by: Thomas Huth Message-Id: <1505385363-27717-1-git-send-email-thuth@redhat.com> Acked-by: Christian Borntraeger Acked-by: Eduardo Otubo Acked-by: Halil Pasic Signed-off-by: Cornelia Huck --- diff --git a/configure b/configure index 94db2d103e..cb0f7ed0ab 100755 --- a/configure +++ b/configure @@ -2025,7 +2025,7 @@ if test "$seccomp" != "no" ; then arm|aarch64) libseccomp_minver="2.2.3" ;; - ppc|ppc64) + ppc|ppc64|s390x) libseccomp_minver="2.3.0" ;; *)