Support -L options in VC++ link.
authorDr. Stephen Henson <steve@openssl.org>
Wed, 20 Jan 2010 14:04:44 +0000 (14:04 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 20 Jan 2010 14:04:44 +0000 (14:04 +0000)
util/pl/VC-32.pl

index ac1959acb361fbfefc5f273dd4a8906a2b331247..45013475dac15ffbd3a483adf8ce7234d2b3fa8a 100644 (file)
@@ -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/)