From owner-freebsd-gecko@FreeBSD.ORG Tue Aug 11 10:55:36 2009 Return-Path: Delivered-To: gecko@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4D4E106564A for ; Tue, 11 Aug 2009 10:55:36 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from marvin.chruetertee.ch (marvin.chruetertee.ch [217.150.245.55]) by mx1.freebsd.org (Postfix) with ESMTP id 3FD4D8FC21 for ; Tue, 11 Aug 2009 10:55:35 +0000 (UTC) Received: from daedalus.network.local (38-51.3-85.cust.bluewin.ch [85.3.51.38]) (authenticated bits=0) by marvin.chruetertee.ch (8.14.3/8.14.3) with ESMTP id n7BAtYmI030208 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Tue, 11 Aug 2009 10:55:34 GMT (envelope-from beat@FreeBSD.org) Message-ID: <4A814E82.6080308@FreeBSD.org> Date: Tue, 11 Aug 2009 12:57:06 +0200 From: Beat Gaetzi User-Agent: Thunderbird 2.0.0.22 (X11/20090713) MIME-Version: 1.0 To: Stijn Bouwhuis References: <5177cd590908110320s22e36107w3cebe24dcbab3517@mail.gmail.com> In-Reply-To: <5177cd590908110320s22e36107w3cebe24dcbab3517@mail.gmail.com> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: gecko@FreeBSD.org Subject: Re: Installing firefox 3.5 on FreeBSD fails X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2009 10:55:36 -0000 Stijn Bouwhuis wrote: > A ports installation of firefox35 leads to the application crashing on > a freshly installed machine running xfce 4.4.2. The standards tabs > open, the status bar mentions "Transferring data from [website]" and > after about 3 seconds, the application crashes. In addition, firefox > is not listed as a browser among the xfce preferred applications, the > list that is automatically generated based on installed applications. > > madrid# /usr/local/bin/firefox3 > LoadPlugin: failed to initialize shared library > /root/.mozilla/plugins/nppdf.so [/root/.mozilla/plugins/nppdf.so: > unsupported file layout] > Bad system call (core dumped) You need to load the sem module: # kldload sem To load sem on every boot put the following line into your /boot/loader.conf: sem_load="YES" Beat