On 5/22/2013 11:39 AM, Jim Bretti wrote:
> I have a binary extension for Firefox (a toolbar) that currently links against xpcom.lib. This lib file (and several others) are missing from the current Xulrunner beta (22.0b2).
>
> I'm currently not able to link my extension. Has something changed in Firefox 22 related to building binary xpcom components?
Yes. xpcom.dll no longer exists, and therefore neither does xpcom.lib.
See
https://bugzilla.mozilla.org/show_bug.cgi?id=648407
You should be able to just link directly against xul.lib/xul.dll... this
change merely combined independent DLLs as a performance boost, it
didn't really change any of the functionality.
--BDS