Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Jul 2009 08:39:54 +0300
From:      Volodymyr Kostyrko <c.kworr@gmail.com>
To:        freebsd-current@freebsd.org
Subject:   Re: library compat for FreeBSD7x
Message-ID:  <h4bhfb$2cu$1@ger.gmane.org>
In-Reply-To: <200907231302.34000.subbsd@gmail.com>
References:  <200907231302.34000.subbsd@gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
subbsd wrote:
> after the bump version on FreeBSD8-Beta2, some application needs for old 
> library. But misc/compat7x ports not found for this. It still not ready? 
> thanks!

Actually compat port messes things a bit if a newly compiled binary is 
looking for new lib and it's next not-so-fresh dependency looks for the 
older one you'll get one set of symbols imported twice. libmap.conf is a 
  just a more painless solution, yet you should rebuild all binaries.

There's a good port sysutils/libchk which you can use to deal with this. 
It rummages through your bin/lib directories and reports any 
discrepancies it finds. It outputs something like:

Unresolvable link(s) found in: /usr/local/bin/lp
         libssl.so.5
         libcrypto.so.5
         libcrypt.so.4

I use this to create the list of packages I need to rebuild:

pkg_which `grep Unresolvable libchk.out | sed 's|.* in: ||'` | sort -u | 
grep -v '^\?$'

This list can be later given to something like portupgrade.

The same file can be used to automatically generate libmap.conf. However 
I havn't look at it.

-- 
Sphinx of black quartz judge my vow.




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?h4bhfb$2cu$1>