From nobody Thu May 2 09:05:49 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1494502670486932.4442659505819; Thu, 11 May 2017 04:37:50 -0700 (PDT) Received: from localhost ([::1]:47501 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8mPk-0002lW-Lh for importer@patchew.org; Thu, 11 May 2017 07:37:48 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37769) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8mO4-0001mB-46 for qemu-devel@nongnu.org; Thu, 11 May 2017 07:36:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8mO0-0000mz-1l for qemu-devel@nongnu.org; Thu, 11 May 2017 07:36:04 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:63009) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8mNz-0000mq-Ns for qemu-devel@nongnu.org; Thu, 11 May 2017 07:35:59 -0400 X-IronPort-AV: E=Sophos;i="5.38,324,1491264000"; d="scan'208";a="431866201" From: Anthony PERARD To: Date: Thu, 11 May 2017 12:35:42 +0100 Message-ID: <20170511113542.16682-1-anthony.perard@citrix.com> X-Mailer: git-send-email 2.12.2 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 66.165.176.63 Subject: [Qemu-devel] [PATCH] configure: Remove -lxencall for Xen detection 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: , Cc: Anthony PERARD , Stefano Stabellini Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" QEMU does not depends on libxencall, it was added because it was a missing link dependency of libxendevicemodel, but now the later should be built properly. Signed-off-by: Anthony PERARD Reviewed-by: Stefano Stabellini --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 7c020c076b..fa3522d18a 100755 --- a/configure +++ b/configure @@ -2014,7 +2014,7 @@ if test "$xen" !=3D "no" ; then else =20 xen_libs=3D"-lxenstore -lxenctrl -lxenguest" - xen_stable_libs=3D"-lxencall -lxenforeignmemory -lxengnttab -lxenevtch= n" + xen_stable_libs=3D"-lxenforeignmemory -lxengnttab -lxenevtchn" =20 # First we test whether Xen headers and libraries are available. # If no, we are done and there is no Xen support. --=20 Anthony PERARD