From owner-freebsd-stable@FreeBSD.ORG Thu Dec 7 10:30:59 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03E7916A403 for ; Thu, 7 Dec 2006 10:30:59 +0000 (UTC) (envelope-from bms@incunabulum.net) Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com [66.111.4.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05D1343D75 for ; Thu, 7 Dec 2006 10:22:55 +0000 (GMT) (envelope-from bms@incunabulum.net) Received: from out1.internal (unknown [10.202.2.149]) by out1.messagingengine.com (Postfix) with ESMTP id 16B154B23D for ; Thu, 7 Dec 2006 05:23:40 -0500 (EST) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by out1.internal (MEProxy); Thu, 07 Dec 2006 05:23:40 -0500 X-Sasl-enc: pp4lryPSOKbEFWbEn4lLtKdllBWAPFaFC9Xw+Hh5PTNL 1165487019 Received: from [192.168.123.18] (82-35-112-254.cable.ubr07.dals.blueyonder.co.uk [82.35.112.254]) by mail.messagingengine.com (Postfix) with ESMTP id AC365146D5 for ; Thu, 7 Dec 2006 05:23:39 -0500 (EST) Message-ID: <4577EBA8.4000703@incunabulum.net> Date: Thu, 07 Dec 2006 10:23:36 +0000 From: Bruce M Simpson User-Agent: Thunderbird 1.5.0.5 (X11/20060825) MIME-Version: 1.0 To: freebsd-stable@FreeBSD.org Content-Type: multipart/mixed; boundary="------------040303050001080206010100" Cc: Subject: Browser plugin problems still exist in 6.2 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 10:30:59 -0000 This is a multi-part message in MIME format. --------------040303050001080206010100 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, It still seems to be necessary to patch rtld in order to get the Flash plugin to work (www/linux-flashplugin7) due to the '_dlsym' symbol not being found. I was able to use a smaller patch to do this, see attached (although this may not build with the Intel C compiler). Also, a more recent version of the Adobe Acrobat viewer (print/acroread7) is needed in order to stop the XtCalloc messages. Details here: https://launchpad.net/distros/ubuntu/+source/acroread/+bug/41787 Make sure /compat/linux/dev/null does not exist; if it does, as a regular file, that's bogus and will stop nppdf.so from loading. With these changes, both plugins work on my system. BMS --------------040303050001080206010100 Content-Type: text/x-patch; name="rtld.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rtld.diff" --- rtld.c.orig Thu Dec 7 09:42:13 2006 +++ rtld.c Thu Dec 7 10:07:42 2006 @@ -194,6 +194,7 @@ (func_ptr_type) &_rtld_free_tls, NULL }; +__strong_reference(dlsym, _dlsym); /* * Global declarations normally provided by crt1. The dynamic linker is --------------040303050001080206010100--