]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix mixup between LDFLAGS & LDADD vars
authorDaniel P. Berrange <berrange@redhat.com>
Mon, 8 Dec 2008 12:04:27 +0000 (12:04 +0000)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 8 Dec 2008 12:04:27 +0000 (12:04 +0000)
ChangeLog
qemud/Makefile.am

index 3a898261767406cf818df6796b4499b481a7a2d2..f9e787da5ece81901f943b1f13ef0ceba8cfebff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Dec  8 12:00:53 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
+
+       * qemud/Makefile.am: Fix mixup between _LDFLAGS & _LDADD
+       variables to make compilation work in certain configs.
+
 Mon Dec  8 11:28:53 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
 
        * src/storage_conf.c: Workaround missing ULLONG_MAX in
index a4386e0ad29589cdf7178cbf2fe2bf7672f32d54..31a41141f3bbaffd50e022b743e1a200f8ca1e33 100644 (file)
@@ -83,13 +83,16 @@ libvirtd_CFLAGS = \
        -DREMOTE_PID_FILE="\"$(REMOTE_PID_FILE)\"" \
        -DGETTEXT_PACKAGE=\"$(PACKAGE)\"
 
-libvirtd_LDFLAGS = \
-       $(WARN_CFLAGS) $(LIBXML_LIBS) $(GNUTLS_LIBS) $(SASL_LIBS) \
-       $(COVERAGE_LDFLAGS) \
-       $(POLKIT_LIBS)
+libvirtd_LDFLAGS =                                     \
+       $(WARN_CFLAGS)                                  \
+       $(COVERAGE_LDFLAGS)
 
 libvirtd_LDADD =                                       \
-               ../gnulib/lib/libgnu.la
+       $(LIBXML_LIBS)                                  \
+       $(GNUTLS_LIBS)                                  \
+       $(SASL_LIBS)                                    \
+       $(POLKIT_LIBS)                                  \
+       ../gnulib/lib/libgnu.la
 
 if ! WITH_DRIVER_MODULES
 if WITH_QEMU
@@ -129,8 +132,6 @@ libvirtd_CFLAGS += $(AVAHI_CFLAGS)
 libvirtd_LDADD += $(AVAHI_LIBS)
 endif
 
-libvirtd_DEPENDENCIES = $(libvirtd_LDADD)
-
 
 default_xml_dest = libvirt/qemu/networks/default.xml
 install-data-local: install-init install-data-sasl install-data-polkit