On 05/15/10 11:49, Ruslan Mahmatkhanov wrote:
>
> My system is 8-STABLE i386 (after successful png/xorg/gnome update). PNG
> version is png-1.4.1_1. Library installed is libpng.so.6. Does anybody
> have a clue why it tries to pick up old library?

It's likely something else that it's trying to link in which is still
linked to the old png lib. Try this:

for file in /usr/local/lib/*; do
        nf=`ldd $file 2>/dev/null | grep 'not found'`
        if [ -n "$nf" ]; then
                echo $file
                echo $nf
                echo ''
        fi
done > ~/old-lib-list


hth,

Doug

-- 

        ... and that's just a little bit of history repeating.
                        -- Propellerheads

        Improve the effectiveness of your Internet presence with
        a domain name makeover!    http://SupersetSolutions.com/

_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to