1. 18 2月, 2016 3 次提交
  2. 17 2月, 2016 1 次提交
  3. 16 2月, 2016 3 次提交
  4. 15 2月, 2016 1 次提交
  5. 14 2月, 2016 1 次提交
  6. 13 2月, 2016 3 次提交
  7. 12 2月, 2016 3 次提交
  8. 11 2月, 2016 5 次提交
  9. 10 2月, 2016 6 次提交
  10. 09 2月, 2016 5 次提交
    • M
      Add an OPENSSL_NO_AUTOERRINIT option · 498abff0
      Matt Caswell 提交于
      This option disables automatic loading of the crypto/ssl error strings in
      order to keep statically linked executable file size down
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      498abff0
    • M
      Provide framework for auto initialise/deinitialise of the library · b184e3ef
      Matt Caswell 提交于
      This commit provides the basis and core code for an auto initialisation
      and deinitialisation framework for libcrypto and libssl. The intention is
      to remove the need (in many circumstances) to call explicit initialise and
      deinitialise functions. Explicit initialisation will still be an option,
      and if non-default initialisation is needed then it will be required.
      Similarly for de-initialisation (although this will be a lot easier since
      it will bring all de-initialisation into a single function).
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b184e3ef
    • R
      Use rel2abs() on VMS, rather than realpath() · ec182ef0
      Richard Levitte 提交于
      It seems realpath() is quite buggy on VMS, or will at least give quite
      surprising results.  On the other hand, realpath() is the better on
      Unix to clean out clutter like foo/../bar on Unix.
      
      So we make out own function to get the absolute directory for a given
      input, and use rel2abs() or realpath() depending on the platform
      Configure runs on.
      
      Issue reported by Steven M. Schweda <sms@antinode.info>
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      ec182ef0
    • R
      unified build scheme: add and document the "unified" driving engine · ddf1847d
      Richard Levitte 提交于
      common.tmpl will be used together with the template build file, and is
      the engine that connects the information gathered from all the
      build.info files with making the build file itself.
      
      This file expects there to be a template section in the build file
      template that defines a number perl functions designed to return
      strings with appropriate lines for the build system at hand.  The
      exact functions, what they can expect as arguments and what output
      they're expected to produce is documented in Configurations/README.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      ddf1847d
    • R
      Use File::Path::mkpath rather than File::Path::make_path · dca99383
      Richard Levitte 提交于
      File::Path::make_path didn't show up before File::Path 2.06 / perl v5.10.1.
      Because we're trying to stay compatible with perl v5.10.0 and up,
      it's better to use the legacy interface.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      dca99383
  11. 07 2月, 2016 1 次提交
    • R
      Enhance and clear the support of linker flags · c86ddbe6
      Richard Levitte 提交于
      Some time ago, we had a ex_libs configuration setting that could be
      divided into lflags and ex_libs.  These got divided in two settings,
      lflags and ex_libs, and the former was interpreted to be general
      linking flags.
      
      Unfortunately, that conclusion wasn't entirely accurate.  Most of
      those linking were meant to end up in a very precise position on the
      linking command line, just before the spec of libraries the linking
      depends on.
      
      Back to the drawing board, we're diving things further, now having
      lflags, which are linking flags that aren't depending on command line
      position, plib_lflags, which are linking flags that should show up just
      before the spec of libraries to depend on, and finally ex_libs, which
      is the spec of extra libraries to depend on.
      
      Also, documentation is changed in Configurations/README.  This was
      previously forgotten.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      c86ddbe6
  12. 05 2月, 2016 1 次提交
  13. 04 2月, 2016 2 次提交
  14. 03 2月, 2016 1 次提交
  15. 01 2月, 2016 4 次提交