diff options
author | Andy Polyakov <appro@openssl.org> | 2011-11-12 14:37:20 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2011-11-12 14:37:20 +0100 |
commit | 6a828b7a8e313cc3343d266e55fd26252be15737 (patch) | |
tree | b2f2ffc23574aecedd7b43be899ed5bd2700252c /crypto/rc4 | |
parent | e_aes.c: additional sanity check in aes_xts_cipher. (diff) | |
download | openssl-6a828b7a8e313cc3343d266e55fd26252be15737.tar.xz openssl-6a828b7a8e313cc3343d266e55fd26252be15737.zip |
rc4test.c: commit#21684 broke x86_64 shared Linux build. This is temporary
solution so that one can build rc4test...
Diffstat (limited to 'crypto/rc4')
-rw-r--r-- | crypto/rc4/rc4test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/rc4/rc4test.c b/crypto/rc4/rc4test.c index f3f8c92800..d689f70334 100644 --- a/crypto/rc4/rc4test.c +++ b/crypto/rc4/rc4test.c @@ -121,7 +121,9 @@ int main(int argc, char *argv[]) RC4_KEY key; unsigned char obuf[512]; +#if !defined(OPENSSL_PIC) OPENSSL_cpuid_setup(); +#endif for (i=0; i<6; i++) { |