1. 03 8月, 2015 2 次提交
  2. 27 7月, 2015 1 次提交
  3. 09 7月, 2015 1 次提交
  4. 08 7月, 2015 1 次提交
  5. 24 6月, 2015 1 次提交
  6. 10 6月, 2015 1 次提交
  7. 29 5月, 2015 1 次提交
  8. 26 5月, 2015 1 次提交
  9. 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
  10. 20 5月, 2015 1 次提交
  11. 16 5月, 2015 1 次提交
  12. 14 5月, 2015 2 次提交
  13. 13 5月, 2015 2 次提交
  14. 05 5月, 2015 1 次提交
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50
  15. 22 4月, 2015 1 次提交
  16. 09 4月, 2015 2 次提交
  17. 02 4月, 2015 1 次提交
  18. 01 4月, 2015 1 次提交
  19. 29 3月, 2015 1 次提交
  20. 24 3月, 2015 1 次提交
  21. 26 2月, 2015 1 次提交
  22. 07 2月, 2015 1 次提交
  23. 05 2月, 2015 1 次提交
  24. 03 2月, 2015 1 次提交
  25. 30 1月, 2015 1 次提交
  26. 12 1月, 2015 1 次提交
    • R
      RT478: Add uninstall make target · 9405a9a2
      Rich Salz 提交于
      Add INSTALLDIRS variable, list of directories where things get
      installed. Change install_html_docs to use perl mkdir-p script.
      
      Add uninstall, uninstall_sw, uninstall_docs, uninstall_html_docs
      to Makefile.org.  The actions of these targets were figured out
      by "inverting" the install target.
      
      Recurse into subdirs to do uninstall as needed.  Added uninstall
      targets whose actions were similarly figured out by "inverting"
      the install target.
      
      Also remove some 'space before tab' complaints in Makefile.org
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      9405a9a2
  27. 19 12月, 2014 1 次提交
  28. 16 12月, 2014 1 次提交
  29. 12 12月, 2014 1 次提交
  30. 09 12月, 2014 1 次提交
  31. 08 12月, 2014 2 次提交
  32. 04 12月, 2014 1 次提交
  33. 24 9月, 2014 1 次提交
  34. 05 9月, 2014 1 次提交
  35. 28 8月, 2014 1 次提交