From: Laurent Vivier Date: Mon, 1 Apr 2019 14:12:20 +0000 (+0200) Subject: configure: qemu-ga is only needed with softmmu targets X-Git-Tag: qemu-xen-4.13.0-rc1~176^2~5 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a51259059503a197dd8fbc152786cbacf3127bbb;p=qemu-xen.git configure: qemu-ga is only needed with softmmu targets Remove it from the list of tools if --disable-system and --disable-tools are used as we don't need it for linux-user targets. Suggested-by: Paolo Bonzini [lv: I also disable it with disable-tools, not only with disable-system] Signed-off-by: Laurent Vivier Message-Id: <20190401141222.30034-4-lvivier@redhat.com> --- diff --git a/configure b/configure index 8999698bc2..d2fc346302 100755 --- a/configure +++ b/configure @@ -6079,7 +6079,9 @@ fi # Probe for guest agent support/options if [ "$guest_agent" != "no" ]; then - if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then + if [ "$softmmu" = no -a "$want_tools" = no ] ; then + guest_agent=no + elif [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then tools="qemu-ga $tools" guest_agent=yes elif [ "$guest_agent" != yes ]; then