summaryrefslogtreecommitdiffstats
path: root/util/pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-02-24 18:21:16 +0000
committerDr. Stephen Henson <steve@openssl.org>2014-02-24 18:21:35 +0000
commitab03ead03547e0d89e0c06f5f48d8f8c12f4d7e4 (patch)
tree301079dc4500be2f9751f34485aa0a271df4ac5b /util/pl
parent6a6e08960ed62b6a8f05205c19bfff05b7e34fea (diff)
we need /MD for fips builds
Diffstat (limited to 'util/pl')
-rw-r--r--util/pl/VC-32.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl
index 21f8a9beb7..1c3f158921 100644
--- a/util/pl/VC-32.pl
+++ b/util/pl/VC-32.pl
@@ -45,7 +45,7 @@ if ($FLAVOR =~ /WIN64/)
# considered safe to ignore.
#
$base_cflags= " $mf_cflag";
- my $f = $shlib?' /MD':' /MT';
+ my $f = $shlib || $fips ?' /MD':' /MT';
$opt_cflags=$f.' /Ox';
$dbg_cflags=$f.'d /Od -DDEBUG -D_DEBUG';
$lflags="/nologo /subsystem:console /opt:ref";