Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 02 Nov 2001 09:55:01 +0100 (CET)
From:      Riccardo Torrini <riccardo@torrini.org>
To:        freebsd-current@FreeBSD.ORG
Cc:        freebsd-ports@FreeBSD.ORG
Subject:   Re: XFmail and libc.so.3
Message-ID:  <XFMail.20011102095501.riccardo@torrini.org>
In-Reply-To: <XFMail.20011027152850.riccardo@torrini.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On 27-Oct-2001 (12:28:50/GMT) Riccardo Torrini wrote:

I have the same problem of 27 october with src and world of last
31 oct, xfmail doesn't work with libc.so.3 from compat3x (either
from ports or from COMPAT3X=yes), it crashes.  Any ideas?

The only method to make it happy is this hack:

-----8<-----[ before ]-----8<-----
# ldconfig -r | grep libc.so
        33:-lc.5 => /usr/lib/libc.so.5
        67:-lc.3 => /usr/lib/compat/libc.so.3
        89:-lc.4 => /usr/lib/compat/libc.so.4

-----8<-----[ hack ]-----8<-----
# cd /usr/lib
# mv compat/libc.so.3 compat/libc.so.3-NO_THANKS
# ln -s libc.so libc.so.3

-----8<-----[ after ]-----8<-----
# ldconfig -r | grep libc.so
        33:-lc.5 => /usr/lib/libc.so.5
        66:-lc.3 => /usr/lib/libc.so.3
        89:-lc.4 => /usr/lib/compat/libc.so.4


Riccardo.

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?XFMail.20011102095501.riccardo>