Re: [Spice-devel] [Announce] spice-gtk 0.6

2011-05-24 Thread wangfeng wangfeng
Hi, When I run *./configure --host=i686-pc-mingw32 --prefix=/usr/i686-pc-mingw32/sys-root/mingw --without-python **--with-audio=no * * --with-sasl* ,it needs some .dll files and some .exe files. Then I installed spicy from http://elmarco.fedorapeople.org/spicy-for-windows.exe in windows7 , and

[Spice-devel] [PATCH] server/smartcard: fix use after free

2011-05-24 Thread Alon Levy
--- server/smartcard.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/smartcard.c b/server/smartcard.c index fed88a5..888b23a 100644 --- a/server/smartcard.c +++ b/server/smartcard.c @@ -344,10 +344,10 @@ static void smartcard_channel_send_item(RedChannel

Re: [Spice-devel] Fwd: Streaming video command line

2011-05-24 Thread Andrea Celestino
Hi, -Can tou tell me the difference between a Drawable and a RedDrawable? -What is a QRegion? -RedWorker struct has a member called SpiceRect bbox. What is it? The same for SpiceCopy copy. Thanks very much for your support. 2011/5/11 Alon Levy al...@redhat.com On Wed, May 11, 2011 at

[Spice-devel] [PATCH 1/2] client/windows: remove slash from x64 build dir

2011-05-24 Thread Arnon Gilboa
otherwise x64 is built in root if REDC_BUILD_DIR is not defined --- client/windows/redc.vcproj |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/windows/redc.vcproj b/client/windows/redc.vcproj index 38bcb36..519c96e 100644 --- a/client/windows/redc.vcproj +++

Re: [Spice-devel] [PATCH 1/2] client/windows: remove slash from x64 build dir

2011-05-24 Thread Uri Lublin
On 05/24/2011 04:35 PM, Arnon Gilboa wrote: otherwise x64 is built in root if REDC_BUILD_DIR is not defined --- client/windows/redc.vcproj |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/windows/redc.vcproj b/client/windows/redc.vcproj index

[Spice-devel] [[PATCH] spice-gtk: ] Minor clean-up

2011-05-24 Thread Zeeshan Ali (Khattak)
Prefer 'if/else' over 'switch' when dealing with only 2 possibilities. --- gtk/spicy.c |8 ++-- 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/gtk/spicy.c b/gtk/spicy.c index 82d8de2..0120692 100644 --- a/gtk/spicy.c +++ b/gtk/spicy.c @@ -239,18 +239,14 @@ static int

[Spice-devel] [PATCH spice-gtk] Get rid of redundant argument

2011-05-24 Thread Zeeshan Ali (Khattak)
--- gtk/spicy.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk/spicy.c b/gtk/spicy.c index 262d465..bfa8189 100644 --- a/gtk/spicy.c +++ b/gtk/spicy.c @@ -184,7 +184,7 @@ static void recent_item_activated_dialog_cb(GtkRecentChooser *chooser, gpointer } #endif

[Spice-devel] [PATCH spice-gtk 1/2] Rename a function

2011-05-24 Thread Zeeshan Ali (Khattak)
This should be squashed into commit 27df918. --- gtk/spicy.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/spicy.c b/gtk/spicy.c index cc30d54..7b51216 100644 --- a/gtk/spicy.c +++ b/gtk/spicy.c @@ -152,7 +152,7 @@ static struct { }; #ifndef WIN32 -static

[Spice-devel] [PATCH spice-gtk 2/2] Connect on recent connection item activation

2011-05-24 Thread Zeeshan Ali (Khattak)
Now (commit 27df918) that we already gather connection information when user (single)-clicks a recent connection item, we can safely use the selected recent connection when user activates (double-clicks) it. --- gtk/spicy.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff