a questionable dependency chain

Christophe Fergeau cfergeau at redhat.com
Wed Jan 29 14:32:55 UTC 2014


Hey,

On Wed, Jan 29, 2014 at 09:21:22AM -0500, Matthias Clasen wrote:
> I've switched to rawhide yesterday, and discovered that vinagre now
> forces rsyslog onto my system. That's not great.
> 
> The dependency chain goes something like this:
> 
> vinagre -> spice -> libcacard -> ... glusterfs ... ->
> rsyslog-mmjsonparse -> rsyslog
> 
> I think there's at least two questionable links in this chain:
> 
> - why does libcacard need glusterfs ?

Looking at nm output for libcacard.so, I did not see symbols that were
obviously related to glusterfs there. However, at build time, libcacard
ld command line gets a lot of -lxx, including glusterfs libraries.
libcacard is a sub-package of qemu, so I suspect what's happening is
it gets linked with all the libraries qemu needs.

This patch seems to help there and get rid of the extra libraries in ldd
output (did not try an rpm build to check the deps there).

diff --git a/libcacard/Makefile b/libcacard/Makefile
index 47827a0..9fa297c 100644
--- a/libcacard/Makefile
+++ b/libcacard/Makefile
@@ -24,7 +24,7 @@ vscclient$(EXESUF): libcacard/vscclient.o libcacard.la

 libcacard.la: LDFLAGS += -rpath $(libdir) -no-undefined \
        -export-syms $(SRC_PATH)/libcacard/libcacard.syms
-libcacard.la: LIBS += $(libcacard_libs)
+libcacard.la: LIBS = $(libcacard_libs)
 libcacard.la: $(libcacard-lobj-y)
        $(call LINK,$^)


Christophe
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 181 bytes
Desc: not available
URL: <http://lists.fedoraproject.org/pipermail/devel/attachments/20140129/794534f7/attachment.sig>


More information about the devel mailing list