Support -L options in VC++ link.

This commit is contained in:
Dr. Stephen Henson 2010-01-20 14:04:55 +00:00
parent a238d7d1eb
commit 9359fc5ff2
2 changed files with 6 additions and 1 deletions

View File

@ -20,7 +20,8 @@ int main(int argc, char **argv)
fprintf(stderr, "Usage: pkread p12file password opfile\n"); fprintf(stderr, "Usage: pkread p12file password opfile\n");
exit (1); exit (1);
} }
SSLeay_add_all_algorithms(); /*SSLeay_add_all_algorithms();*/
SSL_library_init();
ERR_load_crypto_strings(); ERR_load_crypto_strings();
if (!(fp = fopen(argv[1], "rb"))) { if (!(fp = fopen(argv[1], "rb"))) {
fprintf(stderr, "Error opening file %s\n", argv[1]); fprintf(stderr, "Error opening file %s\n", argv[1]);

View File

@ -13,6 +13,10 @@ $rm='del /Q';
$zlib_lib="zlib1.lib"; $zlib_lib="zlib1.lib";
# Santize -L options for ms link
$l_flags =~ s/-L("\[^"]+")/\/libpath:$1/g;
$l_flags =~ s/-L(\S+)/\/libpath:$1/g;
# C compiler stuff # C compiler stuff
$cc='cl'; $cc='cl';
if ($FLAVOR =~ /WIN64/) if ($FLAVOR =~ /WIN64/)