Skip to content

Commit

Permalink
Add openssl version into include condition
Browse files Browse the repository at this point in the history
  • Loading branch information
thalman committed Jul 29, 2024
1 parent 032602a commit 3b2fdab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/openssl/app.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
#include <openssl/pem.h>
#include <openssl/pkcs12.h>
#include <openssl/conf.h>
#if !defined(OPENSSL_NO_ENGINE) && defined(XMLSEC_OPENSSL3_ENGINES)

#if !defined(OPENSSL_NO_ENGINE) && (!defined(XMLSEC_OPENSSL_API_300) || defined(XMLSEC_OPENSSL3_ENGINES))
#include <openssl/engine.h>
#endif /* !defined(OPENSSL_NO_ENGINE) && defined(XMLSEC_OPENSSL3_ENGINES) */
#endif /* !defined(OPENSSL_NO_ENGINE) && (!defined(XMLSEC_OPENSSL_API_300) || defined(XMLSEC_OPENSSL3_ENGINES)) */
#include <openssl/ui.h>

#include <xmlsec/xmlsec.h>
Expand Down

0 comments on commit 3b2fdab

Please sign in to comment.