summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2011-08-06 22:47:22 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2011-08-12 08:31:29 -0500
commit83b2f0a0d810922d3d167153ac612dc187ff9d8f (patch)
tree3568ceab508e3f0f90fed8eff3390135904afaf2
parent98254542f9aca81f136a96c82a9ae08e781a9baf (diff)
downloadfocaccia-qemu-83b2f0a0d810922d3d167153ac612dc187ff9d8f.tar.gz
focaccia-qemu-83b2f0a0d810922d3d167153ac612dc187ff9d8f.zip
configure: Disable guest_agent for mingw32
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 <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index a6687f7ad3..6873e13cd4 100755
--- a/configure
+++ b/configure
@@ -493,6 +493,7 @@ if test "$mingw32" = "yes" ; then
   bindir="\${prefix}"
   sysconfdir="\${prefix}"
   confsuffix=""
+  guest_agent="no"
 fi
 
 werror=""