From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:37892) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QpnmJ-0001HV-9v for qemu-devel@nongnu.org; Sat, 06 Aug 2011 16:47:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QpnmI-0006ET-72 for qemu-devel@nongnu.org; Sat, 06 Aug 2011 16:47:27 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:43250) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QpnmI-0006EL-2T for qemu-devel@nongnu.org; Sat, 06 Aug 2011 16:47:26 -0400 From: Stefan Weil Date: Sat, 6 Aug 2011 22:47:22 +0200 Message-Id: <1312663642-8298-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH] configure: Disable guest_agent for mingw32 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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 --- 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="" -- 1.7.2.5