diff --git a/ChangeLog b/ChangeLog index 64b5a1e09f..283b7b3b19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Wed Nov 14 18:09:31 CET 2007 Daniel Veillard + + * doc/libvir.html doc/format.html: add missing docs for + on disk devices + * src/Makefile.am: fix the tst build rule for missing libraries + Wed Nov 14 17:28:31 CET 2007 Jim Meyering Handle failed strdup and malloc. diff --git a/docs/format.html b/docs/format.html index 26a4c3d9c8..e20559f47f 100644 --- a/docs/format.html +++ b/docs/format.html @@ -67,6 +67,8 @@ optional one in no specific order:

  • source with a file attribute conta the guest
  • readonly an optional empty element indicating the device is read-only
  • +
  • shareable an optional empty element indicating the device + can be used read/write with other domains

An interface element describes a network device mapped on the guest, it also has a type whose value is currently 'bridge', it also have a number of children in no specific order:

  • source: indicating the bridge name
  • diff --git a/docs/libvir.html b/docs/libvir.html index eb8848dc07..a33f518e13 100644 --- a/docs/libvir.html +++ b/docs/libvir.html @@ -753,6 +753,8 @@ optional one in no specific order:

    the guest
  • readonly an optional empty element indicating the device is read-only
  • +
  • shareable an optional empty element indicating the device + can be used read/write with other domains

An interface element describes a network device mapped on the diff --git a/src/Makefile.am b/src/Makefile.am index e26c25c083..c69f9153ed 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -78,7 +78,7 @@ virsh_CFLAGS = $(COVERAGE_CFLAGS) # target to ease building test programs # tst: tst.c - $(CC) $(CFLAGS) $(INCLUDES) -I../include -o tst tst.c .libs/libvirt.a -lxml2 -lxenstore -lpthread + $(CC) $(CFLAGS) $(INCLUDES) -I../include -o tst tst.c .libs/libvirt.a $(LIBXML_LIBS) $(VIRSH_LIBS) $(GNUTLS_LIBS) $(LIBS) COVERAGE_FILES = $(CLIENT_SOURCES:%.c=libvirt_la-%.cov)