Skip to content
  1. Nov 07, 2000
  2. Nov 06, 2000
  3. Nov 02, 2000
  4. Nov 01, 2000
  5. Oct 31, 2000
  6. Oct 28, 2000
  7. Oct 27, 2000
  8. Oct 26, 2000
  9. Oct 21, 2000
  10. Oct 20, 2000
  11. Oct 14, 2000
  12. Oct 13, 2000
    • Richard Levitte's avatar
      Rework the system to generate shared libraries: · a22fb399
      Richard Levitte authored
        - 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
  13. Oct 12, 2000
  14. Oct 06, 2000
  15. Oct 04, 2000
  16. Oct 01, 2000
  17. Sep 26, 2000
  18. Sep 25, 2000
  19. Sep 24, 2000
  20. Sep 23, 2000
  21. Sep 22, 2000
  22. Sep 21, 2000
  23. Sep 20, 2000
    • Richard Levitte's avatar
      On VMS, stdout may very well lead to a file that is written to in a · 645749ef
      Richard Levitte authored
      record-oriented fashion.  That means that every write() will write a
      separate record, which will be read separately by the programs trying
      to read from it.  This can be very confusing.
      
      The solution is to put a BIO filter in the way that will buffer text
      until a linefeed is reached, and then write everything a line at a
      time, so every record written will be an actual line, not chunks of
      lines and not (usually doesn't happen, but I've seen it once) several
      lines in one record.  Voila, BIO_f_linebuffer() is born.
      
      Since we're so close to release time, I'm making this VMS-only for
      now, just to make sure no code is needlessly broken by this.  After
      the release, this BIO method will be enabled on all other platforms as
      well.
      645749ef