1. 26 Jun, 2000 1 commit
  2. 23 Jun, 2000 4 commits
  3. 22 Jun, 2000 9 commits
  4. 21 Jun, 2000 3 commits
    • Ulf Möller's avatar
      use faster version · 8415060e
      Ulf Möller authored
      8415060e
    • Geoff Thorpe's avatar
      * This adds some checking to the 'dlfcn' DSO_METHOD that at least lets · 1a797ac6
      Geoff Thorpe authored
        it cope with OpenBSD which doesn't understand "RTLD_NOW".
      * Added the dso_scheme config string entry for OpenBSD-x86 to give it
        DSO support.
      * 'make update' that has also absorbed some of Steve's mkstack changes
        for the ASN-related macros.
      1a797ac6
    • Dr. Stephen Henson's avatar
      · 13083215
      Dr. Stephen Henson authored
      Fixes for Win32 build.
      
      This is mostly a work around for the old VC++ problem
      that it treats func() as func(void).
      
      Various prototypes had been added to 'compare' function
      pointers that triggered this. This could be fixed by removing
      the prototype, adding function pointer casts to every call or
      changing the passed function to use the expected arguments.
      I mostly did the latter.
      
      The mkdef.pl script was modified to remove the typesafe
      functions which no longer exist.
      
      Oh and some functions called OPENSSL_freeLibrary() were
      changed back to FreeLibrary(), wonder how that happened :-)
      13083215
  5. 20 Jun, 2000 2 commits
    • Dr. Stephen Henson's avatar
      · 7ef82068
      Dr. Stephen Henson authored
      Handle ASN1_SET_OF and PKCS12_STACK_OF using function
      casts in the same way as STACK_OF.
      7ef82068
    • Geoff Thorpe's avatar
      'make update' · 438fa2fd
      Geoff Thorpe authored
      438fa2fd
  6. 19 Jun, 2000 6 commits
  7. 18 Jun, 2000 4 commits
  8. 17 Jun, 2000 1 commit
  9. 16 Jun, 2000 6 commits
    • Dr. Stephen Henson's avatar
      Safe stack reorganisation in terms of function casts. · 3aceb94b
      Dr. Stephen Henson authored
      After some messing around this seems to work but needs
      a few more tests. Working out the syntax for sk_set_cmp_func()
      (cast it to a function that itself returns a function pointer)
      was painful :-(
      
      Needs some testing to see what other compilers think of this
      syntax.
      
      Also needs similar stuff for ASN1_SET_OF etc etc.
      3aceb94b
    • 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
  10. 15 Jun, 2000 3 commits
  11. 14 Jun, 2000 1 commit