mirror of
https://github.com/openssl/openssl.git
synced 2024-11-29 21:14:01 +08:00
check OPENSSL_NO_... before including header files that might be
disabled
This commit is contained in:
parent
1d4581c2dd
commit
4f94d1a8b1
@ -115,11 +115,21 @@
|
|||||||
#include "apps.h"
|
#include "apps.h"
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
#include <openssl/crypto.h>
|
#include <openssl/crypto.h>
|
||||||
#include <openssl/md2.h>
|
#ifndef OPENSSL_NO_MD2
|
||||||
#include <openssl/rc4.h>
|
# include <openssl/md2.h>
|
||||||
#include <openssl/des_old.h>
|
#endif
|
||||||
#include <openssl/idea.h>
|
#ifndef OPENSSL_NO_RC4
|
||||||
#include <openssl/blowfish.h>
|
# 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
|
#undef PROG
|
||||||
#define PROG version_main
|
#define PROG version_main
|
||||||
|
Loading…
Reference in New Issue
Block a user