Re: Windows plugin works with FF on trunk, but not FF released
Benjamin Smedberg <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.plugins |
|---|---|
| Message-ID | <[email protected]> |
On 7/26/2011 3:33 PM, Mike C wrote: > Hi All, > > This is my first post to this list. Welcome. > > I have an FF on Windows plugin that works in both 3.x and 5.x. I have a > dual build config. > > The 5.x plugin will load and work fine from the FF source I pulled down an > built myself, but it won't load and work with the standard FF 5.x release. The most common issue here is that you are linking against some library or symbol which is not present in a release version. Are you linking against any Mozilla library (you shouldn't be). What version of the C runtime library are you using (you should probably be using the statically linked version). You can use the dynamic mode of dependency walker to view any of these sorts of errors: http://www.dependencywalker.com/ > about:plugins shows my plugin, but I assume that's only because the code for > about:plugins just looks at the version info. That is probably correct. --BDS