[Spice-devel] pushed three one line patches
Alon Levy
alevy at redhat.com
Thu Jul 29 03:33:54 PDT 2010
Uri acked locally. specifically:
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)
commit a8f2925162dcb4a68214a9bcaf9a9cd4253035e4
Author: Alon Levy <alevy at redhat.com>
Date: Thu Jul 29 11:10:41 2010 +0300
add eol after #ifdef in jpeg_encoder.h for n900 scratchbox compiler
diff --git a/client/jpeg_decoder.h b/client/jpeg_decoder.h
index 5c38cfa..bd83b2e 100644
--- a/client/jpeg_decoder.h
+++ b/client/jpeg_decoder.h
@@ -88,4 +88,5 @@ private:
RGBToBGRConverter _rgb2bgr;
RGBToBGRXConverter _rgb2bgrx;
};
-#endif
\ No newline at end of file
+#endif
+
More information about the Spice-devel
mailing list