summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2016-04-08 14:16:34 +0100
committerEduardo Otubo <eduardo.otubo@profitbricks.com>2016-04-16 20:27:37 +0200
commit5ce43972812e4d9473d5acfd1d12e52cb9778b2c (patch)
treee6b4242417edeb8f707ff9c48439104a0adb07e0
parentc7b45f12828c1ba7105dbc029c63d7de68eaa91c (diff)
downloadfocaccia-qemu-5ce43972812e4d9473d5acfd1d12e52cb9778b2c.tar.gz
focaccia-qemu-5ce43972812e4d9473d5acfd1d12e52cb9778b2c.zip
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 <james.hogan@imgtec.com>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Acked-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
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"
         ;;