1. 09 3月, 2018 1 次提交
    • R
      Make "make variables" config attributes for overridable flags · abe256e7
      Richard Levitte 提交于
      With the support of "make variables" comes the possibility for the
      user to override them.  However, we need to make a difference between
      defaults that we use (and that should be overridable by the user) and
      flags that are crucial for building OpenSSL (should not be
      overridable).
      
      Typically, overridable flags are those setting optimization levels,
      warnings levels, that kind of thing, while non-overridable flags are,
      for example, macros that indicate aspects of how the config target
      should be treated, such as L_ENDIAN and B_ENDIAN.
      
      We do that differentiation by allowing upper case attributes in the
      config targets, named exactly like the "make variables" we support,
      and reserving the lower case attributes for non-overridable project
      flags.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/5534)
      abe256e7
  2. 14 9月, 2016 1 次提交
  3. 04 7月, 2016 1 次提交
  4. 03 6月, 2016 1 次提交
  5. 01 6月, 2016 1 次提交
  6. 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
  7. 23 1月, 2016 1 次提交
    • R
      Refactor file writing - introduce template driven file writing · 291e94df
      Richard Levitte 提交于
      apps/CA.pl and tools/c_rehash are built from template files.  So far,
      this was done by Configure, which created its own problems as it
      forced everyone to reconfigure just because one of the template files
      had changed.
      Instead, have those files created as part of the normal build in apps/
      and in tools/.
      
      Furthermore, this prepares for a future where Configure may produce
      entirely other build files than Makefile, and the latter can't be
      guaranteed to be the holder of all information for other scripts.
      Instead, configdata.pm (described below) becomes the center of
      configuration information.
      
      This introduces a few new things:
      
      %config         a hash table to hold all kinds of configuration data
                      that can be used by any other script.
      configdata.pm   a perl module that Configure writes.  It currently
                      holds the hash tables %config and %target.
      util/dofile.pl  a script that takes a template on STDIN and outputs
                      the result after applying configuration data on it.
                      It's supposed to be called like this:
      
                              perl -I$(TOP) -Mconfigdata < template > result
      
                      or
      
                              perl -I$(TOP) -Mconfigdata templ1 templ2 ... > result
      
                      Note: util/dofile.pl requires Text::Template.
      
      As part of this changed, remove a number of variables that are really
      just copies of entries in %target, and use %target directly.  The
      exceptions are $target{cflags} and $target{lflags}, they do get copied
      to $cflags and $lflags.  The reason for this is that those variable
      potentially go through a lot of changes and would rather deserve a
      place in %config.  That, however, is for another commit.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      291e94df
  8. 11 9月, 2015 1 次提交
  9. 09 9月, 2015 1 次提交
  10. 02 6月, 2015 1 次提交
  11. 12 9月, 2014 1 次提交
  12. 08 9月, 2014 2 次提交
  13. 31 8月, 2014 1 次提交
  14. 15 4月, 2010 1 次提交
    • D
      PR: 2234 · 45078e6c
      Dr. Stephen Henson 提交于
      Submitted By: Matthias Andree <matthias.andree@gmx.de>
      
      Use correct path to openssl utility in c_rehash script.
      45078e6c
  15. 24 4月, 2009 1 次提交
  16. 26 10月, 2006 1 次提交
  17. 22 10月, 2006 1 次提交
  18. 12 10月, 2002 2 次提交
  19. 11 10月, 2002 2 次提交
  20. 14 6月, 2002 1 次提交
  21. 17 8月, 2001 1 次提交
  22. 04 4月, 2001 1 次提交
  23. 18 5月, 2000 1 次提交
  24. 13 5月, 1999 1 次提交
  25. 07 5月, 1999 2 次提交
  26. 09 3月, 1999 1 次提交
  27. 02 1月, 1999 1 次提交
  28. 22 12月, 1998 1 次提交
  29. 21 12月, 1998 3 次提交