OSDN Git Service

seccomp: Add support for ppc/ppc64
authorMichael Strosaker <strosake@linux.vnet.ibm.com>
Wed, 1 Jun 2016 23:30:18 +0000 (18:30 -0500)
committerEduardo Otubo <eduardo.otubo@profitbricks.com>
Mon, 20 Jun 2016 09:04:09 +0000 (11:04 +0200)
Support for ppc/ppc64 is official in libseccomp 2.3.0, so modify the
configuration script to allow qemuu to enable seccomp for those platforms.

Signed-off-by: Michael Strosaker <strosake@linux.vnet.ibm.com>
configure

index 10cb212..5929aba 100755 (executable)
--- a/configure
+++ b/configure
@@ -1884,6 +1884,9 @@ if test "$seccomp" != "no" ; then
     arm|aarch64)
         libseccomp_minver="2.2.3"
         ;;
+    ppc|ppc64)
+        libseccomp_minver="2.3.0"
+        ;;
     *)
         libseccomp_minver=""
         ;;