Date: Tue, 11 Mar 1997 07:12:29 +0100 From: Ollivier Robert <roberto@keltia.freenix.fr> To: freebsd-ports@FreeBSD.ORG Subject: Re: Looking for Java with graphics for 2.1.7 Message-ID: <19970311071229.06361@keltia.freenix.fr> References: <199703100243.SAA03958@iago.ienet.com>
next in thread | previous in thread | raw e-mail | index | archive | help
According to pius@ienet.com: > othello:/usr/lib# ls -l libc.* > -r--r--r-- 1 bin bin 499006 Mar 6 12:58 libc.a > -r--r--r-- 1 bin bin 435713 Mar 6 12:58 libc.so.2.2 > lrwxr-xr-x 1 bin bin 11 Mar 9 18:27 libc.so.3.0 -> libc.so.2.2 Very bad move. This means that anytime you compile something, it will pickup libc.so.3.0. Use this procedure to have proper libc.so.3.0 support with this inconvenient: cd /usr/lib mkdir compat cd compat ln -s ../libc.so.2.2 libc.so.3.0 ldconfig -m /usr/lib/compat Now, libc.so.3.0 is in ld.so.hints for ld.so BUT ld will only fond libc.so.2.2 when linking. Problem solved. -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #39: Sun Feb 2 22:12:44 CET 1997
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19970311071229.06361>