Commit 9359fc5f authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Support -L options in VC++ link.

parent a238d7d1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -20,7 +20,8 @@ int main(int argc, char **argv)
		fprintf(stderr, "Usage: pkread p12file password opfile\n");
		exit (1);
	}
	SSLeay_add_all_algorithms();
	/*SSLeay_add_all_algorithms();*/
	SSL_library_init();
	ERR_load_crypto_strings();
	if (!(fp = fopen(argv[1], "rb"))) {
		fprintf(stderr, "Error opening file %s\n", argv[1]);
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,10 @@ $rm='del /Q';

$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
$cc='cl';
if ($FLAVOR =~ /WIN64/)