Skip site navigation (1)Skip section navigation (2)
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

[-- Attachment #1 --]
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

[-- Attachment #2 --]
--- 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

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4577EBA8.4000703>