Wrap the inclusion of openssl/engine.h with a protective check for

the absence of OPENSSL_NO_ENGINE.

PR: 1123
This commit is contained in:
Richard Levitte 2005-06-23 21:57:40 +00:00
parent 156f657209
commit 2f6ebed1dc

View File

@ -59,7 +59,9 @@
#include <string.h>
#include <openssl/bn.h>
#include <openssl/err.h>
#ifndef OPENSSL_NO_ENGINE
#include <openssl/engine.h>
#endif
#include <openssl/sha.h>
#include <openssl/x509.h>
#include "str_locl.h"