From owner-freebsd-questions@FreeBSD.ORG Fri May 9 10:04:48 2003 Return-Path: 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 0724F37B401 for ; Fri, 9 May 2003 10:04:48 -0700 (PDT) Received: from pd3mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B6B243F85 for ; Fri, 9 May 2003 10:04:43 -0700 (PDT) (envelope-from cpressey@catseye.mb.ca) Received: from pd6mr4so.prod.shaw.ca (pd6mr4so-qfe3.prod.shaw.ca [10.0.141.219]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003)) with ESMTP id <0HEM0042LPWDZZ@l-daemon> for questions@freebsd.org; Fri, 09 May 2003 11:00:13 -0600 (MDT) Received: from pn2ml8so.prod.shaw.ca (pn2ml8so-qfe0.prod.shaw.ca [10.0.121.152]) by l-daemon (iPlanet Messaging Server 5.1 HotFix 0.8 (built May 12 2002)) with ESMTP id <0HEM00JF8PWES9@l-daemon> for questions@freebsd.org; Fri, 09 May 2003 11:00:14 -0600 (MDT) Received: from www.kallisti.ca (h24-70-180-74.wp.shawcable.net [24.70.180.74]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003)) with SMTP id <0HEM005QRPWDD8@l-daemon> for questions@freebsd.org; Fri, 09 May 2003 11:00:14 -0600 (MDT) Date: Fri, 09 May 2003 12:00:49 -0500 From: Chris Pressey In-reply-to: <20030509181558.4796aadb.m.bonavita@free.fr> To: Matthieu Bonavita Message-id: <20030509120049.0316a9f0.cpressey@catseye.mb.ca> Organization: Cat's Eye Technologies MIME-version: 1.0 X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20030509181558.4796aadb.m.bonavita@free.fr> cc: questions@freebsd.org Subject: Re: Mesa 4.3.2 - Configure failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2003 17:04:48 -0000 On Fri, 9 May 2003 18:15:58 +0200 Matthieu Bonavita wrote: > Hello, I need to install a package,which require SDL, which himself > require Mesa3.4.2. While installing this last one, I get a : > > ===> Script "configure" failed unexpectedly. > Please report the problem to sobomax@FreeBSD.org [maintainer] > and attach the > "/usr/ports/graphics/Mesa3/work/Mesa-3.4.2/config.log" including > the output of the failure of your make command. Also, it might > be a good idea to provide an overview of all packages installed > on your system (e.g. an `ls /var/db/pkg`). > *** Error code 1 > > Stop in /usr/ports/graphics/Mesa3. > > For information,I run a FreeBSD RELEASE 5.0 - p7. > I just updated today the ports collection, same effects, with > Mesa3.4.2_2... Attached files : Packages list, Config.log > > If anybody has a clue ... Hello, I had problems installing Mesa the other day, as well. I don't remember if they were the exact same as yours, but they were similar. I fixed them by setting the following environment variables: setenv C_INCLUDE_PATH /include:/usr/include:/usr/local/include setenv LIBRARY_PATH /lib:/usr/lib:/usr/local/lib It's been my experience that when a port can't find a header file or a library, this is something to try. So I put them in my .cshrc Unfortunately it's also been my experience that having these set can muck up buildworld, so I explicitly unset them in my buildworld script. Not sure if this is intentional or an oversight on buildworld's part. -Chris