1. 01 2月, 2018 2 次提交
  2. 29 6月, 2017 1 次提交
  3. 16 6月, 2017 1 次提交
  4. 02 7月, 2016 1 次提交
  5. 25 5月, 2016 1 次提交
  6. 24 5月, 2016 1 次提交
  7. 14 4月, 2016 1 次提交
    • M
      Fix no-stdio and no-autoalginit · d90a6beb
      Matt Caswell 提交于
      no-stdio does not work with the apps. Since the tests also need the apps
      it doesn't support that either. Therefore we disable building of both.
      
      no-autoalginit is not compatible with the apps because it requires explicit
      loading of the algorithms, and the apps don't do that. Therefore we disable
      building the apps for this option. Similarly the tests depend on the apps
      so we also disable the tests. Finally the whole point about no-autoalginit
      is to avoid excessive executable sizes when doing static linking. Therefore
      we disable "shared" if this option is selected.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      d90a6beb
  8. 01 4月, 2016 1 次提交
    • R
      Make the use of perl more consistent · 5902821d
      Richard Levitte 提交于
      - In Configure, register the perl interpreter used to run Configure,
        so that's the one being used throughout instead of something else
        that Configure happens to find.  This is helpful for using a perl
        version that's not necessarely first in $PATH:
      
          /opt/perl/5.22.1/bin/perl ./Configure
      
      - Make apps/tsget a generated file, just like apps/CA.pl, so the
        perl interpreter registered by Configure becomes the hashbang path
        instead of a hardcoded /usr/bin/perl
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      5902821d
  9. 20 3月, 2016 1 次提交
  10. 19 3月, 2016 2 次提交
  11. 19 2月, 2016 1 次提交
    • R
      Rethink the uplink / applink story · 3a55c92b
      Richard Levitte 提交于
      Adding uplink and applink to some builds was done by "magic", the
      configuration for "mingw" only had a macro definition, the Configure
      would react to its presence by adding the uplink source files to
      cpuid_asm_src, and crypto/build.info inherited dance to get it
      compiled, and Makefile.shared made sure applink.o would be
      appropriately linked in.  That was a lot under the hood.
      
      To replace this, we create a few template configurations in
      Configurations/00-base-templates.conf, inherit one of them in the
      "mingw" configuration, the rest is just about refering to the
      $target{apps_aux_src} / $target{apps_obj} in the right places.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      3a55c92b
  12. 12 2月, 2016 1 次提交
    • R
      Generate progs.h from a bunch of files instead of internal knowledge · fb3e2a88
      Richard Levitte 提交于
      apps/progs.pl counted on the caller to provide the exact command
      files.  The unified build doesn't have that knowledge, and the easier
      and more flexible thing to do is to feed it all the apps/*.c files and
      let it figure out the command names by looking inside (looking for
      /int ([a-z0-9][a-z0-9_]*)_main\(int argc,/).
      
      Also, add it to the generate command, since it's a versioned file.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      fb3e2a88
  13. 10 2月, 2016 3 次提交
  14. 01 2月, 2016 1 次提交