1. 08 6月, 2017 1 次提交
  2. 25 4月, 2017 1 次提交
  3. 23 4月, 2017 1 次提交
  4. 10 11月, 2016 1 次提交
  5. 04 11月, 2016 1 次提交
  6. 18 9月, 2016 1 次提交
  7. 16 9月, 2016 2 次提交
  8. 15 9月, 2016 1 次提交
  9. 02 8月, 2016 1 次提交
  10. 19 7月, 2016 2 次提交
  11. 15 7月, 2016 2 次提交
  12. 14 7月, 2016 1 次提交
  13. 07 7月, 2016 2 次提交
    • R
      Windows: make some vars in windows-makefile.tmpl reachable again · 3ffb060e
      Richard Levitte 提交于
      $openssldir and $enginesdir were mistakenly made unavailable to other
      perl fragments.  They are still needed in the definition of CFLAGS.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      3ffb060e
    • R
      Versioning engines default location: the Windows case · ee0a61cf
      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 windows, the default installation directory is changed from
      $PREFIX/lib/engines to $PREFIX/lib/engines-${major}_${minor}
      
      ($PREFIX is the directory given for the configuration option --prefix,
      and ${major} and ${minor} are the major and minor shared library
      version numbers)
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      ee0a61cf
  14. 06 7月, 2016 1 次提交
  15. 01 7月, 2016 1 次提交
  16. 28 6月, 2016 4 次提交
  17. 17 6月, 2016 1 次提交
    • R
      Harmonise the different build files · 4813ad2d
      Richard Levitte 提交于
      - User targets are now the same and generally do the same things
      - configdata.pm depends on exactly the same files on all platforms
      - VMS production of shared libraries is simplified
      - VMS automatic dependency files get the extension .D rather than .MMS
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      4813ad2d
  18. 15 6月, 2016 2 次提交
  19. 05 6月, 2016 1 次提交
    • R
      Add developer targets for each subdirectory we have something to build in · 0ad1d94d
      Richard Levitte 提交于
      Previous build scheme allowed building just the stuff in one
      subdirectory, like this:
      
          make -C crypto/aes
      
      Because the unified only has a top-level Makefile, this is not
      possible with it.  This change adds a replacement where each directory
      we have something to build in becomes a target in its own right,
      allowing building something like this:
      
          make crypto/aes
      
      The exception is the directory test, because we already have such a
      target.
      Reviewed-by: NStephen Henson <steve@openssl.org>
      0ad1d94d
  20. 04 6月, 2016 1 次提交
  21. 27 5月, 2016 1 次提交
  22. 25 5月, 2016 2 次提交
  23. 24 5月, 2016 2 次提交
  24. 23 5月, 2016 1 次提交
  25. 20 5月, 2016 1 次提交
  26. 16 5月, 2016 1 次提交
  27. 13 5月, 2016 1 次提交
  28. 11 5月, 2016 1 次提交
  29. 09 5月, 2016 1 次提交
  30. 26 4月, 2016 1 次提交
    • R
      Build system: add include directories and dependencies for generators · 8d34daf0
      Richard Levitte 提交于
      In the case of generating a file like this:
      
          GENERATE[foo.S]=mkfoo.pl arg1 arg2
      
      the 'mkfoo.pl' generator itself might need to include other files,
      such as perl modules within our source tree.  We can reuse already
      existing syntax for it, like this:
      
          INCLUDE[mkfoo.pl]=module/path
      
      or:
      
          DEPEND[mkfoo.pl]=modules/mymodule.pm
      
      This change implements the support for such constructs, and for the
      DEPEND statement, for any value that indicates a perl module (.pm
      file), it will automatically infer an INCLUDE statement for its
      directory, just like it does for C header files, so you won't have do
      write this:
      
          DEPEND[mkfoo.pl]=modules/mymodule.pm
          INCLUDE[mkfoo.pl]=modules
      Reviewed-by: NEmilia Käsper <emilia@openssl.org>
      8d34daf0