From: Matt Caswell Date: Wed, 16 Mar 2016 10:08:53 +0000 (+0000) Subject: Disable AFALG when cross-compiling X-Git-Tag: OpenSSL_1_1_0-pre4~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=68dc37c12666604f8beac6e59507f809b7fd772b;p=oweals%2Fopenssl.git Disable AFALG when cross-compiling We don't currently support cross-compiling of the afalg engine. However we were failing to explicitly mark it as disabled during Configure leading to a failed build. Reviewed-by: Richard Levitte --- diff --git a/Configure b/Configure index 3751067cd4..a4aac21334 100755 --- a/Configure +++ b/Configure @@ -1208,6 +1208,8 @@ unless ($disabled{afalgeng}) { } else { push @{$config{engdirs}}, "afalg"; } + } else { + $disabled{afalgeng} = "cross-compiling"; } } else { $disabled{afalgeng} = "not-linux";