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.
This commit is contained in:
parent
5236efdbf5
commit
1750ebcba9
10
Configure
10
Configure
@ -319,10 +319,12 @@ if ($no_asm)
|
|||||||
$sha1_obj=$md5_obj=$rmd160_obj="";
|
$sha1_obj=$md5_obj=$rmd160_obj="";
|
||||||
}
|
}
|
||||||
|
|
||||||
my ($bn1)=split(/\s+/,$bn_obj);
|
#my ($bn1)=split(/\s+/,$bn_obj);
|
||||||
$bn1 = "" unless defined $bn1;
|
#$bn1 = "" unless defined $bn1;
|
||||||
$bn1=$bn_asm unless ($bn1 =~ /\.o$/);
|
#$bn1=$bn_asm unless ($bn1 =~ /\.o$/);
|
||||||
$bn_obj="$bn1";
|
#$bn_obj="$bn1";
|
||||||
|
|
||||||
|
$bn_obj = $bn_asm unless $bn_obj ne "";
|
||||||
|
|
||||||
$des_obj=$des_enc unless ($des_obj =~ /\.o$/);
|
$des_obj=$des_enc unless ($des_obj =~ /\.o$/);
|
||||||
$bf_obj=$bf_enc unless ($bf_obj =~ /\.o$/);
|
$bf_obj=$bf_enc unless ($bf_obj =~ /\.o$/);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user