Thanks for your problem report! Here's what's happened.
On Wed, Feb 13, 2013 at 08:14:05AM -0800, [email protected] wrote: > git branch -a | grep \* > * master > > git log | head -n 1 | grep commit > commit 31f75878b6658b5c29fa681a1dc61454b35e502f `git branch` and `git rev-parse HEAD` (respectively) do essentially the same. > ldd src/amarok | egrep -i "ssl|crypto" > libssl.so.1.0.0 => /lib64/libssl.so.1.0.0 > (0x00007fcb47fe2000) > libcrypto.so.1.0.0 => /lib64/libcrypto.so.1.0.0 > (0x00007fcb47c0f000) Amarok links directly neither to libssl, nor to libcrypto. The libraries you mention are being loaded indirectly by another library Amarok is linked to (most probably libkdecore.so). Try linking kdelibs to the openssl of your choice, or using LD_LIBRARY_PATH env variable (see man ld.so). -- Edward "Hades" Toroshchin dr_lepper on irc.freenode.org _______________________________________________ Amarok-devel mailing list [email protected] https://mail.kde.org/mailman/listinfo/amarok-devel
