check OPENSSL_NO_... before including header files that might be

disabled
This commit is contained in:
Bodo Möller 2001-11-22 11:13:10 +00:00
parent 1d4581c2dd
commit 4f94d1a8b1
1 changed files with 15 additions and 5 deletions

View File

@ -115,11 +115,21 @@
#include "apps.h"
#include <openssl/evp.h>
#include <openssl/crypto.h>
#include <openssl/md2.h>
#include <openssl/rc4.h>
#include <openssl/des_old.h>
#include <openssl/idea.h>
#include <openssl/blowfish.h>
#ifndef OPENSSL_NO_MD2
# include <openssl/md2.h>
#endif
#ifndef OPENSSL_NO_RC4
# include <openssl/rc4.h>
#endif
#ifndef OPENSSL_NO_DES
# include <openssl/des_old.h>
#endif
#ifndef OPENSSL_NO_IDEA
# include <openssl/idea.h>
#endif
#ifndef OPENSSL_NO_BF
# include <openssl/blowfish.h>
#endif
#undef PROG
#define PROG version_main