Skip to content

Commit

Permalink
(xmlsec-openssl) Fix build if OpenSSL 3.0 doesn't have engines
Browse files Browse the repository at this point in the history
  • Loading branch information
thalman authored Jul 29, 2024
1 parent fa0590e commit 5545aff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/openssl/app.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
#include <openssl/pem.h>
#include <openssl/pkcs12.h>
#include <openssl/conf.h>
#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_OPENSSL_API_300) || defined(XMLSEC_OPENSSL3_ENGINES)) */
#include <openssl/ui.h>

#include <xmlsec/xmlsec.h>
Expand Down

1 comment on commit 5545aff

@lsh123
Copy link
Owner

@lsh123 lsh123 commented on 5545aff Jul 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just for the record: same change on the master #829 (cherry pick had too many conflicts)

Please sign in to comment.