linuxkm: add missing #ifdef OPENSSL_EXTRA around openssl includes in module_exports.c.template, and add an assert to configure.ac disallowing linuxkm+opensslextra.

This commit is contained in:
Daniel Pouzzner
2021-10-22 16:30:43 -05:00
parent ac8fbe3fbd
commit 073bef579b
2 changed files with 5 additions and 0 deletions

View File

@@ -171,6 +171,7 @@
#include <wolfssl/certs_test.h>
#ifdef OPENSSL_EXTRA
#include <wolfssl/openssl/x509_vfy.h>
#include <wolfssl/openssl/buffer.h>
#include <wolfssl/openssl/ec25519.h>
@@ -180,4 +181,5 @@
#include <wolfssl/openssl/ecdsa.h>
#include <wolfssl/openssl/ecdh.h>
#include <wolfssl/openssl/pem.h>
#endif