diff options
author | Hans de Goede <hdegoede@redhat.com> | 2011-04-19 13:06:58 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2011-04-19 16:26:17 +0200 |
commit | 0fca86d2dd18e41630ebbca444a696de458a69bd (patch) | |
tree | e15232bb8fa45074b4db49c937827572ab307c6f | |
parent | 4564cbb59dd1d187e55af0f98d0086dad1cf72c6 (diff) |
Prepare for a 0.8.0 releasespice-vdagent-0.8.0
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 12 insertions, 2 deletions
@@ -1,3 +1,13 @@ +spice-agent-0.8.0 +----------------- +* Add support for copy and paste using the primary selection, to use this + you need a spice-gtk widget based client and the latest spice-gtk code + (Marc-André Lureau and Hans de Goede) +* Autotoolized (Christophe Fergeau) +* Allow building without consolekit, for systems which don't have ck, such + as RHEL-5 (Christophe Fergeau) +* Various small bugfixes (Hans de Goede) + spice-agent-0.6.3 ----------------- * Initial release, starting with version nr 0.6.3, to indicate that it diff --git a/configure.ac b/configure.ac index 0282ee2..1c3fb1a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.65) -AC_INIT([vd-agent], [0.6.3]) +AC_INIT([spice-vdagent], [0.8.0]) AC_CONFIG_SRCDIR([configure.ac]) AM_CONFIG_HEADER([src/config.h]) @@ -25,7 +25,7 @@ if test x"$enable_console_kit" = "xyes" ; then AC_DEFINE([HAVE_CONSOLE_KIT], [1], [If defined, vdagentd will be compiled with ConsoleKit support] ) fi AM_CONDITIONAL(HAVE_CONSOLE_KIT, test x"$enable_console_kit" = "xyes") -PKG_CHECK_MODULES(SPICE, [spice-protocol]) +PKG_CHECK_MODULES(SPICE, [spice-protocol >= 0.8.0]) AC_CONFIG_FILES([ Makefile |