Option "fipscheck" which checks to see if FIPS is autodetected in
a build. Use this for WIN32 builds.
This commit is contained in:
parent
fdb65c836c
commit
b234848879
2 changed files with 11 additions and 1 deletions
10
Configure
10
Configure
|
@ -870,6 +870,16 @@ PROCESS_ARGS:
|
|||
$fips = 1;
|
||||
$nofipscanistercheck = 1;
|
||||
}
|
||||
elsif (/^fipscheck$/)
|
||||
{
|
||||
if ($fipscanisteronly != 2)
|
||||
{
|
||||
print STDERR <<"EOF";
|
||||
ERROR: FIPS not autodetected. Not running from restricted tarball??
|
||||
EOF
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
elsif (/^fipscanisteronly$/)
|
||||
{
|
||||
$fips = 1;
|
||||
|
|
|
@ -43,7 +43,7 @@ SET ASM=nasm
|
|||
|
||||
:compile
|
||||
|
||||
perl Configure %TARGET% fipscanisteronly
|
||||
perl Configure %TARGET% fipscheck
|
||||
pause
|
||||
|
||||
echo on
|
||||
|
|
Loading…
Reference in a new issue