From owner-cvs-ports@FreeBSD.ORG Mon Nov 24 00:28:59 2003 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C04EC16A4CE; Mon, 24 Nov 2003 00:28:59 -0800 (PST) Received: from blues.jpj.net (blues.jpj.net [208.210.80.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5815C43FB1; Mon, 24 Nov 2003 00:28:58 -0800 (PST) (envelope-from trevor@jpj.net) Received: from blues.jpj.net (localhost.jpj.net [127.0.0.1]) by blues.jpj.net (8.12.10/8.12.3) with ESMTP id hAO8StUF099030; Mon, 24 Nov 2003 03:28:55 -0500 (EST) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost)hAO8St8i099027; Mon, 24 Nov 2003 03:28:55 -0500 (EST) X-Authentication-Warning: blues.jpj.net: trevor owned process doing -bs Date: Mon, 24 Nov 2003 03:28:55 -0500 (EST) From: Trevor Johnson To: "David O'Brien" In-Reply-To: <20031124075854.GA5187@dragon.nuxi.com> Message-ID: <20031124031735.A97538@blues.jpj.net> References: <200311240120.hAO1KeOx044933@repoman.freebsd.org> <20031124023405.B35364@blues.jpj.net> <20031124075854.GA5187@dragon.nuxi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@freebsd.org cc: Joe Marcus Clarke cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/www/mozilla Makefile ports/www/mozilla-devel Makefile ports/www/mozilla-firebird Makefile X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2003 08:28:59 -0000 David O'Brien wrote: > On Mon, Nov 24, 2003 at 02:34:24AM -0500, Trevor Johnson wrote: > > > > > > FreeBSD ports repository > > > > > > Modified files: > > > www/mozilla Makefile > > > www/mozilla-devel Makefile > > > www/mozilla-firebird Makefile > > > Log: > > > Don't build these ports on amd64. > > > > Why not? > > We don't have the right bits yet. Mozilla has MD code which has to have > carnal knowledge of the compiler's ABI. If you have an x86-64 machine, could you please try this patch? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/mozilla-firebird/Makefile,v retrieving revision 1.57 diff -u -r1.57 Makefile --- Makefile 24 Oct 2003 06:38:14 -0000 1.57 +++ Makefile 24 Nov 2003 08:26:34 -0000 @@ -99,6 +99,9 @@ -e 's|@PREFIX@|${LOCAL_PREFIX}|' \ -e 's|@PERL@|${PERL5}|' \ <${FILESDIR}/mozconfig.in >${WRKSRC}/.mozconfig +.if (${MACHINE_ARCH} == "amd64") + ${ECHO_CMD} ac_add_options --disable-md >> ${WRKSRC}/.mozconfig +.endif post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ -- Trevor Johnson