set OPENSSL_FIPSSYMS for restricted buils and auto detect no-ec2m
This commit is contained in:
parent
8742ae6e19
commit
ccc5784e37
32
Configure
32
Configure
@ -693,17 +693,6 @@ my $default_ranlib;
|
|||||||
my $perl;
|
my $perl;
|
||||||
my $fips=0;
|
my $fips=0;
|
||||||
|
|
||||||
# If ssl directory missing assume truncated FIPS tarball
|
|
||||||
if (! -d ssl)
|
|
||||||
{
|
|
||||||
print STDERR "Auto Configuring fipsonly\n";
|
|
||||||
$fips = 1;
|
|
||||||
$nofipscanistercheck = 1;
|
|
||||||
$fipslibdir="";
|
|
||||||
$fipscanisterinternal="y";
|
|
||||||
$fipscanisteronly = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
# All of the following is disabled by default (RC5 was enabled before 0.9.8):
|
# All of the following is disabled by default (RC5 was enabled before 0.9.8):
|
||||||
|
|
||||||
my %disabled = ( # "what" => "comment" [or special keyword "experimental"]
|
my %disabled = ( # "what" => "comment" [or special keyword "experimental"]
|
||||||
@ -720,6 +709,21 @@ my %disabled = ( # "what" => "comment" [or special keyword "experimental
|
|||||||
);
|
);
|
||||||
my @experimental = ();
|
my @experimental = ();
|
||||||
|
|
||||||
|
# If ssl directory missing assume truncated FIPS tarball
|
||||||
|
if (! -d ssl)
|
||||||
|
{
|
||||||
|
print STDERR "Auto Configuring fipsonly\n";
|
||||||
|
$fips = 1;
|
||||||
|
$nofipscanistercheck = 1;
|
||||||
|
$fipslibdir="";
|
||||||
|
$fipscanisterinternal="y";
|
||||||
|
$fipscanisteronly = 2;
|
||||||
|
if (! -f "crypto/bn/bn_gf2m.c" )
|
||||||
|
{
|
||||||
|
$disabled{ec2m} = "forced";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# This is what $depflags will look like with the above defaults
|
# This is what $depflags will look like with the above defaults
|
||||||
# (we need this to see if we should advise the user to run "make depend"):
|
# (we need this to see if we should advise the user to run "make depend"):
|
||||||
my $default_depflags = " -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_STORE";
|
my $default_depflags = " -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_STORE";
|
||||||
@ -1117,6 +1121,12 @@ foreach (sort (keys %disabled))
|
|||||||
}
|
}
|
||||||
|
|
||||||
my $exp_cflags = "";
|
my $exp_cflags = "";
|
||||||
|
|
||||||
|
if ($fipscanisteronly == 2)
|
||||||
|
{
|
||||||
|
$exp_cflags .= " -DOPENSSL_FIPSSYMS";
|
||||||
|
}
|
||||||
|
|
||||||
foreach (sort @experimental)
|
foreach (sort @experimental)
|
||||||
{
|
{
|
||||||
my $ALGO;
|
my $ALGO;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user