[Spice-commits] 3 commits - configure.ac NEWS server/Makefile.am server/spice.h server/spice-server.syms

Alon Levy alon at kemper.freedesktop.org
Sat Sep 15 08:57:46 PDT 2012


 NEWS                     |   12 ++++++++++++
 configure.ac             |    4 ++--
 server/Makefile.am       |    2 +-
 server/spice-server.syms |    3 +++
 server/spice.h           |    2 +-
 5 files changed, 19 insertions(+), 4 deletions(-)

New commits:
commit dc3cd205dda4d76f4afecd64d4d5abde81545e6d
Author: Alon Levy <alevy at redhat.com>
Date:   Sat Sep 15 00:36:54 2012 +0300

    Release 0.12.0

diff --git a/NEWS b/NEWS
index cd06e04..beb283b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+Major changes in 0.12.0:
+========================
+* Stable Release
+* support setting client monitor configuration via device
+ QXLInterface::client_monitors_config
+* support notifying guest of client capabilities
+ QXLInterface::set_client_capabilities
+* new capability for A8 Surface support
+* Enable build on armv6+
+* Option to quit server after first client disconnects
+ spice_server_set_exit_on_disconnect
+
 Major changes in 0.11.3:
 ========================
 * !Development Release!
diff --git a/configure.ac b/configure.ac
index 0545af6..047191d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,8 +11,8 @@ AC_PREREQ([2.57])
 #  http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
 
 m4_define([SPICE_MAJOR], 0)
-m4_define([SPICE_MINOR], 11)
-m4_define([SPICE_MICRO], 5)
+m4_define([SPICE_MINOR], 12)
+m4_define([SPICE_MICRO], 0)
 m4_define([SPICE_CURRENT], [6])
 m4_define([SPICE_REVISION], [0])
 m4_define([SPICE_AGE], [5])
diff --git a/server/spice.h b/server/spice.h
index fc10303..c1478e0 100644
--- a/server/spice.h
+++ b/server/spice.h
@@ -23,7 +23,7 @@
 #include <spice/qxl_dev.h>
 #include <spice/vd_agent.h>
 
-#define SPICE_SERVER_VERSION 0x000b05 /* release 0.11.5 */
+#define SPICE_SERVER_VERSION 0x000c00 /* release 0.12.0 */
 
 /* interface base type */
 
commit 124984a171bddf0f2e2b727e31f43d19a68122f3
Author: Alon Levy <alevy at redhat.com>
Date:   Thu Sep 13 16:40:28 2012 +0300

    server/spice-server.syms: add missing global labels
    
    Although global is the default, this makes the file more consistent.

diff --git a/server/spice-server.syms b/server/spice-server.syms
index fd2a423..eadfed8 100644
--- a/server/spice-server.syms
+++ b/server/spice-server.syms
@@ -110,10 +110,12 @@ global:
 } SPICE_SERVER_0.10.1;
 
 SPICE_SERVER_0.10.3 {
+global:
     spice_server_is_server_mouse;
 } SPICE_SERVER_0.10.2;
 
 SPICE_SERVER_0.10.4 {
+global:
     spice_qxl_monitors_config_async;
 } SPICE_SERVER_0.10.3;
 
@@ -125,5 +127,6 @@ global:
 } SPICE_SERVER_0.10.4;
 
 SPICE_SERVER_0.11.4 {
+global:
     spice_server_set_exit_on_disconnect;
 } SPICE_SERVER_0.11.2;
commit c48812ee5177aaae5f1f46a26736c2812d95552a
Author: Alon Levy <alevy at redhat.com>
Date:   Thu Sep 13 16:38:56 2012 +0300

    server/Makefile.am: fix for make distcheck
    
    Doesn't make sense to distribute test_spice_version.sh, so just
    ensure the build passes if it doesn't exist.

diff --git a/server/Makefile.am b/server/Makefile.am
index 18a9d8a..b62d98c 100644
--- a/server/Makefile.am
+++ b/server/Makefile.am
@@ -129,4 +129,4 @@ EXTRA_DIST =					\
 BUILT_SOURCES = $(spice_built_sources)
 
 dist-hook:
-	if ! ./tests/test_spice_version.sh ; then exit 1; fi
+	if [ -e ./tests/test_spice_version.sh -a ! ./tests/test_spice_version.sh ] ; then exit 1; fi


More information about the Spice-commits mailing list