From patchwork Wed Jan 18 15:05:48 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christian Ehrhardt X-Patchwork-Id: 9524073 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id C50FA601B7 for ; Wed, 18 Jan 2017 15:06:48 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AB1CC285E7 for ; Wed, 18 Jan 2017 15:06:48 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9D161285EF; Wed, 18 Jan 2017 15:06:48 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 265AF285E7 for ; Wed, 18 Jan 2017 15:06:48 +0000 (UTC) Received: from localhost ([::1]:41983 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTrp1-0006g1-8I for patchwork-qemu-devel@patchwork.kernel.org; Wed, 18 Jan 2017 10:06:47 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49857) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTroB-0006MD-ID for qemu-devel@nongnu.org; Wed, 18 Jan 2017 10:05:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTro8-0003cY-B7 for qemu-devel@nongnu.org; Wed, 18 Jan 2017 10:05:55 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:48778) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTro8-0003bt-5Q for qemu-devel@nongnu.org; Wed, 18 Jan 2017 10:05:52 -0500 Received: from 1.general.paelzer.uk.vpn ([10.172.196.172] helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1cTro6-00061B-H0; Wed, 18 Jan 2017 15:05:50 +0000 From: Christian Ehrhardt To: Christian Ehrhardt , Viktor Mihajlovski , Christian Borntraeger , qemu-devel@nongnu.org Date: Wed, 18 Jan 2017 16:05:48 +0100 Message-Id: <1484751948-21387-1-git-send-email-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.7.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 91.189.89.112 Subject: [Qemu-devel] [PATCH] configure: allow enabling seccomp on s390x X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP Allow enabling seccomp support on s390x if sufficient build dependencies are provided. Signed-off-by: Christian Ehrhardt --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 86f5214..5056ba9 100755 --- a/configure +++ b/configure @@ -1927,6 +1927,9 @@ if test "$seccomp" != "no" ; then ppc|ppc64) libseccomp_minver="2.3.0" ;; + s390|s390x) + libseccomp_minver="2.3.0" + ;; *) libseccomp_minver="" ;;