[Qemu-devel] [PULL 0/7] ui patch queue

Gerd Hoffmann posted 7 patches 8 years, 5 months ago
Only 2 patches received!
There is a newer version of this series
configure                  | 36 ++++++++++++++++++----------
include/ui/spice-display.h |  2 ++
ui/spice-core.c            |  1 +
ui/spice-display.c         |  3 ++-
ui/spice-input.c           |  2 +-
ui/cocoa.m                 | 60 ++++++++++++++++++++++++++++++++++++----------
6 files changed, 78 insertions(+), 26 deletions(-)
[Qemu-devel] [PULL 0/7] ui patch queue
Posted by Gerd Hoffmann 8 years, 5 months ago
  Hi,

Here is the ui patch queue.  Switches the default
to gtk3 and sdl2 and fixes some bugs.

please pull,
  Gerd

The following changes since commit a0d4aac7467dd02e5657b79e867f067330266a24:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20170605' into staging (2017-06-05 18:03:43 +0100)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/pull-ui-20170608-1

for you to fetch changes up to 468949958fdfa4347a66e3cf5c8240a428532602:

  spice: don't enter opengl mode in case another UI provides opengl support (2017-06-08 08:13:46 +0200)

----------------------------------------------------------------
ui: prefer gtk3 and sdl2, various fixes.

----------------------------------------------------------------
Gerd Hoffmann (5):
      gtk: prefer gtk3 over gtk2
      sdl: prefer sdl2 over sdl1
      gtk: add deprecation warning for gtk2
      sdl: add deprecation warning for sdl1
      spice: don't enter opengl mode in case another UI provides opengl support

Ian McKellar via Qemu-devel (1):
      Improve Cocoa modifier key handling

Jonathon Jongsma (1):
      spice: Use proper enum type for kbd led state

 configure                  | 36 ++++++++++++++++++----------
 include/ui/spice-display.h |  2 ++
 ui/spice-core.c            |  1 +
 ui/spice-display.c         |  3 ++-
 ui/spice-input.c           |  2 +-
 ui/cocoa.m                 | 60 ++++++++++++++++++++++++++++++++++++----------
 6 files changed, 78 insertions(+), 26 deletions(-)

Re: [Qemu-devel] [PULL 0/7] ui patch queue
Posted by Peter Maydell 8 years, 4 months ago
On 8 June 2017 at 08:07, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   Hi,
>
> Here is the ui patch queue.  Switches the default
> to gtk3 and sdl2 and fixes some bugs.
>
> please pull,
>   Gerd
>
> The following changes since commit a0d4aac7467dd02e5657b79e867f067330266a24:
>
>   Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20170605' into staging (2017-06-05 18:03:43 +0100)
>
> are available in the git repository at:
>
>   git://git.kraxel.org/qemu tags/pull-ui-20170608-1
>
> for you to fetch changes up to 468949958fdfa4347a66e3cf5c8240a428532602:
>
>   spice: don't enter opengl mode in case another UI provides opengl support (2017-06-08 08:13:46 +0200)
>
> ----------------------------------------------------------------
> ui: prefer gtk3 and sdl2, various fixes.
>
> ----------------------------------------------------------------

This causes configure to barf warnings in my build logs on half
my build machines:

WARNING: Support for gtk2 will be dropped in future releases.
WARNING: Please consider using gtk3 instead.

I don't think it is yet possible to drop gtk2.

thanks
-- PMM

Re: [Qemu-devel] [PULL 0/7] ui patch queue
Posted by Peter Maydell 8 years, 4 months ago
On 12 June 2017 at 19:00, Peter Maydell <peter.maydell@linaro.org> wrote:
> This causes configure to barf warnings in my build logs on half
> my build machines:
>
> WARNING: Support for gtk2 will be dropped in future releases.
> WARNING: Please consider using gtk3 instead.
>
> I don't think it is yet possible to drop gtk2.

Oh, one of them was the warning about SDL1.2.

thanks
-- PMM

Re: [Qemu-devel] [PULL 0/7] ui patch queue
Posted by Thomas Huth 8 years, 4 months ago
On 12.06.2017 20:08, Peter Maydell wrote:
> On 12 June 2017 at 19:00, Peter Maydell <peter.maydell@linaro.org> wrote:
>> This causes configure to barf warnings in my build logs on half
>> my build machines:
>>
>> WARNING: Support for gtk2 will be dropped in future releases.
>> WARNING: Please consider using gtk3 instead.
>>
>> I don't think it is yet possible to drop gtk2.
> 
> Oh, one of them was the warning about SDL1.2.

Adding the warning does not necessarily mean that we've really got to
drop support for these in the very near future, but it's a good start to
remind people that support for the old versions won't be around forever
;-) And AFAIK the old versions of these libraries are not maintained by
the upstream projects anymore, too, so at one point in time, we've
really got to deprecate support for these in QEMU, too.

So would it at least be feasible to install SDL 2 on that build
machines? (IMHO installing SDL 2 from sources is not too much of a pain,
e.g. it does not require lots of other additional libraries around)

 Thomas