Re: kde.mk misses shared lib dependencies in /usr/lib/kde3

2005-04-26 Thread Achim Bohnet
On Wednesday 27 April 2005 03:36, Adeodato Simó wrote: > * Achim Bohnet [Wed, 27 Apr 2005 03:24:32 +0200]: > > allee(0) ~/src/knemo/0.3.1 $ ldd /usr/lib/kde3/kded_knemod.so | grep libqt > > libqt-mt.so.3 => /usr/lib/libqt-mt.so.3 (0xb6ce5000) > > Don't trust ldd for this. Use objdump: >

Re: kde.mk misses shared lib dependencies in /usr/lib/kde3

2005-04-26 Thread Adeodato Simó
* Achim Bohnet [Wed, 27 Apr 2005 03:24:32 +0200]: > allee(0) ~/src/knemo/0.3.1 $ ldd /usr/lib/kde3/kded_knemod.so | grep libqt > libqt-mt.so.3 => /usr/lib/libqt-mt.so.3 (0xb6ce5000) Don't trust ldd for this. Use objdump: $ objdump -p /file | grep NEEDEd If libqt isn't there, it n

kde.mk misses shared lib dependencies in /usr/lib/kde3

2005-04-26 Thread Achim Bohnet
Hi, I just realized that one of my pkgs suffers the same problem vorlon pointed out in debian-release, that pkgs depend on kdelibs4 but not libqt-mt. I assume this is due to the fact that the only 'binaries' are $DESTDIR/usr/lib/kde3. Would be nice if the new KDE.mk takes care of this. Does th