Hi, /me wants getting the spice support merging started, here is the first batch of patches. It brings just the very basic bits:
* Detect spice in configure, Makefile windup. * Support for keyboard, mouse and tablet. * Support for simple display output (works as DisplayChangeListener, plays with any gfx card, sends simple draw commands to update dirty regions). Note that this patch series does *not* yet contain the qxl paravirtual gfx card. That will come as part of a additional patch series after sorting the vgabios support. The patches are also available in the git repository at: git://anongit.freedesktop.org/spice/qemu submit.2 cheers, Gerd Gerd Hoffmann (9): add pflib: PixelFormat conversion library. configure: add logging add spice into the configure file configure: require spice 0.5.3 spice: core bits spice: add keyboard spice: add mouse spice: simple display spice: add tablet support Makefile.objs | 3 + configure | 42 ++++++- pflib.c | 213 ++++++++++++++++++++++++++++++ pflib.h | 20 +++ qemu-config.c | 23 ++++ qemu-config.h | 1 + qemu-options.hx | 8 + qemu-spice.h | 24 ++++ spice-display.c | 387 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ spice-display.h | 52 ++++++++ spice-input.c | 173 +++++++++++++++++++++++++ spice.c | 153 ++++++++++++++++++++++ vl.c | 22 +++- 13 files changed, 1118 insertions(+), 3 deletions(-) create mode 100644 pflib.c create mode 100644 pflib.h create mode 100644 qemu-spice.h create mode 100644 spice-display.c create mode 100644 spice-display.h create mode 100644 spice-input.c create mode 100644 spice.c