[Spice-commits] Branch '0.8' - 2 commits - NEWS configure.ac server/spice.h server/tests

Hans de Goede jwrdegoede at kemper.freedesktop.org
Fri Dec 17 05:22:30 PST 2010


 NEWS                     |    7 +++++++
 configure.ac             |    2 +-
 server/spice.h           |    2 +-
 server/tests/Makefile.am |    4 ++--
 4 files changed, 11 insertions(+), 4 deletions(-)

New commits:
commit 998218be176b1780fff3f6f54b398c67b19b782f
Author: Hans de Goede <hdegoede at redhat.com>
Date:   Fri Dec 17 14:18:14 2010 +0100

    Release 0.7.1

diff --git a/NEWS b/NEWS
index 5cbc0ca..1a6c242 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+Major changes in 0.7.1:
+=======================
+* Brown paper bag release
+* Update SPICE_SERVER_VERSION
+* Include server/tests/test_util.h in the make dist generated tarbals, so
+  that they actually compile
+
 Major changes in 0.7.0:
 =======================
 * Many small bugfixes to the spice client
diff --git a/configure.ac b/configure.ac
index a1deae6..a9e9d2d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ([2.57])
 
 m4_define([SPICE_MAJOR], 0)
 m4_define([SPICE_MINOR], 7)
-m4_define([SPICE_MICRO], 0)
+m4_define([SPICE_MICRO], 1)
 
 AC_INIT(spice, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice)
 
diff --git a/server/spice.h b/server/spice.h
index 68162cc..6fb22a4 100644
--- a/server/spice.h
+++ b/server/spice.h
@@ -21,7 +21,7 @@
 #include <stdint.h>
 #include <sys/socket.h>
 
-#define SPICE_SERVER_VERSION 0x000700 /* release 0.7.0 */
+#define SPICE_SERVER_VERSION 0x000701 /* release 0.7.1 */
 
 /* interface base type */
 
commit abbc024b09f5d6ceacf034d03d83dcd78d5af151
Author: Hans de Goede <hdegoede at redhat.com>
Date:   Fri Dec 17 14:14:45 2010 +0100

    Makefiles: fix server/tests/test_util.h not being included in make dist

diff --git a/server/tests/Makefile.am b/server/tests/Makefile.am
index f91dfa4..11cc5f2 100644
--- a/server/tests/Makefile.am
+++ b/server/tests/Makefile.am
@@ -11,11 +11,11 @@ LDFLAGS = -L../.libs -lspice-server
 
 noinst_PROGRAMS = test_just_sockets_no_ssl test_empty_success test_fail_on_null_core_interface test_display_no_ssl
 
-test_display_no_ssl_SOURCES = test_display_no_ssl.c basic_event_loop.c
+test_display_no_ssl_SOURCES = test_display_no_ssl.c basic_event_loop.c basic_event_loop.h test_util.h
 
 test_display_no_ssl_LDFLAGS = $(LDFLAGS)
 
-test_just_sockets_no_ssl_SOURCES = test_just_sockets_no_ssl.c basic_event_loop.c basic_event_loop.h
+test_just_sockets_no_ssl_SOURCES = test_just_sockets_no_ssl.c basic_event_loop.c basic_event_loop.h test_util.h
 
 test_just_sockets_no_ssl_LDFLAGS = $(LDFLAGS)
 


More information about the Spice-commits mailing list