From: Andy Polyakov Date: Mon, 27 Aug 2007 20:02:23 +0000 (+0000) Subject: Last change inadvertently disabled x86[_64] assembler in Windows build. X-Git-Tag: FIPS_098_TEST_5~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b27278d0cfab4809f3c3e8c95d2e2344e4b96f57;p=oweals%2Fopenssl.git Last change inadvertently disabled x86[_64] assembler in Windows build. --- diff --git a/Configure b/Configure index 6542996334..6717105ecb 100755 --- a/Configure +++ b/Configure @@ -936,7 +936,9 @@ my $arflags = $fields[$idx_arflags]; if ($fips) { delete $disabled{"shared"} if ($disabled{"shared"} eq "default"); - $disabled{"asm"}="forced" if ("$cpuid_obj:$bn_obj:$aes_obj:$des_obj:$sha1_obj" eq "::::"); + $disabled{"asm"}="forced" + if ($target !~ "VC\-.*" && + "$cpuid_obj:$bn_obj:$aes_obj:$des_obj:$sha1_obj" eq "::::"); }