Re: [libvirt] [PATCH 06/10] Qemu Monitor API entry point.

2010-04-28 Thread Daniel P. Berrange
On Tue, Apr 27, 2010 at 05:36:40PM -0400, Chris Lalancette wrote: On 04/27/2010 04:25 PM, Daniel P. Berrange wrote: Causes the build to fail when linking virsh: CCLD virsh ../src/.libs/libvirt-qemu.so: undefined reference to `qemuMonitorCommand' collect2: ld returned 1 exit status

Re: [libvirt] [PATCH 06/10] Qemu Monitor API entry point.

2010-04-27 Thread Chris Lalancette
On 04/22/2010 08:27 AM, Daniel P. Berrange wrote: --- a/src/Makefile.am +++ b/src/Makefile.am @@ -32,7 +32,7 @@ if WITH_NETWORK UUID=$(shell uuidgen 2/dev/null) endif -lib_LTLIBRARIES = libvirt.la +lib_LTLIBRARIES = libvirt.la libvirt-qemu.la moddir = $(libdir)/libvirt/drivers

Re: [libvirt] [PATCH 06/10] Qemu Monitor API entry point.

2010-04-27 Thread Daniel P. Berrange
On Tue, Apr 27, 2010 at 04:16:15PM -0400, Chris Lalancette wrote: On 04/22/2010 08:27 AM, Daniel P. Berrange wrote: --- a/src/Makefile.am +++ b/src/Makefile.am @@ -32,7 +32,7 @@ if WITH_NETWORK UUID=$(shell uuidgen 2/dev/null) endif -lib_LTLIBRARIES = libvirt.la

Re: [libvirt] [PATCH 06/10] Qemu Monitor API entry point.

2010-04-27 Thread Chris Lalancette
On 04/27/2010 04:25 PM, Daniel P. Berrange wrote: Causes the build to fail when linking virsh: CCLD virsh ../src/.libs/libvirt-qemu.so: undefined reference to `qemuMonitorCommand' collect2: ld returned 1 exit status Indeed, if I nm src/.libs/libvirt-qemu.so: [clala...@localhost

Re: [libvirt] [PATCH 06/10] Qemu Monitor API entry point.

2010-04-22 Thread Daniel P. Berrange
On Wed, Apr 21, 2010 at 12:01:20PM -0400, Chris Lalancette wrote: Add the library entry point for the new virDomainQemuMonitorCommand() entry point. Because this is not part of the normal libvirt API, it gets it's own header file, library file, and will eventually get it's own over-the-wire

Re: [libvirt] [PATCH 06/10] Qemu Monitor API entry point.

2010-04-21 Thread Eric Blake
On 04/21/2010 10:01 AM, Chris Lalancette wrote: Add the library entry point for the new virDomainQemuMonitorCommand() entry point. Because this is not part of the normal libvirt API, it gets it's own header file, library file, and will eventually get it's own over-the-wire protocol later in