Date: Thu, 07 Dec 2006 10:23:36 +0000 From: Bruce M Simpson <bms@incunabulum.net> To: freebsd-stable@FreeBSD.org Subject: Browser plugin problems still exist in 6.2 Message-ID: <4577EBA8.4000703@incunabulum.net>
next in thread | raw e-mail | index | archive | help
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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4577EBA8.4000703>