From: James Hogan Date: Fri, 8 Apr 2016 13:16:34 +0000 (+0100) Subject: configure: Enable seccomp sandbox for MIPS X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5ce43972812e4d9473d5acfd1d12e52cb9778b2c;p=qemu.git configure: Enable seccomp sandbox for MIPS Enable seccomp on MIPS since libseccomp version 2.2.0 when MIPS support was first added. Signed-off-by: James Hogan Reviewed-by: Andrew Jones Acked-by: Eduardo Otubo --- diff --git a/configure b/configure index 5db29f0245..f1c307bfc6 100755 --- a/configure +++ b/configure @@ -1872,6 +1872,9 @@ if test "$seccomp" != "no" ; then i386|x86_64) libseccomp_minver="2.1.0" ;; + mips) + libseccomp_minver="2.2.0" + ;; arm|aarch64) libseccomp_minver="2.2.3" ;;