We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5139d29 commit 123384fCopy full SHA for 123384f
configure.ac
@@ -68,6 +68,7 @@ if test "x$have_wolfssl" = "xyes"; then
68
LDFLAGS="$LDFLAGS $WOLFSSL_LDFLAGS"
69
fi
70
71
+AC_CHECK_HEADERS([wolfssl/wolfcrypt/kdf.h])
72
AC_CHECK_FUNCS([wc_DhSetNamedKey])
73
74
# DEBUG
include/wolfengine/we_internal.h
@@ -79,7 +79,9 @@
79
#include <wolfssl/wolfcrypt/ecc.h>
80
#include <wolfssl/wolfcrypt/random.h>
81
#include <wolfssl/wolfcrypt/pwdbased.h>
82
-#include <wolfssl/wolfcrypt/kdf.h>
+#ifdef HAVE_WOLFSSL_WOLFCRYPT_KDF_H
83
+ #include <wolfssl/wolfcrypt/kdf.h>
84
+#endif
85
86
#include <wolfengine/we_openssl_bc.h>
87
#include <wolfengine/we_logging.h>
0 commit comments