1. 18 2月, 2016 2 次提交
    • R
      RT4310: Fix varous no-XXX builds · 1288f26f
      Rich Salz 提交于
      When OPENSSL_NO_ASYNC is set, make ASYNC_{un,}block_pause() do nothing.
      This prevents md_rand.c from failing to build. Probably better to do it
      this way than to wrap every instance in an explicit #ifdef.
      
      A bunch of new socket code got added to a new file crypto/bio/b_addr.c.
      Make it all go away if OPENSSL_NO_SOCK is defined.
      
      Allow configuration with no-ripemd, no-ts, no-ui
      We use these for the UEFI build.
      
      Also remove the 'Really???' comment from no-err and no-locking. We use
      those too.
      
      We need to drop the crypto/engine directory from the build too, and also
      set OPENSSL_NO_ENGINE
      Signed-off-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      1288f26f
    • D
      remove redundant code · c7c46256
      Dr. Stephen Henson 提交于
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      c7c46256
  2. 17 2月, 2016 11 次提交
  3. 16 2月, 2016 10 次提交
  4. 15 2月, 2016 16 次提交
  5. 14 2月, 2016 1 次提交
    • R
      Declare DllMain internally · dda71111
      Richard Levitte 提交于
      DllMain is a symbol that needs to be global, but no one needs to know.
      However, some compilers will warn if there isn't a declaration before
      the function is defined.  Just add a declaration before the function
      definition.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      dda71111