From owner-freebsd-current@FreeBSD.ORG Mon Sep 13 22:38:54 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9442D16A4CE for ; Mon, 13 Sep 2004 22:38:54 +0000 (GMT) Received: from mail.mcneil.com (rrcs-24-199-45-54.west.biz.rr.com [24.199.45.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63EB443D4C for ; Mon, 13 Sep 2004 22:38:54 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from localhost (localhost.mcneil.com [127.0.0.1]) by mail.mcneil.com (Postfix) with ESMTP id E17BCF1998; Mon, 13 Sep 2004 15:38:53 -0700 (PDT) Received: from mail.mcneil.com ([127.0.0.1]) by localhost (server.mcneil.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 63276-07; Mon, 13 Sep 2004 15:38:52 -0700 (PDT) Received: from [24.199.45.54] (mcneil.com [24.199.45.54]) by mail.mcneil.com (Postfix) with ESMTP id 8044BF1997; Mon, 13 Sep 2004 15:38:52 -0700 (PDT) From: Sean McNeil To: Michael Reifenberger In-Reply-To: <20040913235337.Y8412@fw.reifenberger.com> References: <1095106952.9560.14.camel@server.mcneil.com> <20040913235337.Y8412@fw.reifenberger.com> Content-Type: text/plain Message-Id: <1095115132.3305.3.camel@server.mcneil.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 13 Sep 2004 15:38:52 -0700 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at mcneil.com cc: freebsd-current@freebsd.org Subject: Re: bad shared library ordering X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 22:38:54 -0000 On Mon, 2004-09-13 at 14:57, Michael Reifenberger wrote: > On Mon, 13 Sep 2004, Sean McNeil wrote: > > > Date: Mon, 13 Sep 2004 13:22:32 -0700 > > From: Sean McNeil > > To: freebsd-current@freebsd.org > > Subject: bad shared library ordering > > > > I have had issues with kadmin on amd64 for quite a while. It turns out > > to be an issue with library ordering. libcrypto.so is used by kadmin. > > There is one in /usr/lib that points to /lib/libcrypto.so.3 (the correct > > one) and one in /usr/local/lib which points to > > /usr/local/lib/libcrypto.so.3 (comes from security/openssl). > > > ... > > If I temporarily rename the one in /usr/local/lib then kadmin doesn't > > core dump on me. > > > > This is not a -current problen. > It's not a problem of your base system either. > Your ldap/sasl ports are not compiled with WITH_OPENSSL_BASE=yes > in /etc/make.conf This isn't what I was alluding to. Yes, since I discovered this I've deleted the package and I'm rebuilding everything. Don't even need WITH_OPENSSL_BASE set. I think the issue is that, perhaps, rpath is being used and so the /usr/local/lib version wins. If this is the case then I see nothing wrong and I just need to do some cleanup. Cheers, Sean