From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60167) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyHme-0006i0-By for qemu-devel@nongnu.org; Mon, 06 Aug 2012 03:31:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SyHmd-0002cv-Cp for qemu-devel@nongnu.org; Mon, 06 Aug 2012 03:31:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]:11392) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyHmd-0002cl-5A for qemu-devel@nongnu.org; Mon, 06 Aug 2012 03:31:23 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q767VLxB012156 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 6 Aug 2012 03:31:21 -0400 Message-ID: <501F72C7.5040607@redhat.com> Date: Mon, 06 Aug 2012 09:31:19 +0200 From: Gerd Hoffmann MIME-Version: 1.0 References: <1343471002-14640-1-git-send-email-alevy@redhat.com> In-Reply-To: <1343471002-14640-1-git-send-email-alevy@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3] qxl: add QXL_IO_MONITORS_CONFIG_ASYNC List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alon Levy Cc: yhalperi@redhat.com, qemu-devel@nongnu.org > diff --git a/configure b/configure > index cef0a71..5fcd315 100755 > --- a/configure > +++ b/configure > @@ -2630,7 +2630,7 @@ EOF > spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) > spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) > if $pkg_config --atleast-version=0.8.2 spice-server >/dev/null 2>&1 && \ > - $pkg_config --atleast-version=0.8.1 spice-protocol > /dev/null 2>&1 && \ > + $pkg_config --atleast-version=0.12.0 spice-protocol > /dev/null 2>&1 && \ I'd prefer to not require cutting-edge spice bits to build ... > case QXL_IO_FLUSH_SURFACES_ASYNC: > +#if SPICE_SERVER_VERSION >= 0x000b01 /* 0.11.1 */ > + case QXL_IO_MONITORS_CONFIG_ASYNC: > +#endif ... and given you #ifdef the new stuff anyway it should not be needed. cheers, Gerd