projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
784e208
)
Configure: make no-whirlpool work [from HEAD].
author
Andy Polyakov
<appro@openssl.org>
Sat, 3 Mar 2012 13:18:06 +0000
(13:18 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Sat, 3 Mar 2012 13:18:06 +0000
(13:18 +0000)
Configure
patch
|
blob
|
history
diff --git
a/Configure
b/Configure
index adbfa8f3392d611cba17906f988ef7a145b7dca7..43a90c0152536b78be96554a0b6897e7127afcd7 100755
(executable)
--- a/
Configure
+++ b/
Configure
@@
-1095,6
+1095,8
@@
foreach (sort (keys %disabled))
else
{
push @skip, $algo;
+ # fix-up crypto/directory name(s)
+ @skip[$#skip]="whrlpool" if $algo eq "whirlpool";
print " (skip dir)";
$depflags .= " -DOPENSSL_NO_$ALGO";
@@
-1513,7
+1515,7
@@
else {
$aes_obj=$aes_enc;
}
$wp_obj="" if ($wp_obj =~ /mmx/ && $processor eq "386");
-if ($wp_obj =~ /\.o$/)
+if ($wp_obj =~ /\.o$/
&& !$disabled{"whirlpool"}
)
{
$cflags.=" -DWHIRLPOOL_ASM";
}