aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-02-12 19:33:55 +0000
committerBen Laurie <ben@openssl.org>1999-02-12 19:33:55 +0000
commit062872855661698e3493c23e9e93f80efcdce89d (patch)
tree6fdca2aff89304593c44c655e3e4d3040751f2fd /Configure
parent65b8ca07a58201f3458def4163407a28b4484df8 (diff)
downloadopenssl-062872855661698e3493c23e9e93f80efcdce89d.zip
openssl-062872855661698e3493c23e9e93f80efcdce89d.tar.gz
openssl-062872855661698e3493c23e9e93f80efcdce89d.tar.bz2
Actually use BN when selected!
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index c89306b..e89515b 100755
--- a/Configure
+++ b/Configure
@@ -339,7 +339,7 @@ while (<IN>)
s/^CC=.*$/CC= $cc/;
s/^CFLAG=.*$/CFLAG= $cflags/;
s/^EX_LIBS=.*$/EX_LIBS= $lflags/;
- s/^BN_MULW=.*$/BN_MULW= $bn_obj/;
+ s/^BN_ASM=.*$/BN_ASM= $bn_obj/;
s/^DES_ENC=.*$/DES_ENC= $des_obj/;
s/^BF_ENC=.*$/BF_ENC= $bf_obj/;
s/^CAST_ENC=.*$/CAST_ENC= $cast_obj/;
@@ -356,7 +356,7 @@ close(OUT);
print "CC =$cc\n";
print "CFLAG =$cflags\n";
print "EX_LIBS =$lflags\n";
-print "BN_MULW =$bn_obj\n";
+print "BN_ASM =$bn_obj\n";
print "DES_ENC =$des_obj\n";
print "BF_ENC =$bf_obj\n";
print "CAST_ENC =$cast_obj\n";