Hi Daniel, When I tried to build using the snapshot tarball, there were compilation failures because src/build.h was missing. Here's the obvious patch, against what's in CVS: 2006-03-24 Jim Meyering <jim@xxxxxxxxxxxx> * src/Makefile.am (libvirt_la_SOURCES): Add driver.h. Index: src/Makefile.am =================================================================== RCS file: /data/cvs/libvirt/src/Makefile.am,v retrieving revision 1.22 diff -u -p -r1.22 Makefile.am --- src/Makefile.am 24 Mar 2006 13:03:30 -0000 1.22 +++ src/Makefile.am 24 Mar 2006 22:12:50 -0000 @@ -12,6 +12,7 @@ libvirt_la_LIBADD = @LIBXML_LIBS@ libvirt_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libvirt_sym.version \ -version-info @LIBVIRT_VERSION_INFO@ libvirt_la_SOURCES = \ + driver.h \ libvirt.c internal.h \ hash.c hash.h \ xml.c xml.h \