summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Strosaker2016-06-02 01:30:18 +0200
committerEduardo Otubo2016-06-20 11:04:09 +0200
commit3e684455032a748be261e5a2524147940af9b6d9 (patch)
tree3d2b0064c80bfd73b24e5c1147742e755406405c
parentMerge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160617'... (diff)
downloadqemu-3e684455032a748be261e5a2524147940af9b6d9.tar.gz
qemu-3e684455032a748be261e5a2524147940af9b6d9.tar.xz
qemu-3e684455032a748be261e5a2524147940af9b6d9.zip
seccomp: Add support for ppc/ppc64
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>
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 10cb212359..5929aba98c 100755
--- 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=""
;;