From patchwork Mon Apr 4 08:29:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: James Hogan X-Patchwork-Id: 605757 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3qdlZD1674z9s4q for ; Mon, 4 Apr 2016 18:31:16 +1000 (AEST) Received: from localhost ([::1]:57255 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1amzuk-0002O0-1b for incoming@patchwork.ozlabs.org; Mon, 04 Apr 2016 04:31:14 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33218) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1amztI-0008Nx-3v for qemu-devel@nongnu.org; Mon, 04 Apr 2016 04:29:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1amztH-0003s4-92 for qemu-devel@nongnu.org; Mon, 04 Apr 2016 04:29:44 -0400 Received: from mailapp01.imgtec.com ([195.59.15.196]:39670) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1amztH-0003qi-3i for qemu-devel@nongnu.org; Mon, 04 Apr 2016 04:29:43 -0400 Received: from hhmail02.hh.imgtec.org (unknown [10.100.10.20]) by Websense Email Security Gateway with ESMTPS id 3999D60AD5059; Mon, 4 Apr 2016 09:29:34 +0100 (IST) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by hhmail02.hh.imgtec.org (10.100.10.20) with Microsoft SMTP Server (TLS) id 14.3.266.1; Mon, 4 Apr 2016 09:29:36 +0100 Received: from jhogan-linux.le.imgtec.org (192.168.154.110) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.266.1; Mon, 4 Apr 2016 09:29:35 +0100 From: James Hogan To: Date: Mon, 4 Apr 2016 09:29:16 +0100 Message-ID: <1459758556-4557-3-git-send-email-james.hogan@imgtec.com> X-Mailer: git-send-email 2.4.10 In-Reply-To: <1459758556-4557-1-git-send-email-james.hogan@imgtec.com> References: <1459758556-4557-1-git-send-email-james.hogan@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [192.168.154.110] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 195.59.15.196 Cc: James Hogan , Aurelien Jarno , Eduardo Otubo Subject: [Qemu-devel] [PATCH 2/2] configure: Enable seccomp sandbox for MIPS X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Enable seccomp on MIPS since libseccomp version 2.2.0 when MIPS support was first added. Signed-off-by: James Hogan Cc: Eduardo Otubo Cc: Aurelien Jarno Reviewed-By: Andrew Jones --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 5db29f0245ae..f1c307bfc69c 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" ;;