Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Copy the Configure perl script to ConfigureD
  • Edit this new file:
  • Find where $config{shlib_minor}  is set up (from the contents of opelsslv.h):

    Code Block
    languageperl
    ($config{shlib_major}, $config{shlib_minor})
        = ($config{shlib_version_number} =~ /^([0-9]+)\.([0-9\.]+)/);
  • Add a line to append the "D" to the minor version.  

    Code Block
    $config{shlib_minor} = $config{shlib_minor}."_0_5D";
Note

the .lib files do not carry any garnish, being called libssl.lib and libcrypto.lib in both the debug and release builds

...