summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-10 18:30:13 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-10 18:30:13 +0000
commit4582626544dd7a20099c3d0a33b13717dab2a24f (patch)
treec6a8cb5641ba79d0738abe4e8d587448ada42188 /Configure
parentccc5784e37ef124a8404db578da67842ece0b47b (diff)
Auto detect no-ec2m add option to make no-ec2m tarball.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/Configure b/Configure
index 22a5793e24..88d87a5981 100755
--- a/Configure
+++ b/Configure
@@ -1717,6 +1717,10 @@ while (<IN>)
s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.\$(SHLIB_MAJOR).dylib .dylib/;
}
s/^SHARED_LDFLAGS=.*/SHARED_LDFLAGS=$shared_ldflag/;
+ if ($fipscanisteronly == 2 && exists $disabled{"ec2m"})
+ {
+ next if (/ec2_/ || /bn_gf2m/);
+ }
print OUT $_."\n";
}
close(IN);