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:
358c372
)
Configure: make no-whirlpool work.
author
Andy Polyakov
<appro@openssl.org>
Sat, 3 Mar 2012 13:17:47 +0000
(13:17 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Sat, 3 Mar 2012 13:17:47 +0000
(13:17 +0000)
Configure
patch
|
blob
|
history
diff --git
a/Configure
b/Configure
index f6ca42c82a4ff56a7c0b4638d45d2eb26b6f8d39..5900e18313c3047a3ee869e330df09825c5ac7f8 100755
(executable)
--- a/
Configure
+++ b/
Configure
@@
-1125,6
+1125,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";
@@
-1576,7
+1578,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";
}