From owner-freebsd-questions@FreeBSD.ORG Sun Sep 9 23:19:34 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18A7B16A419 for ; Sun, 9 Sep 2007 23:19:34 +0000 (UTC) (envelope-from kallender@completecomputing.com) Received: from cgp.netins.net (f2phy.netins.net [167.142.229.65]) by mx1.freebsd.org (Postfix) with ESMTP id C511813C49D for ; Sun, 9 Sep 2007 23:19:33 +0000 (UTC) (envelope-from kallender@completecomputing.com) X-netINS-MPP: scanned Received: from [199.120.78.141] (account kylea@netins.net HELO G4.local) by cgpf2.cgp.netins.net (CommuniGate Pro SMTP 5.0.13) with ESMTPA id 1421923151; Sun, 09 Sep 2007 18:19:30 -0500 Message-ID: <46E47F68.8070902@completecomputing.com> Date: Sun, 09 Sep 2007 18:19:04 -0500 From: Kyle Allender User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Adam J Richardson References: <46E426D7.8040203@completecomputing.com> <200709092027.44570.fbsd.questions@rachie.is-a-geek.net> <46E43F98.8090901@completecomputing.com> <200709092105.12625.fbsd.questions@rachie.is-a-geek.net> <46E4659B.3000608@crackmonkey.us> In-Reply-To: <46E4659B.3000608@crackmonkey.us> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Mel , freebsd-questions@freebsd.org Subject: Re: firefox 2.0.0.6 build fails: missing pangox.h 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: Sun, 09 Sep 2007 23:19:34 -0000 Adam J Richardson wrote: > Mel wrote: >> You probably had WITHOUT_X11 defined somewhere (/etc/make.conf or >> /var/db/ports/pango/options or /usr/local/etc/pkgtools.conf in >> MAKE_ARGS somewhere, shell environment?) when you rebuilt pango. > > Hi Kyle. > > I think Mel has hit on the answer here. Pango is being built without X > support. > > I had this exact error myself. A few libraries [Pango, Cairo etc] > weren't allowing themselves to be built on. Turns out I had in my > /etc/make.conf the lines > > NO_X=true > WITHOUT_X11=true > > to speed up "make buildworld". Then I installed X from packages on > this machine. A bit later I tried to build Firefox... took me a week > to figure it out. > > In summary, just comment out any "NO_X" and "WITHOUT_X11" lines in the > locations Mel suggested. Then remove, rebuild and reinstall Pango. > After that's done Firefox should build properly. > > HtH, > Adam J Richardson > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > That was precisely the problem - my /etc/make.conf had WITHOUT_X11 from when I was trying to get CalendarServer installed a few weeks ago. After I commented that out, firefox built without issue. Thanks for both your help - 'tis appreciated. K