diff options
author | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:34:28 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:34:28 +0100 |
commit | be9bec9bc77fdfe81cab9b6312ccdc4817e37938 (patch) | |
tree | 3c303e7490f4bba09e30c3de1a6c31eb77454456 /crypto/evp/p_open.c | |
parent | Make sure we get the definition of OPENSSL_NO_HMAC and OPENSSL_NO_SHA. (diff) | |
download | openssl-be9bec9bc77fdfe81cab9b6312ccdc4817e37938.tar.xz openssl-be9bec9bc77fdfe81cab9b6312ccdc4817e37938.zip |
Make sure we get the definition of OPENSSL_NO_RSA.
Diffstat (limited to 'crypto/evp/p_open.c')
-rw-r--r-- | crypto/evp/p_open.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/evp/p_open.c b/crypto/evp/p_open.c index 5a933d1cda..bc3940847d 100644 --- a/crypto/evp/p_open.c +++ b/crypto/evp/p_open.c @@ -56,9 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_RSA #include <stdio.h> #include "cryptlib.h" + +#ifndef OPENSSL_NO_RSA + #include <openssl/evp.h> #include <openssl/objects.h> #include <openssl/x509.h> |