]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
* autogen.sh: applied patch from Richard W.M. Jones to not
authorDaniel Veillard <veillard@redhat.com>
Fri, 26 Jan 2007 11:12:56 +0000 (11:12 +0000)
committerDaniel Veillard <veillard@redhat.com>
Fri, 26 Jan 2007 11:12:56 +0000 (11:12 +0000)
  output instructions if configure failed
Daniel

ChangeLog
NEWS
autogen.sh
docs/news.html
include/libvirt/libvirt.h

index 1eaf897d72b80828197472c0ba9d4cf7caa5d832..1ebb6c755ae4d7e9691950cc76fe776b6d337c8a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jan 26 12:09:49 CET 2007 Daniel Veillard <veillard@redhat.com>
+
+       * 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 <markmc@redhat.com>
 
        * include/libvirt/libvirt.h.in: add VIR_UUID_BUFLEN and
diff --git a/NEWS b/NEWS
index 00cff071193cbf6bbeb826d7d768688f6b5d81fb..fd6bb7ddff05e114f404e1f765ee1de898b797f6 100644 (file)
--- 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).
index d677a1a2a7b19af0968b7662deeec8650e46bc6b..798eff713702c5a9c40883d4656ab20b7c7d1279 100755 (executable)
@@ -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."
+}
index f4fb2c8e3c93992ea2f3ac952382bd87426c2a12..6bae0d233d088009fc8c1c972e50ddf371fe5f3e 100644 (file)
@@ -2,7 +2,7 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="stylesheet" type="text/css" href="libvirt.css" /><link rel="SHORTCUT ICON" href="/32favicon.png" /><title>Releases</title></head><body><div id="container"><div id="intro"><div id="adjustments"></div><div id="pageHeader"></div><div id="content2"><h1 class="style1">Releases</h1><p>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 <a href="downloads.html">CVS version or snapshot</a>, contact the mailing list
-and check the <a href="ChangeLog.html">ChangeLog</a> to gauge progresses.</p><h3>0.1.11: Jan 22 2007</h3><ul><li>Finish XML  XM config files support</li>
+and check the <a href="ChangeLog.html">ChangeLog</a> to gauge progresses.</p><h3>0.1.11: Jan 22 2007</h3><ul><li>Finish XML &lt;-&gt; XM config files support</li>
   <li>Remove memory leak when freeing virConf objects</li>
   <li>Finishing inactive domain support (Daniel Berrange)</li>
   <li>Added a Relax-NG schemas to check XML instances</li>
index e0b1c87427b3dbeb08c90463c3bf8166e1f04174..4af946bf51d5ef9c13b09523c1bec151885a2ca2 100644 (file)
@@ -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 */
 
 /**