From patchwork Wed Mar 25 10:26:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Otubo X-Patchwork-Id: 454352 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 0DB771400B7 for ; Wed, 25 Mar 2015 21:33:21 +1100 (AEDT) Received: from localhost ([::1]:37876 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yaich-0007FB-9C for incoming@patchwork.ozlabs.org; Wed, 25 Mar 2015 06:33:19 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36561) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YaiW4-0004UM-0c for qemu-devel@nongnu.org; Wed, 25 Mar 2015 06:26:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YaiVz-0006Vj-Di for qemu-devel@nongnu.org; Wed, 25 Mar 2015 06:26:27 -0400 Received: from mail-wi0-f175.google.com ([209.85.212.175]:37785) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YaiVz-0006VR-8Q for qemu-devel@nongnu.org; Wed, 25 Mar 2015 06:26:23 -0400 Received: by wixw10 with SMTP id w10so31649712wix.0 for ; Wed, 25 Mar 2015 03:26:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=b2kL6zbHwVPJOGtzCLAxfFDpB0cWfR856EJUfB4pBx4=; b=c0dCqv5NjHV/B27ArevLG98lDRdrz/Sa2DGUW9cKZNbxS/+QqmtXAZO1KS3n/6XEFC LzD8Y5MI5L2EODxfu9LzpZ9zgqoe33rVGTqfSv6l5WWQxVwH3MA7Nx1UReCKPE5X5WAg YCWH7trgKBr6BePDdGpMtm/I3IfNxUWPLyGGjy0nkYkuqfT4pRRwdkZ5wE3p3VWrJ/hG MieS3WA1Xo1xMpfLgWNQz1D2dhNX+6uqd/0R60cGrrisM44CMXMFuGPRvlGtdIPVLY2/ QaYaFKpBxvqGNtE+EjVKWhjrxVZwkPBs6WuDktq0nhHC8Q158l1HuOdjH8ibuWev0Q9M YjMw== X-Gm-Message-State: ALoCoQlK9nJMsohPfEuNa4B8bokqqVgrqECpDQwBMLYJwM791lE4YIa1ZKTIb3tfaAOOSrHn6hRa X-Received: by 10.194.110.233 with SMTP id id9mr16767652wjb.136.1427279182327; Wed, 25 Mar 2015 03:26:22 -0700 (PDT) Received: from vader.pb.local ([62.217.45.26]) by mx.google.com with ESMTPSA id hn8sm3564289wib.18.2015.03.25.03.26.21 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 25 Mar 2015 03:26:21 -0700 (PDT) From: Eduardo Otubo To: qemu-devel@nongnu.org, pmoore@redhat.com, peter.maydell@linaro.org Date: Wed, 25 Mar 2015 11:26:09 +0100 Message-Id: <1427279169-3213-2-git-send-email-eduardo.otubo@profitbricks.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1427279169-3213-1-git-send-email-eduardo.otubo@profitbricks.com> References: <1427279169-3213-1-git-send-email-eduardo.otubo@profitbricks.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.212.175 Cc: Eduardo Otubo Subject: [Qemu-devel] [PULL for v2.3 01/01] seccomp: update libseccomp version and remove arch restriction 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 Libseccomp version updated to 2.2.0 and arch restriction to x86/x86_64 is now removed. It's supposed to work on armv7l as well. Related bug: https://bugs.launchpad.net/qemu/+bug/1363641 Signed-off-by: Eduardo Otubo --- configure | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 589798e..cbe6495 100755 --- a/configure +++ b/configure @@ -1848,14 +1848,13 @@ fi # libseccomp check if test "$seccomp" != "no" ; then - if test "$cpu" = "i386" || test "$cpu" = "x86_64" && - $pkg_config --atleast-version=2.1.1 libseccomp; then + if $pkg_config --atleast-version=2.2.0 libseccomp; then libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`" QEMU_CFLAGS="$QEMU_CFLAGS `$pkg_config --cflags libseccomp`" seccomp="yes" else if test "$seccomp" = "yes"; then - feature_not_found "libseccomp" "Install libseccomp devel >= 2.1.1" + feature_not_found "libseccomp" "Install libseccomp devel >= 2.2.0" fi seccomp="no" fi