From: Michael Strosaker Date: Wed, 1 Jun 2016 23:30:18 +0000 (-0500) Subject: seccomp: Add support for ppc/ppc64 X-Git-Tag: v2.7.0-rc0~108^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e684455032a748be261e5a2524147940af9b6d9;p=thirdparty%2Fqemu.git 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 --- diff --git a/configure b/configure index 10cb212359c..5929aba98ca 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="" ;;