1. 16 Jun, 2000 5 commits
    • Richard Levitte's avatar
      Change to have a single library that works on both Win9x and WinNT. · fb3e1eeb
      Richard Levitte authored
      As far as I understand, it still needs to be compiled on NT...
      Contributed by Arne Ansper <arne@ats.cyber.ee>
      fb3e1eeb
    • Bodo Möller's avatar
      typo · f03aa651
      Bodo Möller authored
      f03aa651
    • Bodo Möller's avatar
    • Bodo Möller's avatar
      There are compilers that complain if a variable has the same name as a · 4ee1eb7b
      Bodo Möller authored
      label. (Reported by Alexei Bakharevski.)
      4ee1eb7b
    • Geoff Thorpe's avatar
      Currently the DSO_METHOD interface has one entry point to bind all · e9a68cfb
      Geoff Thorpe authored
      "symbols" including functions (of all prototypes( and variables. Whilst
      casting any function type to another violates ANSI C (I believe), it is
      a necessary evil in shared-library APIs. However, it is quite
      conceivable that functions in general and data symbols could very well
      be represented differently to each other on some systems, as Bodo said;
      
      > Since the function/object distinction is a lot more likely to be
      > important on real-life platforms supporting DSO *and* it can be quite
      > easily done *and* it will silence compilers that don't like
      > assignments from void pointers to function pointer variables, why
      > not do it?
      
      I agree. So this change splits the "dso_bind" handler in DSO_METHOD
      into "dso_bind_var" and "dso_bind_func". Similarly the exported
      function DSO_bind() has been split in two. I've also put together
      changes for the various DSO_METHOD implementations, but so far only
      DSO_dlfcn() has been tested. BTW: The prototype for dso_bind had been
      a bit strange so I've taken the opportunity to change its shape (in
      both variations).
      
      Also, the README has been updated - particularly with a note about
      using customised native name-translation for shared libraries (and that
      you can't do it yet).
      e9a68cfb
  2. 15 Jun, 2000 3 commits
  3. 14 Jun, 2000 2 commits
  4. 13 Jun, 2000 4 commits
  5. 12 Jun, 2000 2 commits
  6. 11 Jun, 2000 3 commits
  7. 10 Jun, 2000 2 commits
  8. 09 Jun, 2000 3 commits
    • Bodo Möller's avatar
      Comment about bcopy on SunOS 4.x. · b908bd4e
      Bodo Möller authored
      b908bd4e
    • Richard Levitte's avatar
      Using checks of the existence of HEADER_{foo}_H in other header files · ef33b970
      Richard Levitte authored
      was a really bad idea.  For example, the following:
      
      	#include <x509.h>
      	#include <bio.h>
      	#include <asn1.h>
      
      would make sure that things like ASN1_UTCTIME_print() wasn't defined
      unless you moved the inclusion of bio.h to above the inclusion of
      x509.h.  The reason is that x509.h includes asn1.h, and the
      declaration of ASN1_UTCTIME_print() depended on the definition of
      HEADER_BIO_H.  That's what I call an obscure bug.
      
      Instead, this change makes sure that whatever header files are needed
      for the correct process of one header file are included automagically,
      and that the definitions of, for example, BIO-related things are
      dependent on the absence of the NO_{foo} macros.  This is also
      consistent with the way parts of OpenSSL can be excluded at will.
      ef33b970
    • Bodo Möller's avatar
      Comment for increased code clarity. · 814ed26c
      Bodo Möller authored
      814ed26c
  9. 08 Jun, 2000 6 commits
  10. 07 Jun, 2000 3 commits
  11. 06 Jun, 2000 4 commits
  12. 05 Jun, 2000 2 commits
  13. 04 Jun, 2000 1 commit