From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 07:53:14 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FE8416A4CE; Thu, 2 Sep 2004 07:53:14 +0000 (GMT) Received: from hex.athame.co.uk (guru164.netsonic.fi [194.29.193.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D4E43D1F; Thu, 2 Sep 2004 07:53:13 +0000 (GMT) (envelope-from andy@athame.co.uk) Received: from hex.int.athame.co.uk ([192.168.1.1] helo=localhost) by hex.athame.co.uk with esmtp (Exim 4.30; FreeBSD) id 1C2mP7-000P1Y-GB; Thu, 02 Sep 2004 10:53:09 +0300 From: Andy Fawcett To: freebsd-ports@freebsd.org Date: Thu, 2 Sep 2004 10:53:07 +0300 User-Agent: KMail/1.6.2 References: <54410EF4-FCB3-11D8-B720-00039312D914@fillmore-labs.com> In-Reply-To: <54410EF4-FCB3-11D8-B720-00039312D914@fillmore-labs.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200409021053.08334.andy@athame.co.uk> cc: ports@freebsd.org cc: Matthias Fuhrmann cc: Martin Blapp cc: openoffice@freebsd.org cc: Oliver Eikemeier Subject: Re: FreeBSD 5.3 Beta2 - OO does not compile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 07:53:14 -0000 On Thursday 02 September 2004 10:40, Oliver Eikemeier wrote: > Martin Blapp wrote: > > Hi, > > > >> AFAIS Mozilla 1.0.2 does not build because of vulnerabilities. Can > >> I link to Mozilla 1.7.2 to build OO properly? I do not understand > >> why there is Mozilla 1.0.2 necessary to build OO. > > > > It's only the adressbook part which is needed. And these > > vulnerabilities don't apply to the use in OOO. If you like to port > > OOO to use Mozilla 1.7.2 > > just go for it. > > FWIIW, more vulnerabilities are listed at: > > > > Some of the network releated ones may even affect the adressbook, > although this is hard to verify in this context. You can always build > your port with `make DISABLE_VULNERABILITIES [... other arguments > ...]'. Just to add to the fun... I have 5.3-BETA2, built without libc_r to ensure I don't get threading library conflicts (NOLIBC_R defined). I've made sure that the libc_r.* files are not present on the system. When building OOo-1.1, the first failure is in gcc32 in the gcc-java stuff. It tries to link against libc_r, and I needed to define WITHOUT_LIBJAVA=yes to avoid this. Then OOo fails to build because the embedded Mozilla 1.0.2 also tries to link against libc_r. I'm currently trying to rebuild WITHOUT_MOZILLA to see if this helps... I'll try to remember to send-pr all this later once I've finished the build, consider this a minor 'heads up' A.