[Spice-commits] 2 commits - client/application.cpp configure.ac
Alon Levy
alon at kemper.freedesktop.org
Thu Jul 29 03:31:41 PDT 2010
client/application.cpp | 2 +-
configure.ac | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 01c06d6eaaab01a493567210e3b9dec333ea1e0d
Author: Alon Levy <alevy at redhat.com>
Date: Thu Jul 29 12:44:49 2010 +0300
client: Application::get_screen: fix double SpicePoint size, second hiding the first
diff --git a/client/application.cpp b/client/application.cpp
index e986475..3dafbc6 100644
--- a/client/application.cpp
+++ b/client/application.cpp
@@ -650,7 +650,7 @@ RedScreen* Application::get_screen(int id)
SpicePoint size;
if (_full_screen && mon) {
- SpicePoint size = mon->get_size();
+ size = mon->get_size();
} else {
size.x = SCREEN_INIT_WIDTH;
size.y = SCREEN_INIT_HEIGHT;
commit 1b0ab2027e1e38bddbbe8bb57bf04c3409a096a5
Author: Alon Levy <alevy at redhat.com>
Date: Thu Jul 29 11:13:08 2010 +0300
add arm and armv7 to configurable 32 bit variants in configure.ac (n900 and pc-z1 tested respectively)
diff --git a/configure.ac b/configure.ac
index 09da5a1..f27265a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -34,7 +34,7 @@ AC_SUBST(SPICE_LT_VERSION)
#
AC_MSG_CHECKING(for x86 or x86-64 platform)
case $host_cpu in
- i386|i486|i586|i686|i786|k6|k7)
+ i386|i486|i586|i686|i786|k6|k7|arm|armv7)
variant=32
;;
x86_64)
More information about the Spice-commits
mailing list