1. 10 7月, 2016 3 次提交
  2. 07 7月, 2016 2 次提交
    • R
      VMS: defined the logical name OPENSSL at all times · 794ad952
      Richard Levitte 提交于
      This logical names permits '#include <openssl/foo.h>' to work properly.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      794ad952
    • R
      Versioning engines default location: the VMS case · e8fb1295
      Richard Levitte 提交于
      OpenSSL engines are tied to the OpenSSL shared library versions,
      starting with OpenSSL 1.1.  We therefore need to install them in
      directories which have the shared library version in it's name, to
      easily allow multiple OpenSSL versions to be installed at the same
      time.
      
      For VMS, the change is a bit more involved, primarly because the top
      installation directory was already versioned, *as well as* some of the
      files inside.  That's a bit too much.  Version numbering in files is
      also a bit different on VMS.  The engines for shared library version
      1.1 will therefore end up in OSSL$INSTROOT:[ENGINES0101.'arch']
      
      ('arch' is the architecture we build for)
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      e8fb1295
  3. 02 7月, 2016 3 次提交
  4. 10 5月, 2016 1 次提交
  5. 30 3月, 2016 1 次提交
  6. 24 3月, 2016 1 次提交
  7. 22 2月, 2016 1 次提交
  8. 10 2月, 2016 1 次提交
    • R
      unified build scheme: add a "unified" template for VMS descrip.mms · e84193e4
      Richard Levitte 提交于
      As part of this, change util/mkdef.pl to stop adding libraries to
      depend on in its output.  mkdef.pl should ONLY output a symbol
      vector.
      
      Because symbol names can't be longer than 31 characters, we use the
      compiler to shorten those that are longer down to 23 characters plus
      an 8 character CRC.  To make sure users of our header files will pick
      up on that automatically, add the DEC C supported extra headers files
      __decc_include_prologue.h and __decc_include_epilogue.h.
      
      Furthermore, we add a config.com, so VMS people can configure just as
      comfortably as any Unix folks, thusly:
      
          @config
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      e84193e4