From owner-freebsd-questions@FreeBSD.ORG Thu Oct 12 21:03:52 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD38516A403 for ; Thu, 12 Oct 2006 21:03:52 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0F9A43D79 for ; Thu, 12 Oct 2006 21:03:21 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin05-en2 [10.13.10.150]) by smtpout.mac.com (Xserve/8.12.11/smtpout14/MantshX 4.0) with ESMTP id k9CL38nn016112; Thu, 12 Oct 2006 14:03:08 -0700 (PDT) Received: from [17.214.13.96] (a17-214-13-96.apple.com [17.214.13.96]) (authenticated bits=0) by mac.com (Xserve/smtpin05/MantshX 4.0) with ESMTP id k9CL3698026122; Thu, 12 Oct 2006 14:03:07 -0700 (PDT) In-Reply-To: <452EAA28.9060507@proficuous.com> References: <452EAA28.9060507@proficuous.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <10621736-0014-4440-B2C9-8625D07F0155@mac.com> Content-Transfer-Encoding: 7bit From: Chuck Swiger Date: Thu, 12 Oct 2006 14:03:05 -0700 To: "Aaron P. Martinez" X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAA== X-Brightmail-scanned: yes Cc: freebsd-questions@FreeBSD.org Subject: Re: ltdl library problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Oct 2006 21:03:52 -0000 On Oct 12, 2006, at 1:48 PM, Aaron P. Martinez wrote: > I am trying to compile a program called gyachi on my freebsd 6.1 > machine and am having a ton of problems. I consulted the gyachi > forums but most people there are running on one flavor of linux or > another, nobody has it on freebsd that i can tell, so now i am > turning here. > at first my configure would stop at alsa, even though i have the > linux-compatible alsa programs, so then i used the --with-esd > switch and now i'm getting stopped with the following error: > checking for lt_dlopen in -lltdl... no configure: error: cannot > find ltdl library I have libtool installed and and under /usr/local/ > lib i have: libltdl.a libltdl.la libltdl.so libltdl.so.4 I tried > using the --with-libintl-prefix switch like so: ./configure -- > enable-esd --with-gnu-ld --with-libintl-prefix=/usr/local it's > still not finding it, same error again. Assuming you use a Bourne-compatible shell, try: LDFLAGS=-L/usr/local/lib CPPFLAGS=-I/usr/local/include ./configure -- enable-esd [ ... ] If you use csh, use setenv to export the above variables. -- -Chuck