Re: [Spice-devel] [PATCH] Don't build libspice-client-gtk if configured --without-gtk

2015-02-04 Thread Benjamin Gilbert
On 02/04/2015 06:53 AM, Marc-André Lureau wrote: +++ b/configure.ac @@ -175,6 +175,9 @@ case "$with_gtk" in GTK_REQUIRED=2.91.3 SPICE_GTK_API_VERSION=3.0 ;; + no) + AS_IF([test x$enable_gtk_doc = xyes], + [AC_MSG_ERROR([Without GTK+, gtk-doc must be d

Re: [Spice-devel] windows guest file transfer -- am I using the correct howto?

2015-02-04 Thread John Griessen
On 02/04/2015 11:14 AM, Marc-André Lureau wrote: "It’s currently not possible to configure folder sharing with virt-manager." >w Actually, this is no longer true. You can add a webdav channel now: https://elmarco.fedorapeople.org/Screenshot%20from%202015-02-04%2017:59:31.png I do not see tha

Re: [Spice-devel] windows guest file transfer -- am I using the correct howto?

2015-02-04 Thread John Griessen
On 02/04/2015 11:14 AM, Marc-André Lureau wrote: Hi - Original Message - On 02/04/2015 10:07 AM, John Griessen wrote: So, next I will test if webdav is enabling file transfers. Still cannot get the webdav installer to completion: Windows 7 error message: Service 'Spice webdav proxy'

Re: [Spice-devel] windows guest file transfer -- am I using the correct howto?

2015-02-04 Thread Marc-André Lureau
Hi - Original Message - > On 02/04/2015 10:07 AM, John Griessen wrote: > > So, next I will test if webdav is enabling file transfers. > > Still cannot get the webdav installer to completion: > Windows 7 error message: > Service 'Spice webdav proxy' (spice-webdavd) failed to start. > Verif

Re: [Spice-devel] windows guest file transfer -- am I using the correct howto?

2015-02-04 Thread John Griessen
On 02/04/2015 10:07 AM, John Griessen wrote: So, next I will test if webdav is enabling file transfers. Still cannot get the webdav installer to completion: Windows 7 error message: Service 'Spice webdav proxy' (spice-webdavd) failed to start. Verify that you have sufficient privileges. I doub

Re: [Spice-devel] windows guest file transfer

2015-02-04 Thread John Griessen
On 02/03/2015 05:38 PM, Marc-André Lureau wrote: root@toolbench64:/etc/libvirt/qemu# virsh start win7 error: Failed to start domain win7 error: internal error: process exited while connecting to monitor: 2015-02-03T21:51:19.176492Z qemu-system-x86_64: -device virtserialport,bus=virtio-serial0.0,

Re: [Spice-devel] [PATCH] audio: use GstVolume to have volume control.

2015-02-04 Thread Marc-André Lureau
Hi nack to the patch: - Original Message - > I would like to know if the following patch is acceptable or should I try to > have a > patch in directsoundsrc using the mixer api is a better approach. As long as the mixer API is to control the application stream volume, this is the right

Re: [Spice-devel] [PATCH] audio: use GstVolume to have volume control.

2015-02-04 Thread Victor Toso
Hi, This is about volume control with spice-gtk using gstreamer-1.0. In windows client with gstreamer-1.0 it is possible to change the volume of the playback audio but not of the record audio as directsoundsrc doesn't implement volume control. IDirectSoundCapture interface doesn't have volume co

[Spice-devel] [PATCH] audio: use GstVolume to have volume control.

2015-02-04 Thread Victor Toso
Using GstVolume in the pipeline to have volume control instead of changing sink and src elements directly. --- gtk/spice-gstaudio.c | 119 +++ 1 file changed, 53 insertions(+), 66 deletions(-) diff --git a/gtk/spice-gstaudio.c b/gtk/spice-gstaudio.c

Re: [Spice-devel] [PATCH] Don't build libspice-client-gtk if configured --without-gtk

2015-02-04 Thread Marc-André Lureau
Hi Documentation fails to build, I think it should be disabled if --without-gtk: +++ b/configure.ac @@ -175,6 +175,9 @@ case "$with_gtk" in GTK_REQUIRED=2.91.3 SPICE_GTK_API_VERSION=3.0 ;; + no) + AS_IF([test x$enable_gtk_doc = xyes], + [AC_MSG_ERROR([Wi

[Spice-devel] [PATCH] Don't build libspice-client-gtk if configured --without-gtk

2015-02-04 Thread Benjamin Gilbert
libspice-client-glib is useful as a client library on platforms that don't support GTK. --- Makefile.am | 5 - configure.ac | 14 -- gtk/Makefile.am | 14 -- vapi/Makefile.am | 7 +-- 4 files changed, 29 insertions(+), 11 deletions(-) diff --git a/Makef