Date: 20 May 2002 22:42:04 -0400 From: Joe Marcus Clarke <marcus@marcuscom.com> To: Kris Kennaway <kris@obsecurity.org> Cc: Maxim Sobolev <sobomax@FreeBSD.ORG>, gnome@FreeBSD.ORG Subject: Re: gnome fails on alpha because mozilla fails Message-ID: <1021948924.284.3.camel@gyros.marcuscom.com> In-Reply-To: <20020520165148.A1731@xor.obsecurity.org> References: <20020519132239.E64824@xor.obsecurity.org> <3CE8BE4F.4CB2229B@FreeBSD.org> <20020520135515.B97492@xor.obsecurity.org> <1021938344.297.155.camel@gyros.marcuscom.com> <20020520165148.A1731@xor.obsecurity.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--=-hfOILfQjCrANTY/ASzny Content-Type: text/plain Content-Transfer-Encoding: 7bit On Mon, 2002-05-20 at 19:51, Kris Kennaway wrote: > On Mon, May 20, 2002 at 07:45:44PM -0400, Joe Marcus Clarke wrote: > > On Mon, 2002-05-20 at 16:55, Kris Kennaway wrote: > > > On Mon, May 20, 2002 at 12:13:51PM +0300, Maxim Sobolev wrote: > > > > Kris Kennaway wrote: > > > > > > > > > > Please see http://beta.freebsd.org/errorlogs/4-latest/mozilla-1.0.rc2,1.log > > > > > > > > Gmm, very strange error, indeed ({standard input}:657: FATAL: Can't > > > > write pathsub.o: No such file or directory). Looks like a > > > > hardware/software problem on beta, not mozilla bug. > > > > > > I don't think so, because it's repeatable. > > > > The problem is with the -ffunction-sections compiler directive. If we > > set --disable-reorder in the Makefile, this problem should be fixed. > > Thanks for tracking it down. If you can give me a patch I'll test it. Try this out. It disables function reorder on the AXP platform only. If sobomax agrees and the patch works, I can commit it. Joe > > Kris -- PGP Key: http://www.marcuscom.com/pgp.asc --=-hfOILfQjCrANTY/ASzny Content-Disposition: attachment; filename=mozilla.diff Content-Transfer-Encoding: quoted-printable Content-Type: text/x-patch; name=mozilla.diff; charset=ISO8859-1 diff -ruN mozilla.orig/Makefile mozilla/Makefile --- www/mozilla.orig/Makefile Mon May 20 22:38:58 2002 +++ www/mozilla/Makefile Mon May 20 22:38:48 2002 @@ -54,7 +54,6 @@ --disable-optimize \ --disable-pedantic \ --disable-plaintext-editor-only \ - --enable-reorder \ --enable-strip \ --enable-svg \ --disable-tests \ @@ -93,6 +92,12 @@ CONFIGURE_ENV=3D MOZ_INTERNAL_LIBART_LGPL=3D1 =20 .include <bsd.port.pre.mk> + +.if ${ARCH} =3D=3D "alpha" +CONFIGURE_ARGS+=3D --disable-reorder +.else +CONFIGURE_ARGS+=3D --enable-reorder +.endif =20 MAKE_ENV=3D LD_LIBRARY_PATH=3D${WRKSRC}/dist/bin \ MOZ_INTERNAL_LIBART_LGPL=3D1 --=-hfOILfQjCrANTY/ASzny-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1021948924.284.3.camel>