From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50366) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8Jn1-0004ok-2J for qemu-devel@nongnu.org; Wed, 01 Jun 2016 23:59:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8Jmw-0004BZ-TC for qemu-devel@nongnu.org; Wed, 01 Jun 2016 23:59:22 -0400 Received: from e37.co.us.ibm.com ([32.97.110.158]:60458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8Jmw-00048z-KL for qemu-devel@nongnu.org; Wed, 01 Jun 2016 23:59:18 -0400 Received: from localhost by e37.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 1 Jun 2016 21:59:16 -0600 From: Michael Strosaker Date: Wed, 1 Jun 2016 18:30:18 -0500 Message-Id: <1464823818-13901-1-git-send-email-strosake@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] seccomp: Add support for ppc/ppc64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: eduardo.otubo@profitbricks.com 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 --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index b5aab72..79b571d 100755 --- a/configure +++ b/configure @@ -1879,6 +1879,9 @@ if test "$seccomp" != "no" ; then arm|aarch64) libseccomp_minver="2.2.3" ;; + ppc|ppc64) + libseccomp_minver="2.3.0" + ;; *) libseccomp_minver="" ;; -- 1.8.3.1