From owner-freebsd-ports@FreeBSD.ORG Fri Sep 2 12:05:06 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28FCD106566C for ; Fri, 2 Sep 2011 12:05:06 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-qw0-f44.google.com (mail-qw0-f44.google.com [209.85.216.44]) by mx1.freebsd.org (Postfix) with ESMTP id CCA318FC16 for ; Fri, 2 Sep 2011 12:05:05 +0000 (UTC) Received: by qwg2 with SMTP id 2so2037199qwg.17 for ; Fri, 02 Sep 2011 05:05:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type; bh=BYPIsTtVCV7X4HLOW7XxSnG0GSsyddi0sX6rAqIo2jY=; b=XJOrVTbRqTnxHingRZAZX2Fuj6KZe3hkxtwYg43FZvy+wmmsZ72zkIjNzbEePnI8V7 wUHv/x1phQ7ingASf8xg5t+bThSUUX+uCVgEIY/lL3DAlcp91MOfktK1AtmqqoTb8ios SJ/iNmbytlKENjLlhzkpE64dtl0YJTShXKx5A= Received: by 10.229.34.69 with SMTP id k5mr651285qcd.258.1314963248042; Fri, 02 Sep 2011 04:34:08 -0700 (PDT) Received: from schism.local (c-76-124-49-145.hsd1.pa.comcast.net. [76.124.49.145]) by mx.google.com with ESMTPS id hv19sm1279818qab.7.2011.09.02.04.34.05 (version=SSLv3 cipher=OTHER); Fri, 02 Sep 2011 04:34:06 -0700 (PDT) Message-ID: <4E60BF2D.8050105@gmail.com> Date: Fri, 02 Sep 2011 07:34:05 -0400 From: Glen Barber User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:6.0.1) Gecko/20110830 Thunderbird/6.0.1 MIME-Version: 1.0 To: Anton Shterenlikht References: <20110902110129.GA84126@mech-cluster241.men.bris.ac.uk> In-Reply-To: <20110902110129.GA84126@mech-cluster241.men.bris.ac.uk> X-Enigmail-Version: 1.3.1 Content-Type: multipart/mixed; boundary="------------060205020002070607000201" Cc: freebsd-ports@freebsd.org Subject: Re: configure options X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 12:05:06 -0000 This is a multi-part message in MIME format. --------------060205020002070607000201 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 9/2/11 7:01 AM, Anton Shterenlikht wrote: > I'm having problems building www/firefox on ia64. > I was advised to: > > https://bugzilla.mozilla.org/show_bug.cgi?id=683879 > > --- Comment #3 from Boris Zbarsky (:bz) 2011-09-01 10:36:27 PDT --- > Do things work if you do use --disable-ipc? > > -- > > How should I specify this option within > the ports framework? Should it be something > like > make disable-ipc=yes > No, it would need to be specified in the port's Makefile. I haven't tried it, but the attached patch may work. (Again, I haven't tried it.) :) Regards, -- Glen Barber --------------060205020002070607000201 Content-Type: text/plain; name="www-firefox-Makefile.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="www-firefox-Makefile.diff.txt" --- /usr/ports/www/firefox/Makefile 2011-08-31 17:26:12.000000000 -0400 +++ Makefile 2011-09-02 07:30:47.330998597 -0400 @@ -49,6 +49,7 @@ --enable-application=browser \ --enable-official-branding --disable-updater \ --enable-canvas --enable-libxul --disable-necko-wifi \ + --disable-ipc \ --with-system-libevent=${LOCALBASE} OPTIONS= DBUS "Enable D-BUS support" on \ --------------060205020002070607000201--