diff options
author | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:29:38 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:29:38 +0100 |
commit | 9e9e8cb6a8c26210f65823e2b28f7e4eb47817f5 (patch) | |
tree | d36a73dee52364f319f5c828f8cc17010a8185d7 /crypto/evp | |
parent | Make sure we get the definition of OPENSSL_NO_RC5. (diff) | |
download | openssl-9e9e8cb6a8c26210f65823e2b28f7e4eb47817f5.tar.xz openssl-9e9e8cb6a8c26210f65823e2b28f7e4eb47817f5.zip |
Make sure we get the definition of OPENSSL_NO_DES.
Diffstat (limited to 'crypto/evp')
-rw-r--r-- | crypto/evp/e_des.c | 2 | ||||
-rw-r--r-- | crypto/evp/e_des3.c | 2 | ||||
-rw-r--r-- | crypto/evp/e_xcbc_d.c | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/crypto/evp/e_des.c b/crypto/evp/e_des.c index 105266a4b3..92f6ebc343 100644 --- a/crypto/evp/e_des.c +++ b/crypto/evp/e_des.c @@ -56,9 +56,9 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_DES #include <stdio.h> #include "cryptlib.h" +#ifndef OPENSSL_NO_DES #include <openssl/evp.h> #include <openssl/objects.h> #include "evp_locl.h" diff --git a/crypto/evp/e_des3.c b/crypto/evp/e_des3.c index 077860e7b6..e036d07ba9 100644 --- a/crypto/evp/e_des3.c +++ b/crypto/evp/e_des3.c @@ -56,9 +56,9 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_DES #include <stdio.h> #include "cryptlib.h" +#ifndef OPENSSL_NO_DES #include <openssl/evp.h> #include <openssl/objects.h> #include "evp_locl.h" diff --git a/crypto/evp/e_xcbc_d.c b/crypto/evp/e_xcbc_d.c index a6f849e93d..cb82815a82 100644 --- a/crypto/evp/e_xcbc_d.c +++ b/crypto/evp/e_xcbc_d.c @@ -56,9 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_DES #include <stdio.h> #include "cryptlib.h" + +#ifndef OPENSSL_NO_DES + #include <openssl/evp.h> #include <openssl/objects.h> #include <openssl/des.h> |