168651SkrisNOTES
268651Skris-----
368651Skris
468651SkrisI've checked out HPUX (well, version 11 at least) and shl_t is
568651Skrisa pointer type so it's safe to use in the way it has been in
668651Skrisdso_dl.c. On the other hand, HPUX11 support dlfcn too and
768651Skrisaccording to their man page, prefer developers to move to that.
868651SkrisI'll leave Richard's changes there as I guess dso_dl is needed
968651Skrisfor HPUX10.20.
1068651Skris
11109998SmarkmThere is now a callback scheme in place where filename conversion can
12109998Smarkm(a) be turned off altogether through the use of the
13109998Smarkm    DSO_FLAG_NO_NAME_TRANSLATION flag,
14109998Smarkm(b) be handled by default using the default DSO_METHOD's converter
15109998Smarkm(c) overriden per-DSO by setting the override callback
16109998Smarkm(d) a mix of (b) and (c) - eg. implement an override callback that;
17109998Smarkm    (i) checks if we're win32 (if(strstr(dso->meth->name, "win32")....)
18109998Smarkm        and if so, convert "blah" into "blah32.dll" (the default is
19109998Smarkm	otherwise to make it "blah.dll").
20109998Smarkm    (ii) default to the normal behaviour - we're not on win32, eg.
21109998Smarkm         finish with (return dso->meth->dso_name_converter(dso,NULL)).
2268651Skris
23