This helps make the DSO stuff more portable;
[openssl.git] / crypto / dso / README
1 TODO
2 ----
3
4 Get a fix on how the paths should be handled. For now, flags == 0
5 and this is currently just passing strings directly onto the
6 underlying system calls and letting them do what they want with
7 the paths. However, it may be desirable to implement flags that
8 control the way the loading is performed (or attempted), and I
9 invisage that DSO_ctrl() will be used to control this.
10
11 NOTES
12 -----
13
14 I've checked out HPUX (well, version 11 at least) and shl_t is
15 a pointer type so it's safe to use in the way it has been in
16 dso_dl.c. On the other hand, HPUX11 support dlfcn too and
17 according to their man page, prefer developers to move to that.
18 I'll leave Richard's changes there as I guess dso_dl is needed
19 for HPUX10.20.
20
21 [G-T]
22