Skip to content
  1. Nov 10, 2017
  2. Nov 08, 2017
  3. Oct 31, 2017
  4. Oct 13, 2017
  5. Oct 09, 2017
  6. Oct 04, 2017
  7. Sep 21, 2017
  8. Aug 25, 2017
  9. Aug 18, 2017
  10. Aug 17, 2017
  11. Aug 16, 2017
  12. Aug 15, 2017
  13. Jul 26, 2017
    • Richard Levitte's avatar
      Simplify the handling of shared library version numbers · d4453024
      Richard Levitte authored
      
      
      $(SHLIB_MAJOR).$(SHLIB_MINOR) is really a synonym for
      $(SHLIB_VERSION_NUMBER), and is therefore an added complexity,
      so better to use $(SHLIB_VERSION_NUMBER) directly.  SHLIB_MAJOR and
      SHLIB_MINOR are now unused, but are kept around purely as information
      in case someone relies on their existence.
      
      At the same time, add support for custom shared library extensions
      with the three new Makefile variables SHLIB_EXT, SHLIB_EXT_SIMPLE and
      SHLIB_EXT_IMPORT.  By default, they hold the variants of shared
      library extensions we support.  On mingw and cygwin, SHLIB_EXT_IMPORT
      is defined; on all other Unix platforms, it's empty.
      
      An example to get shared libraries with a slightly different SOVER name:
      
          $ make SHLIB_EXT='.$(SHLIB_VERSION_NUMBER).so'
      
      Fixes #3902
      
      Reviewed-by: default avatarAndy Polyakov <appro@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3964)
      d4453024
  14. Jul 24, 2017
    • Richard Levitte's avatar
      Simplify Makefile.shared · d07abe13
      Richard Levitte authored
      
      
      Makefile.shared was designed to figure out static library names,
      shared library names, library version compatibility, import library
      names and the like on its own.  This was a design for pre-1.1.0
      OpenSSL because the main Makefile didn't have all that knowledge.
      
      With 1.1.0, the situation isn't the same, a lot more knowledge is
      included in the main Makefile, and while Makefile.shared did things
      right most of the time (there are some corner cases, such as the
      choice of .sl or .so as DSO extension on some HPUX versions), there's
      still an inherent fragility when one has to keep an eye on
      Makefile.shared to make sure it produces what the main Makefile
      produces.
      
      This change simplifies Makefile.shared by removing all its
      "intelligence" and have it depend entirely on the input from the main
      Makefile instead.  That way, all the naming is driven from
      configuration data.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3983)
      d07abe13
  15. Jul 07, 2017
  16. Jul 01, 2017
  17. Jun 30, 2017
  18. Jun 28, 2017
  19. Jun 21, 2017
  20. Jun 16, 2017
  21. Jun 15, 2017
  22. Jun 08, 2017
  23. Jun 07, 2017
    • Rich Salz's avatar
      make error tables const and separate header file · 52df25cf
      Rich Salz authored
      
      
      Run perltidy on util/mkerr
      Change some mkerr flags, write some doc comments
      Make generated tables "const" when genearting lib-internal ones.
      Add "state" file for mkerr
      Renerate error tables and headers
      Rationalize declaration of ERR_load_XXX_strings
      Fix out-of-tree build
      Add -static; sort flags/vars for options.
      Also tweak code output
      Moved engines/afalg to engines (from master)
      Use -static flag
      Standard engine #include's of errors
      Don't linewrap err string tables unless necessary
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3392)
      52df25cf
  24. Apr 24, 2017
  25. Apr 23, 2017
  26. Apr 18, 2017
  27. Apr 04, 2017
  28. Mar 15, 2017
  29. Mar 14, 2017
  30. Mar 11, 2017
  31. Mar 06, 2017