From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qrs4o-0003E3-Ct for qemu-devel@nongnu.org; Fri, 12 Aug 2011 09:47:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qrs4n-0000q2-4b for qemu-devel@nongnu.org; Fri, 12 Aug 2011 09:47:06 -0400 Received: from mail-gx0-f173.google.com ([209.85.161.173]:38029) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qrs4m-0000pq-SR for qemu-devel@nongnu.org; Fri, 12 Aug 2011 09:47:04 -0400 Received: by gxk26 with SMTP id 26so2307872gxk.4 for ; Fri, 12 Aug 2011 06:47:04 -0700 (PDT) Message-ID: <4E452ED6.4050508@codemonkey.ws> Date: Fri, 12 Aug 2011 08:47:02 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1312663642-8298-1-git-send-email-weil@mail.berlios.de> In-Reply-To: <1312663642-8298-1-git-send-email-weil@mail.berlios.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] configure: Disable guest_agent for mingw32 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: qemu-devel@nongnu.org On 08/06/2011 03:47 PM, Stefan Weil wrote: > guest_agent is not supported for mingw32, so the default value > should be 'no', not 'yes'. > > This removes the dependencies to glib-2.0 and python which > makes native and cross builds for w32 much easier (no need > to get and install these extra packages). > > It also avoids the problems caused by different bitfield alignment > which is required by glib-2.0. > > It is still possible to set guest_agent=yes via configure option. > > Signed-off-by: Stefan Weil Applied to master with the expectation that we will still properly fix the slirp packing issue. Regards, Anthony Liguori > --- > configure | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index 0c67a4a..4cb33d9 100755 > --- a/configure > +++ b/configure > @@ -493,6 +493,7 @@ if test "$mingw32" = "yes" ; then > bindir="\${prefix}" > sysconfdir="\${prefix}" > confsuffix="" > + guest_agent="no" > fi > > werror=""