From owner-freebsd-current@FreeBSD.ORG Sun Feb 1 04:38:01 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E707D106582B for ; Sun, 1 Feb 2009 04:38:01 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-gx0-f21.google.com (mail-gx0-f21.google.com [209.85.217.21]) by mx1.freebsd.org (Postfix) with ESMTP id 8E8188FC1F for ; Sun, 1 Feb 2009 04:38:01 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by gxk14 with SMTP id 14so1101949gxk.19 for ; Sat, 31 Jan 2009 20:38:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=wuEXuxCAmUhL4hD5bOsinrZpVB2J6CX1X5s87OH3DIY=; b=XFoYiiXlaD2nhorm2cxcAlBsjCpeYJcOAu6gq0CI77s4/07d6gvpIFeaGcsEiVU19Z fdf8NNLeLkdDQIVXSuYUNs6auZ8/4FyY8PLPK/HKuCFPzdfP1VzVAXh5vOM67k9pOoXu NJ7g98JACurjmo9GLCfJ5/vWIleCdrDBF4V+o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=tiQ6Cn6nxmW8u3Uywv1mOjlO5Ig2oC/VN+kjK/H/zkTYAa5YRqrVCdfLJk9Zhv5bqz 5LErWBwz7mxoYdU+ohyiN4STEsOyC+/6C82rZtm80uOggl61B+VVQ4cB3/7lfwHlpb3k VY5OnKcZYPUtuDbX+SM+2z+8zJeRsrVvIQdt4= MIME-Version: 1.0 Received: by 10.90.82.8 with SMTP id f8mr1958888agb.21.1233461292298; Sat, 31 Jan 2009 20:08:12 -0800 (PST) In-Reply-To: <4984EF27.2050405@mail.zedat.fu-berlin.de> References: <49837CFD.4080603@mail.zedat.fu-berlin.de> <200901301430.07087.fbsd.questions@rachie.is-a-geek.net> <4984EF27.2050405@mail.zedat.fu-berlin.de> Date: Sat, 31 Jan 2009 22:08:12 -0600 Message-ID: <790a9fff0901312008x71fa025na58856bde4c7a5be@mail.gmail.com> From: Scot Hetzel To: "O. Hartmann" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org, Mel , freebsd-questions@freebsd.org Subject: Re: Xorg upgrade desaster: Xlib: extension "Generic Event Extension" missing on display ":0.0". X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Feb 2009 04:38:02 -0000 On Sat, Jan 31, 2009 at 6:39 PM, O. Hartmann wrote: > build-process, but I doubt this. I did a 'ldd' on the Firefox3 binary > and I got the attached dump of the linked shared objects. > Interestingly, the first three entries show up something missing - > therefore I deinstalled Firefox and rebuild the browser after an > additional rebuild of libxcb (via portupgrade -rf). Previously, all Xorg > thor# ldd firefox-bin > firefox-bin: > libxul.so => not found (0x0) > libmozjs.so => not found (0x0) > libxpcom.so => not found (0x0) > libplds4.so.1 => /usr/local/lib/libplds4.so.1 (0x80063e000) > libplc4.so.1 => /usr/local/lib/libplc4.so.1 (0x80076f000) When firefox3 was first added to the ports collection, I had noticed this problem with firefox3 (after using sysutils/libchk), but I didn't have this problem with the firefox 2. A look at the difference between the www/firefox and www/firefox3 Makefiles showed that firefox3 was missing this: LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} After adding this line to the ports Makefile, and rebuilding the port, these libraries are now showing as found in the ldd output. Scot