Don't refuse to build afalgeng if cross-compiling or the host kernel is too old.
|
|
Upstream-Status: Submitted [hhttps://github.com/openssl/openssl/pull/7688]
|
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
|
diff --git a/Configure b/Configure
|
index 3baa8ce..9ef52ed 100755
|
--- a/Configure
|
+++ b/Configure
|
@@ -1550,20 +1550,7 @@ unless ($disabled{"crypto-mdebug-backtrace"})
|
unless ($disabled{afalgeng}) {
|
$config{afalgeng}="";
|
if (grep { $_ eq 'afalgeng' } @{$target{enable}}) {
|
- my $minver = 4*10000 + 1*100 + 0;
|
- if ($config{CROSS_COMPILE} eq "") {
|
- my $verstr = `uname -r`;
|
- my ($ma, $mi1, $mi2) = split("\\.", $verstr);
|
- ($mi2) = $mi2 =~ /(\d+)/;
|
- my $ver = $ma*10000 + $mi1*100 + $mi2;
|
- if ($ver < $minver) {
|
- disable('too-old-kernel', 'afalgeng');
|
- } else {
|
- push @{$config{engdirs}}, "afalg";
|
- }
|
- } else {
|
- disable('cross-compiling', 'afalgeng');
|
- }
|
+ push @{$config{engdirs}}, "afalg";
|
} else {
|
disable('not-linux', 'afalgeng');
|
}
|