openssl/crypto/dso
Geoff Thorpe bc2aadad84 This helps make the DSO stuff more portable;
* "no-dso" option available in Configure so that all DSO methods will
  return NULL, overriding any support the platform might otherwise
  have built.
* dlfcn_no_h config string now available rather than just dlfcn. This
  is for platforms that have dlfcn.h functions but do not have (or
  need) the dlfcn.h header file.
2000-04-06 07:09:45 +00:00
..
dso.h This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
dso_dl.c This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
dso_dlfcn.c This helps make the DSO stuff more portable; 2000-04-06 07:09:45 +00:00
dso_err.c This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
dso_lib.c This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
dso_null.c This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
dso_openssl.c This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
dso_win32.c This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
Makefile.ssl This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00
README This is a set of startup code for the DSO support, it's not yet linked into 2000-04-04 21:57:11 +00:00

TODO
----

Get a fix on how the paths should be handled. For now, flags == 0
and this is currently just passing strings directly onto the
underlying system calls and letting them do what they want with
the paths. However, it may be desirable to implement flags that
control the way the loading is performed (or attempted), and I
invisage that DSO_ctrl() will be used to control this.

NOTES
-----

I've checked out HPUX (well, version 11 at least) and shl_t is
a pointer type so it's safe to use in the way it has been in
dso_dl.c. On the other hand, HPUX11 support dlfcn too and
according to their man page, prefer developers to move to that.
I'll leave Richard's changes there as I guess dso_dl is needed
for HPUX10.20.

[G-T]