1. 04 4月, 2001 1 次提交
  2. 24 3月, 2001 2 次提交
  3. 23 3月, 2001 1 次提交
  4. 16 3月, 2001 1 次提交
  5. 14 3月, 2001 1 次提交
  6. 11 3月, 2001 1 次提交
  7. 06 3月, 2001 2 次提交
  8. 22 2月, 2001 1 次提交
  9. 20 2月, 2001 1 次提交
    • R
      Make all configuration macros available for application by making · cf1b7d96
      Richard Levitte 提交于
      sure they are available in opensslconf.h, by giving them names starting
      with "OPENSSL_" to avoid conflicts with other packages and by making
      sure e_os2.h will cover all platform-specific cases together with
      opensslconf.h.
      
      I've checked fairly well that nothing breaks with this (apart from
      external software that will adapt if they have used something like
      NO_KRB5), but I can't guarantee it completely, so a review of this
      change would be a good thing.
      cf1b7d96
  10. 11 1月, 2001 2 次提交
  11. 01 12月, 2000 1 次提交
  12. 14 11月, 2000 1 次提交
  13. 13 11月, 2000 2 次提交
    • L
      HP-UX shared libraries do not build any longer, as EX_LIBS contains · 305db17b
      Lutz Jänicke 提交于
      "-Wl,+s" instead of +s:
      * Hardcoded necessary references to -ldld/-ldl into the build rules and
        removed EX_LIBS.
      
      HP-UX records the pathnames of dependent libraries when the shared libs
      are built, so that ./libcrypto.sl... is recorded in libssl.sl..., with
      "./" not being resolvable when running an application linked against -lssl:
      * Build libssl without explicit reference to libcrypto, applications will
        be linked with "-lssl -lcrypto" anyway.
      
      Document these informations in Makefile.org.
      305db17b
    • R
      For a long time, I've wanted to be able to easily run one or a few · f777408f
      Richard Levitte 提交于
      individual tests.  I finally got myself to implement it...
      f777408f
  14. 09 11月, 2000 1 次提交
  15. 06 11月, 2000 1 次提交
  16. 01 11月, 2000 2 次提交
  17. 27 10月, 2000 2 次提交
  18. 23 10月, 2000 2 次提交
  19. 22 10月, 2000 1 次提交
  20. 15 10月, 2000 1 次提交
  21. 13 10月, 2000 1 次提交
    • R
      Rework the system to generate shared libraries: · a22fb399
      Richard Levitte 提交于
        - Make note of the expected extension for the shared libraries and
          if there is a need for symbolic links from for example libcrypto.so.0
          to libcrypto.so.0.9.7.  There is extended info in Configure for
          that.
      
        - Make as few rebuilds of the shared libraries as possible.
      
        - Still avoid linking the OpenSSL programs with the shared libraries.
      
        - When installing, install the shared libraries separately from the
          static ones.
      a22fb399
  22. 09 10月, 2000 1 次提交
  23. 26 9月, 2000 1 次提交
  24. 21 9月, 2000 1 次提交
  25. 17 8月, 2000 1 次提交
  26. 14 8月, 2000 1 次提交
  27. 02 8月, 2000 2 次提交
  28. 25 7月, 2000 2 次提交
  29. 21 7月, 2000 1 次提交
    • R
      Redo and enhance the support for building shared libraries. Currently · b436a982
      Richard Levitte 提交于
      there's support for building under Linux and True64 (using examples
      from the programming manuals), including versioning that is currently
      the same as OpenSSL versions but should really be a different series.
      
      With this change, it's up to the users to decide if they want shared
      libraries as well as the static ones.  This decision now has to be
      done at configuration time (well, not really, those who know what they
      do can still do it the same way as before).
      
      The OpenSSL programs (openssl and the test programs) are currently
      always linked statically, but this may change in the future in a
      configurable manner.  The necessary makefile variables to enable this
      are in place.
      
      Also note that I have done absolutely nothing about the Windows target
      to get something similar.  On the other hand, DLLs are already the
      default there, but without versioning, and I've no idea what the
      possibilities for such a thing are there...
      b436a982
  30. 05 7月, 2000 1 次提交
    • R
      I got sick and tired of having to keep track of NIDs when such a thing · c2bbf9cf
      Richard Levitte 提交于
      could be done automagically, much like the numbering in libeay.num and
      ssleay.num.  The solution works as follows:
      
        - New object identifiers are inserted in objects.txt, following the
          syntax given in objects.README.
        - objects.pl is used to process obj_mac.num and create a new
          obj_mac.h.
        - obj_dat.pl is used to create a new obj_dat.h, using the data in
          obj_mac.h.
      
      This is currently kind of a hack, and the perl code in objects.pl
      isn't very elegant, but it works as I intended.  The simplest way to
      check that it worked correctly is to look in obj_dat.h and check the
      array nid_objs and make sure the objects haven't moved around (this is
      important!).  Additions are OK, as well as consistent name changes.
      c2bbf9cf
  31. 18 6月, 2000 1 次提交