From owner-freebsd-questions@FreeBSD.ORG Sun Sep 9 18:21:27 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 7FBFA16A418 for ; Sun, 9 Sep 2007 18:21:27 +0000 (UTC) (envelope-from kallender@completecomputing.com) Received: from cgp.netins.net (f1phy.netins.net [167.142.228.65]) by mx1.freebsd.org (Postfix) with ESMTP id 3EAC813C46B for ; Sun, 9 Sep 2007 18:21:27 +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 cgpf1.cgp.netins.net (CommuniGate Pro SMTP 5.0.13) with ESMTPA id 1438399844; Sun, 09 Sep 2007 13:21:26 -0500 Message-ID: <46E43991.7050107@completecomputing.com> Date: Sun, 09 Sep 2007 13:21:05 -0500 From: Kyle Allender User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Mel References: <46E426D7.8040203@completecomputing.com> <200709091959.07952.fbsd.questions@rachie.is-a-geek.net> In-Reply-To: <200709091959.07952.fbsd.questions@rachie.is-a-geek.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: 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 18:21:27 -0000 Mel wrote: > On Sunday 09 September 2007 19:01:11 Kyle Allender wrote: > > >> nsRenderingContextGTK.h:161: warning: by `virtual nsresult >> nsRenderingContextGTK::DrawString(const nsString&, nscoord, nscoord, >> PRInt32, const nscoord*)' >> nsDeviceContextGTK.cpp:70:26: pango/pangox.h: No such file or directory >> > > >> I've been googling and trying to research the problem via the >> freebsd/gnome pages, but have thus far come up empty. I can provide >> further log entries as needed, too. >> > > Could you post full compile statement for that error? Most notably it should > include -I/usr/local/include/pango-1. > > > A quick follow-up. I tried this command: make -DENABLE-STATIC -DENABLE-SHARED in /usr/ports/x11-toolkits/pango and now the pangox.h file is present here: [root@sia /usr/ports/x11-toolkits/pango/work/pango-1.16.5/pango]# ls -ld pangox.h -rw-r--r-- 1 root wheel 4393 May 10 16:44 pangox.h Now the question becomes how do I get that file installed in /usr/local/include as required by the firefox port without the ports system overriding my configuration changes? Will a make install provide the correct result? Or should I use: make -DENABLE-STATIC -DENABLE-SHARED install? K