qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0
@ 2019-02-04  8:25 Thomas Huth
  2019-02-04 10:19 ` Daniel P. Berrangé
  2019-02-04 13:07 ` Alex Bennée
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Huth @ 2019-02-04  8:25 UTC (permalink / raw)
  To: qemu-devel, Alex Bennée, Fam Zheng, Gerd Hoffmann
  Cc: qemu-trivial, Philippe Mathieu-Daudé,
	Daniel P. Berrangé

Patchew currently reports failures with the mingw docker test - this
is due to --with-sdlabi=2.0 configure flag which does not exist anymore.
Remove this remainder from the docker test and the docs now.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 docs/multiseat.txt      | 2 +-
 tests/docker/test-mingw | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/docs/multiseat.txt b/docs/multiseat.txt
index 8dde36c..11850c9 100644
--- a/docs/multiseat.txt
+++ b/docs/multiseat.txt
@@ -9,7 +9,7 @@ First you must compile qemu with a user interface supporting
 multihead/multiseat and input event routing.  Right now this
 list includes sdl2, gtk (both 2+3) and vnc:
 
-  ./configure --enable-sdl --with-sdlabi=2.0
+  ./configure --enable-sdl
 
 or
 
diff --git a/tests/docker/test-mingw b/tests/docker/test-mingw
index b078f22..4b84cfe 100755
--- a/tests/docker/test-mingw
+++ b/tests/docker/test-mingw
@@ -27,8 +27,7 @@ for prefix in x86_64-w64-mingw32- i686-w64-mingw32-; do
         --enable-curl \
         --enable-vnc \
         --enable-bzip2 \
-        --enable-guest-agent \
-        --with-sdlabi=2.0
+        --enable-guest-agent
     install_qemu
     make clean
 
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0
  2019-02-04  8:25 [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0 Thomas Huth
@ 2019-02-04 10:19 ` Daniel P. Berrangé
  2019-02-04 11:39   ` Philippe Mathieu-Daudé
  2019-02-04 13:07 ` Alex Bennée
  1 sibling, 1 reply; 5+ messages in thread
From: Daniel P. Berrangé @ 2019-02-04 10:19 UTC (permalink / raw)
  To: Thomas Huth
  Cc: qemu-devel, Alex Bennée, Fam Zheng, Gerd Hoffmann,
	qemu-trivial, Philippe Mathieu-Daudé

On Mon, Feb 04, 2019 at 09:25:43AM +0100, Thomas Huth wrote:
> Patchew currently reports failures with the mingw docker test - this
> is due to --with-sdlabi=2.0 configure flag which does not exist anymore.
> Remove this remainder from the docker test and the docs now.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  docs/multiseat.txt      | 2 +-
>  tests/docker/test-mingw | 3 +--
>  2 files changed, 2 insertions(+), 3 deletions(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0
  2019-02-04 10:19 ` Daniel P. Berrangé
@ 2019-02-04 11:39   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-02-04 11:39 UTC (permalink / raw)
  To: Daniel P. Berrangé, Thomas Huth, Alex Bennée,
	Peter Maydell
  Cc: qemu-devel, Fam Zheng, Gerd Hoffmann, qemu-trivial

Hi Alex,

On 2/4/19 11:19 AM, Daniel P. Berrangé wrote:
> On Mon, Feb 04, 2019 at 09:25:43AM +0100, Thomas Huth wrote:
>> Patchew currently reports failures with the mingw docker test - this
>> is due to --with-sdlabi=2.0 configure flag which does not exist anymore.
>> Remove this remainder from the docker test and the docs now.
>>
>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>> ---
>>  docs/multiseat.txt      | 2 +-
>>  tests/docker/test-mingw | 3 +--
>>  2 files changed, 2 insertions(+), 3 deletions(-)
> 
> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

IMHO this patch can probably get directly applied as a build-fix, rather
than going thru qemu-trivial. Alex is that OK with you?

Regards,

Phil.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0
  2019-02-04  8:25 [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0 Thomas Huth
  2019-02-04 10:19 ` Daniel P. Berrangé
@ 2019-02-04 13:07 ` Alex Bennée
  2019-02-04 16:01   ` Peter Maydell
  1 sibling, 1 reply; 5+ messages in thread
From: Alex Bennée @ 2019-02-04 13:07 UTC (permalink / raw)
  To: Thomas Huth
  Cc: qemu-devel, Fam Zheng, Gerd Hoffmann, qemu-trivial,
	Philippe Mathieu-Daudé, Daniel P. Berrangé


Thomas Huth <thuth@redhat.com> writes:

> Patchew currently reports failures with the mingw docker test - this
> is due to --with-sdlabi=2.0 configure flag which does not exist anymore.
> Remove this remainder from the docker test and the docs now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>

Acked-by: Alex Bennée <alex.bennee@linaro.org>

I'm happy for this to be applied directly by Peter.

> ---
>  docs/multiseat.txt      | 2 +-
>  tests/docker/test-mingw | 3 +--
>  2 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/docs/multiseat.txt b/docs/multiseat.txt
> index 8dde36c..11850c9 100644
> --- a/docs/multiseat.txt
> +++ b/docs/multiseat.txt
> @@ -9,7 +9,7 @@ First you must compile qemu with a user interface supporting
>  multihead/multiseat and input event routing.  Right now this
>  list includes sdl2, gtk (both 2+3) and vnc:
>
> -  ./configure --enable-sdl --with-sdlabi=2.0
> +  ./configure --enable-sdl
>
>  or
>
> diff --git a/tests/docker/test-mingw b/tests/docker/test-mingw
> index b078f22..4b84cfe 100755
> --- a/tests/docker/test-mingw
> +++ b/tests/docker/test-mingw
> @@ -27,8 +27,7 @@ for prefix in x86_64-w64-mingw32- i686-w64-mingw32-; do
>          --enable-curl \
>          --enable-vnc \
>          --enable-bzip2 \
> -        --enable-guest-agent \
> -        --with-sdlabi=2.0
> +        --enable-guest-agent
>      install_qemu
>      make clean


--
Alex Bennée

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0
  2019-02-04 13:07 ` Alex Bennée
@ 2019-02-04 16:01   ` Peter Maydell
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2019-02-04 16:01 UTC (permalink / raw)
  To: Alex Bennée
  Cc: Thomas Huth, Fam Zheng, QEMU Trivial, QEMU Developers,
	Gerd Hoffmann, Philippe Mathieu-Daudé

On Mon, 4 Feb 2019 at 13:35, Alex Bennée <alex.bennee@linaro.org> wrote:
>
>
> Thomas Huth <thuth@redhat.com> writes:
>
> > Patchew currently reports failures with the mingw docker test - this
> > is due to --with-sdlabi=2.0 configure flag which does not exist anymore.
> > Remove this remainder from the docker test and the docs now.
> >
> > Signed-off-by: Thomas Huth <thuth@redhat.com>
>
> Acked-by: Alex Bennée <alex.bennee@linaro.org>
>
> I'm happy for this to be applied directly by Peter.

Applied to master as a buildfix, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-02-04 16:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-04  8:25 [Qemu-devel] [PATCH] tests/docker/test-mingw and docs: Remove --with-sdlabi=2.0 Thomas Huth
2019-02-04 10:19 ` Daniel P. Berrangé
2019-02-04 11:39   ` Philippe Mathieu-Daudé
2019-02-04 13:07 ` Alex Bennée
2019-02-04 16:01   ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).