1. 25 4月, 2016 1 次提交
  2. 20 4月, 2016 1 次提交
  3. 08 4月, 2016 1 次提交
    • A
      PPC assembly pack: remove branch hints. · 20b88bb1
      Andy Polyakov 提交于
      As it turns out branch hints grew as kind of a misconception. In
      addition their interpretation by GNU assembler is affected by
      assembler flags and can end up with opposite meaning on different
      processors. As we have to loose quite a lot on misinterprerations,
      especially on newer processors, we just omit them altogether.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      20b88bb1
  4. 21 3月, 2016 1 次提交
  5. 14 3月, 2016 1 次提交
  6. 13 3月, 2016 1 次提交
  7. 11 3月, 2016 4 次提交
  8. 09 3月, 2016 2 次提交
  9. 08 3月, 2016 1 次提交
  10. 02 3月, 2016 2 次提交
  11. 20 2月, 2016 1 次提交
    • R
      Always build library object files with shared library cflags · 45502bfe
      Richard Levitte 提交于
      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: NRich Salz <rsalz@openssl.org>
      45502bfe
  12. 19 2月, 2016 1 次提交
  13. 14 2月, 2016 1 次提交
  14. 10 2月, 2016 1 次提交
  15. 06 2月, 2016 1 次提交
  16. 01 2月, 2016 1 次提交
  17. 30 1月, 2016 1 次提交
  18. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  19. 20 1月, 2016 1 次提交
  20. 18 1月, 2016 1 次提交
  21. 13 1月, 2016 1 次提交
  22. 21 12月, 2015 1 次提交
  23. 14 12月, 2015 1 次提交
  24. 07 12月, 2015 1 次提交
  25. 23 11月, 2015 1 次提交
  26. 24 10月, 2015 1 次提交
  27. 27 9月, 2015 1 次提交
  28. 25 9月, 2015 2 次提交
  29. 11 8月, 2015 1 次提交
  30. 14 7月, 2015 1 次提交
  31. 23 5月, 2015 1 次提交
    • R
      Fix the update target and remove duplicate file updates · 0f539dc1
      Richard Levitte 提交于
      We had updates of certain header files in both Makefile.org and the
      Makefile in the directory the header file lived in.  This is error
      prone and also sometimes generates slightly different results (usually
      just a comment that differs) depending on which way the update was
      done.
      
      This removes the file update targets from the top level Makefile, adds
      an update: target in all Makefiles and has it depend on the depend: or
      local_depend: targets, whichever is appropriate, so we don't get a
      double run through the whole file tree.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      0f539dc1
  32. 14 5月, 2015 2 次提交
  33. 06 5月, 2015 1 次提交