From f873796e205548370d8ea2fb107af2800b9f90fe Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Fri, 26 Jan 2007 11:12:56 +0000 Subject: [PATCH] * autogen.sh: applied patch from Richard W.M. Jones to not output instructions if configure failed Daniel --- ChangeLog | 5 +++++ NEWS | 7 +++++++ autogen.sh | 8 ++++---- docs/news.html | 2 +- include/libvirt/libvirt.h | 18 ++++++++++++++++++ 5 files changed, 35 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1eaf897d72..1ebb6c755a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jan 26 12:09:49 CET 2007 Daniel Veillard + + * autogen.sh: applied patch from Richard W.M. Jones to not + output instructions if configure failed + Mon Jan 23 14:36:18 IST 2007 Mark McLoughlin * include/libvirt/libvirt.h.in: add VIR_UUID_BUFLEN and diff --git a/NEWS b/NEWS index 00cff07119..fd6bb7ddff 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,13 @@ http://libvirt.org/news.html Releases +0.1.11: Jan 22 2007: + - Finish XML <-> XM config files support + - Remove memory leak when freeing virConf objects + - Finishing inactive domain support (Daniel Berrange) + - Added a Relax-NG schemas to check XML instances + + 0.1.10: Dec 20 2006: - more localizations - bug fixes: VCPU info breakages on xen 3.0.3, xenDaemonListDomains buffer overflow (Daniel Berrange), reference count bug when creating Xen domains (Daniel Berrange). diff --git a/autogen.sh b/autogen.sh index d677a1a2a7..798eff7137 100755 --- a/autogen.sh +++ b/autogen.sh @@ -68,7 +68,7 @@ if test x$OBJ_DIR != x; then cd "$OBJ_DIR" fi -$srcdir/configure "$@" - -echo -echo "Now type 'make' to compile libvirt." +$srcdir/configure "$@" && { + echo + echo "Now type 'make' to compile libvirt." +} diff --git a/docs/news.html b/docs/news.html index f4fb2c8e3c..6bae0d233d 100644 --- a/docs/news.html +++ b/docs/news.html @@ -2,7 +2,7 @@ Releases

Releases

Here is the list of official releases, however since it is early on in the development of libvirt, it is preferable when possible to just use the CVS version or snapshot, contact the mailing list -and check the ChangeLog to gauge progresses.

0.1.11: Jan 22 2007

  • Finish XML XM config files support
  • +and check the ChangeLog to gauge progresses.

    0.1.11: Jan 22 2007

    • Finish XML <-> XM config files support
    • Remove memory leak when freeing virConf objects
    • Finishing inactive domain support (Daniel Berrange)
    • Added a Relax-NG schemas to check XML instances
    • diff --git a/include/libvirt/libvirt.h b/include/libvirt/libvirt.h index e0b1c87427..4af946bf51 100644 --- a/include/libvirt/libvirt.h +++ b/include/libvirt/libvirt.h @@ -187,6 +187,24 @@ struct _virNodeInfo { typedef virNodeInfo *virNodeInfoPtr; +/** + * VIR_UUID_STRING_BUFLEN: + * + * This macro provides the length of the buffer required + * for virDomainGetUUID() + */ + +#define VIR_UUID_BUFLEN (16) + +/** + * VIR_UUID_STRING_BUFLEN: + * + * This macro provides the length of the buffer required + * for virDomainGetUUIDString() + */ + +#define VIR_UUID_STRING_BUFLEN (36+1) + /* library versionning */ /**