Skip to content
  1. Oct 10, 2016
    • David Benjamin's avatar
      Remove trailing whitespace from some files. · 609b0852
      David Benjamin authored
      
      
      The prevailing style seems to not have trailing whitespace, but a few
      lines do. This is mostly in the perlasm files, but a few C files got
      them after the reformat. This is the result of:
      
        find . -name '*.pl' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.c' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.h' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
      
      Then bn_prime.h was excluded since this is a generated file.
      
      Note mkerr.pl has some changes in a heredoc for some help output, but
      other lines there lack trailing whitespace too.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
      609b0852
  2. Sep 02, 2016
  3. Aug 16, 2016
  4. Aug 05, 2016
  5. Jul 20, 2016
  6. Jul 16, 2016
  7. Jun 29, 2016
  8. Jun 20, 2016
  9. Jun 14, 2016
  10. Jun 01, 2016
  11. May 29, 2016
  12. May 28, 2016
  13. May 21, 2016
  14. May 17, 2016
  15. May 04, 2016
  16. Apr 25, 2016
  17. Apr 20, 2016
  18. Apr 07, 2016
  19. Mar 21, 2016
  20. Mar 20, 2016
  21. Mar 12, 2016
  22. Mar 11, 2016
  23. Mar 10, 2016
  24. Mar 09, 2016
  25. Mar 08, 2016
  26. Feb 20, 2016
    • Richard Levitte's avatar
      Always build library object files with shared library cflags · 45502bfe
      Richard Levitte authored
      
      
      This takes us away from the idea that we know exactly how our static
      libraries are going to get used.  Instead, we make them available to
      build shareable things with, be it other shared libraries or DSOs.
      
      On the other hand, we also have greater control of when the shared
      library cflags.  They will never be used with object files meant got
      binaries, such as apps/openssl or test/test*.
      
      With unified, we take this a bit further and prepare for having to
      deal with extra cflags specifically to be used with DSOs (dynamic
      engines), libraries and binaries (applications).
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      45502bfe
  27. Feb 18, 2016
  28. Feb 13, 2016
  29. Feb 10, 2016
  30. Feb 05, 2016
  31. Feb 01, 2016