From: Dr. Stephen Henson Date: Sun, 14 Feb 1999 22:47:21 +0000 (+0000) Subject: Patch to Configure script. For some reason the BN_ASM part was truncated to X-Git-Tag: OpenSSL_0_9_2b~148 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1750ebcba914d87602007447433529f871d088f5;p=oweals%2Fopenssl.git Patch to Configure script. For some reason the BN_ASM part was truncated to the first word which broke (at least) the Linux compile. Hopefully this wont break other platforms. --- diff --git a/Configure b/Configure index ef56bf75ea..27774a10b8 100755 --- a/Configure +++ b/Configure @@ -319,10 +319,12 @@ if ($no_asm) $sha1_obj=$md5_obj=$rmd160_obj=""; } -my ($bn1)=split(/\s+/,$bn_obj); -$bn1 = "" unless defined $bn1; -$bn1=$bn_asm unless ($bn1 =~ /\.o$/); -$bn_obj="$bn1"; +#my ($bn1)=split(/\s+/,$bn_obj); +#$bn1 = "" unless defined $bn1; +#$bn1=$bn_asm unless ($bn1 =~ /\.o$/); +#$bn_obj="$bn1"; + +$bn_obj = $bn_asm unless $bn_obj ne ""; $des_obj=$des_enc unless ($des_obj =~ /\.o$/); $bf_obj=$bf_enc unless ($bf_obj =~ /\.o$/);