1. 29 1月, 2016 6 次提交
  2. 28 1月, 2016 7 次提交
  3. 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
  4. 26 1月, 2016 1 次提交
    • R
      Generate warning text · 9ab6fc59
      Richard Levitte 提交于
      Now that we're using templates, we should warn people not to edit the
      resulting file.  We do it through util/dofile.pl, which is enhanced
      with an option to tell what file it was called from.  We also change
      the calls so the template files are on the command line instead of
      being redirected through standard input.  That way, we can display
      something like this (example taken from include/openssl/opensslconf.h):
      
          /* WARNING: do not edit! */
          /* Generated by Configure from include/openssl/opensslconf.h.in */
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      9ab6fc59
  5. 25 1月, 2016 2 次提交
  6. 24 1月, 2016 4 次提交
  7. 23 1月, 2016 1 次提交
    • R
      Refactor file writing - rewrite crypto/opensslconf.h.in as template · 7d130f68
      Richard Levitte 提交于
      The turn has come to have crypto/opensslconf.h.in get run through
      util/dofile.pl.  The consequence is that a large number of variables
      get moved to the %config table.
      
      Also, the string variables $openssl_*, which were populated with cpp
      lines, all being of the form "#define SOMETHING", were converted into
      ARRAY refs in %config values, containing just the list of macros to be
      defined.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      7d130f68
  8. 21 1月, 2016 5 次提交
  9. 20 1月, 2016 4 次提交
  10. 19 1月, 2016 3 次提交
  11. 18 1月, 2016 3 次提交
  12. 17 1月, 2016 3 次提交