Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-21 20:58:51 +0400
committerDr. Stephen Henson <steve@openssl.org>2011-04-21 20:58:51 +0400
commite161120eff85a6e76b8b1add04827f30bfb75064 (patch)
tree04c08471e29b2802241681f48c0bbbbc8d72361b /util/mk1mf.pl
parent84ed90f88b0542b85a9aa50723c7787cb3bb4bd5 (diff)
Make fipscanisteronly auto detect work on WIN32.
Diffstat (limited to 'util/mk1mf.pl')
-rwxr-xr-xutil/mk1mf.pl10
1 files changed, 9 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index afad229ebc..eec5d41fba 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -58,7 +58,8 @@ my %mf_import = (
RMD160_ASM_OBJ => \$mf_rmd_asm,
WP_ASM_OBJ => \$mf_wp_asm,
CMLL_ENC => \$mf_cm_asm,
- MODES_ASM_OBJ => \$mf_modes_asm
+ MODES_ASM_OBJ => \$mf_modes_asm,
+ FIPSCANISTERONLY => \$mf_fipscanisteronly
);
open(IN,"<Makefile") || die "unable to open Makefile!\n";
@@ -74,6 +75,13 @@ close(IN);
$debug = 1 if $mf_platform =~ /^debug-/;
+if ($mf_fipscanisteronly eq "y") {
+ $fips = 1;
+ $fipscanisterbuild = 1;
+ $fipscanisteronly = 1;
+}
+
+
die "Makefile is not the toplevel Makefile!\n" if $ssl_version eq "";
$infile="MINFO";