Closed
Bug 176830
Opened 23 years ago
Closed 23 years ago
Allow loading of Macho oldstyle (npapi) plugins.
Categories
(Camino Graveyard :: Plug-ins, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: sfraser_bugs, Assigned: sfraser_bugs)
Details
Attachments
(1 file)
|
7.23 KB,
patch
|
Details | Diff | Splinter Review |
We currently assume that plugins using the old-style NPP apis are CFM, and, if
you try to make a Macho one, we'll crash when it tries to call back via CFM
T-Vectors.
I don't see any reason not to suppport old-style MachO plugins; we need it for
the default plugin (bug 166998), for one.
| Assignee | ||
Comment 1•23 years ago
|
||
This patch allows the loading of Macho plugins by:
1. requiring that such plugins use a main entry point named "mainMachO"
2. not wrapping the function pointers for such plugins (both plugin and
netscape tables) with T-Vector glue.
Is requiring a different entry point name a good thing? NSPR can't tell us what
the format of the library is (suckage), so this seems like a reasonable
solution.
| Assignee | ||
Comment 2•23 years ago
|
||
cc wtc who may wish to comment on the inability to determine the format of a
library (CFM vs. Macho) given a PRLibrary*.
Status: NEW → ASSIGNED
Comment 3•23 years ago
|
||
Simon, I don't know what you want me to say.
Do you want me to confirm the inability to
determine the format of a library given a
PRLibrary*, or do you want me to add a function
to determine that?
Mac is the only platform on which there are
multiple executable formats of dynamic load
libraries. NSPR seldom provides a function
that's only useful on one platform. It should
be simple to add such a function though because
the format of a library is stored in the
PRLibrary structure.
| Assignee | ||
Comment 4•23 years ago
|
||
I'm going to WONTFIX this. The plugin API specifies that plugin entry points are
CFM TVectors, so MachO plugins will have to provide compatible function
pointers. See the patch in bug 166998 for the default plugin for an example of
how to do this.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•