1. 26 2月, 2016 1 次提交
  2. 25 2月, 2016 4 次提交
  3. 24 2月, 2016 4 次提交
  4. 23 2月, 2016 4 次提交
  5. 20 2月, 2016 4 次提交
  6. 19 2月, 2016 6 次提交
    • E
      getaddrinfo: zero the hints structure · f0496ad7
      Emilia Kasper 提交于
      This silences the memory sanitizer. All fields were already correctly
      initialized but the struct padding wasn't, causing an uninitialized read
      warning.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      f0496ad7
    • R
      Big rename fest of engine DSO names, from libFOO.so to FOO.so · 9ee0ed3d
      Richard Levitte 提交于
      The engine DSOs were named as if they were shared libraries, and could
      end up having all sorts of fancy names:
      
        Cygwin: cygFOO.dll
        Mingw:  FOOeay32.dll
        Unix:   libFOO.so / libFOO.sl / libFOO.dylib / ...
      
      This may be confusing, since they look like libraries one should link
      with at link time, when they're just DSOs.
      
      It's therefore time to rename them, and do it consistently on all
      platforms:
      
        Cygwin & Mingw: FOO.dll
        Unix:           FOO.{so,sl,dylib,...}
      
      Interestingly enough, the MSVC and VMS builds always did it this way.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      9ee0ed3d
    • R
      Let Configure figure out the diverse shared library and DSO extensions · e987f9f2
      Richard Levitte 提交于
      Then it can pass around the information where it belongs.  The
      Makefile templates pick it up along with other target data, the
      DSO module gets to pick up the information through
      crypto/include/internal/dso_conf.h
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      e987f9f2
    • 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
    • R
      Remove all special make depend flags, as well as OPENSSL_DOING_MAKEDEPEND · ce192ebe
      Richard Levitte 提交于
      All those flags existed because we had all the dependencies versioned
      in the repository, and wanted to have it be consistent, no matter what
      the local configuration was.  Now that the dependencies are gone from
      the versioned Makefile.ins, it makes much more sense to use the exact
      same flags as when compiling the object files.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      ce192ebe
    • R
      Remove outdated DEBUG flags. · d63a5e5e
      Rich Salz 提交于
      Add -DBIO_DEBUG to --strict-warnings.
      Remove comments about outdated debugging ifdef guards.
      Remove md_rand ifdef guarding an assert; it doesn't seem used.
      Remove the conf guards in conf_api since we use OPENSSL_assert, not assert.
      For pkcs12 stuff put OPENSSL_ in front of the macro name.
      Merge TLS_DEBUG into SSL_DEBUG.
      Various things just turned on/off asserts, mainly for checking non-NULL
      arguments, which is now removed: camellia, bn_ctx, crypto/modes.
      Remove some old debug code, that basically just printed things to stderr:
        DEBUG_PRINT_UNKNOWN_CIPHERSUITES, DEBUG_ZLIB, OPENSSL_RI_DEBUG,
        RL_DEBUG, RSA_DEBUG, SCRYPT_DEBUG.
      Remove OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      d63a5e5e
  7. 18 2月, 2016 7 次提交
  8. 17 2月, 2016 7 次提交
  9. 15 2月, 2016 3 次提交