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

we need /MD for fips builds

parent 6a6e0896
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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";