Avoid link failure when configured --with-driver-modules

* qemud/Makefile.am (WITH_DRIVER_MODULES): Link with libvirt_driver.la
and libvirt_util.la.  Indent for readability.
This commit is contained in:
Jim Meyering 2009-02-17 10:34:30 +00:00
parent 64b72210ad
commit 81ba67b2b6
2 changed files with 28 additions and 19 deletions

View File

@ -1,3 +1,9 @@
Tue Feb 17 11:32:01 +0100 2009 Jim Meyering <meyering@redhat.com>
Avoid link failure when configured --with-driver-modules
* qemud/Makefile.am (WITH_DRIVER_MODULES): Link with libvirt_driver.la
and libvirt_util.la. Indent for readability.
Tue Feb 17 11:30:23 +0100 2009 Maximilian Wilhelm <max@rfc2324.org>
Work around 'virGetVersion' build problem

View File

@ -104,7 +104,10 @@ libvirtd_LDADD = \
$(SASL_LIBS) \
$(POLKIT_LIBS)
if ! WITH_DRIVER_MODULES
if WITH_DRIVER_MODULES
libvirtd_LDADD += ../src/libvirt_driver.la
libvirtd_LDADD += ../src/libvirt_util.la
else
if WITH_QEMU
libvirtd_LDADD += ../src/libvirt_driver_qemu.la
endif