search for: guestfs___db_dump_callback

Displaying 3 results from an estimated 3 matches for "guestfs___db_dump_callback".

2013 Mar 23
2
failed to compile 1.18.11 on fedora18
On Sat, Mar 23, 2013 at 09:53:16PM +0800, javaon wrote: > hi richard, > > I'm trying compiling libguestfs 1.18.11 on fedora 18. But I had the following error during make: > > dbdump.c:56:25: error: unknown type name 'guestfs___db_dump_callback' [..] > Do you know what I can do to fix it? Thanks! Install 'hivex-devel' and re-run ./configure. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-top is 'top' for virtual machines. Tiny program with many powerful monitoring fe...
2012 Oct 18
10
[PATCH 0/10] Add a mini-library for running external commands.
Inspired by libvirt's virCommand* internal mini-library, this adds some internal APIs for running commands. The first patch contains the new APIs. The subsequent patches change various parts of the library over to use it. Rich.
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.