Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-09-16 01:06:37 +0400
committerDr. Stephen Henson <steve@openssl.org>2011-09-16 01:06:37 +0400
commitb63698b70d27f23c6e60ec614cb7f4eb0b477cff (patch)
tree02a3388a646d32a704bb960ea4b720c81f0cc1c3 /Configure
parent8ca28da0a798d2289b71b750dad191066600c166 (diff)
Don't use vpaes in fips builds and exclude from restricted tarball.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/Configure b/Configure
index d8c93e93ed..29068b0b50 100755
--- a/Configure
+++ b/Configure
@@ -1552,6 +1552,7 @@ if ($aes_obj =~ /\.o$/)
# module implements AES_ctr32_encrypt...
$cflags.=" -DAES_CTR_ASM" if ($aes_obj =~ s/\s*aes_ctr\.o//);
$aes_obj =~ s/\s*(vpaes|aesni)\-x86\.o// if ($no_sse2);
+ $aes_obj =~ s/\s*vpaes-\w*\.o// if ($fipscanisterinternal eq "y");
$cflags.=" -DVPAES_ASM" if ($aes_obj =~ m/vpaes/);
}
else {