[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] qemu-qa: fix build with mingw
From: |
Yan Vugenfirer |
Subject: |
[Qemu-devel] [PATCH] qemu-qa: fix build with mingw |
Date: |
Wed, 28 Aug 2013 19:20:45 +0300 |
Fixing broken stand alone build of qemu-ga using mingw.
The problem was introduced by commit e8ef31a35.
Signed-off-by: Yan Vugenfirer <address@hidden>
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 0a55c20..20becfa 100755
--- a/configure
+++ b/configure
@@ -3477,7 +3477,7 @@ if test "$softmmu" = yes ; then
fi
fi
if [ "$guest_agent" != "no" ]; then
- if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
+ if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32"
= "yes" ] ; then
tools="qemu-ga\$(EXESUF) $tools"
guest_agent=yes
elif [ "$guest_agent" != yes ]; then
--
1.8.3.1
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-devel] [PATCH] qemu-qa: fix build with mingw,
Yan Vugenfirer <=