From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43723) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SuL0M-0002nV-3j for qemu-devel@nongnu.org; Thu, 26 Jul 2012 06:09:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SuL0K-0001bM-BF for qemu-devel@nongnu.org; Thu, 26 Jul 2012 06:09:14 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:55587) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SuL0K-0001bC-6j for qemu-devel@nongnu.org; Thu, 26 Jul 2012 06:09:12 -0400 From: Anthony PERARD Date: Thu, 26 Jul 2012 11:09:07 +0100 Message-ID: <1343297347-5194-1-git-send-email-anthony.perard@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH] configure: Fix xen probe with Xen 4.2 and later. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU-devel Cc: Anthony PERARD , Stefano Stabellini The xs.h header is now deprecated and produce a warning. This prevent the configure script from enabling xen with Xen unstable whom will become 4.2. As this header is not anymore common to every version of Xen, we just remove it from the early probe for Xen. Signed-off-by: Anthony PERARD --- configure | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/configure b/configure index cef0a71..b13adb0 100755 --- a/configure +++ b/configure @@ -1381,7 +1381,6 @@ if test "$xen" != "no" ; then # Xen (any) cat > $TMPC < -#include int main(void) { return 0; } -- Anthony PERARD