[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [qemu-s390x] [PATCH v3 3/5] configure: qemu-ga is only needed with s
From: |
Thomas Huth |
Subject: |
Re: [qemu-s390x] [PATCH v3 3/5] configure: qemu-ga is only needed with softmmu targets |
Date: |
Mon, 1 Apr 2019 16:50:57 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.5.0 |
On 01/04/2019 16.12, Laurent Vivier wrote:
> 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 <address@hidden>
> [lv: I also disable it with disable-tools, not only with disable-system]
> Signed-off-by: Laurent Vivier <address@hidden>
> ---
> configure | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/configure b/configure
> index 1c563a70276a..b627efede6cf 100755
> --- a/configure
> +++ b/configure
> @@ -6083,7 +6083,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
>
Reviewed-by: Thomas Huth <address@hidden>
- [qemu-s390x] [PATCH v3 0/5] build: cleanup in Makefile.objs, Laurent Vivier, 2019/04/01
- [qemu-s390x] [PATCH v3 1/5] trace: only include trace-event-subdirs when they are needed, Laurent Vivier, 2019/04/01
- [qemu-s390x] [PATCH v3 4/5] build: chardev is only needed for softmmu targets, Laurent Vivier, 2019/04/01
- [qemu-s390x] [PATCH v3 2/5] build: replace GENERATED_FILES by generated-files-y, Laurent Vivier, 2019/04/01
- [qemu-s390x] [PATCH v3 3/5] configure: qemu-ga is only needed with softmmu targets, Laurent Vivier, 2019/04/01
- Re: [qemu-s390x] [PATCH v3 3/5] configure: qemu-ga is only needed with softmmu targets,
Thomas Huth <=
- [qemu-s390x] [PATCH v3 5/5] build: don't build hardware objects with linux-user, Laurent Vivier, 2019/04/01
- Re: [qemu-s390x] [PATCH v3 0/5] build: cleanup in Makefile.objs, Paolo Bonzini, 2019/04/02