diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2011-06-16 16:27:36 +0000 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2011-06-16 16:27:36 +0000 |
commit | b2348488797e4ac5ddd301db0f334e723069121a (patch) | |
tree | 8514b971b560621c62db31538b0e2e2d87161c67 /Configure | |
parent | fdb65c836cfc0c36f0a491a8fe4255cd18a7bc3f (diff) | |
download | openssl-new-b2348488797e4ac5ddd301db0f334e723069121a.tar.gz |
Option "fipscheck" which checks to see if FIPS is autodetected in
a build. Use this for WIN32 builds.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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; |