From owner-freebsd-stable Mon Nov 24 23:56:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA22814 for stable-outgoing; Mon, 24 Nov 1997 23:56:44 -0800 (PST) (envelope-from owner-freebsd-stable) Received: from baloon.mimi.com (sjx-ca34-22.ix.netcom.com [204.31.236.118]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id XAA22794 for ; Mon, 24 Nov 1997 23:56:37 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id XAA02086; Mon, 24 Nov 1997 23:56:29 -0800 (PST) (envelope-from asami) Date: Mon, 24 Nov 1997 23:56:29 -0800 (PST) Message-Id: <199711250756.XAA02086@baloon.mimi.com> To: jdp@polstra.com CC: uzsv2k@uni-bonn.de, stable@FreeBSD.ORG In-reply-to: <199711242155.NAA26301@austin.polstra.com> (message from John Polstra on Mon, 24 Nov 1997 13:55:02 -0800) Subject: Re: ldconfig problems From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-stable@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * The ldconfig database is used only by the dynamic linker "ld.so". * The static linker "ld" does not use it at all. If you want "ld" to * find libgnumalloc, then you need to either add "-L/usr/lib/compat" * to its command line arguments, or create a symbolic link * "/usr/lib/libgnumalloc.so.2.0 -> /usr/lib/compat/libgnumalloc.so.2.0". This answer is correct in the regular sense, but not for this particular case. Your problem is that you have old imake config files (they are in /usr/X11R6/lib/X11/config). Satoshi