We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8573325 commit 83ec2dcCopy full SHA for 83ec2dc
1 file changed
tls/client-tls-pkcs12.c
@@ -52,7 +52,7 @@ int main(int argc, char** argv)
52
int ret = 0;
53
54
#if defined(OPENSSL_EXTRA) && !defined(NO_PWDBASED) && !defined(NO_ASN) \
55
- && !defined(NO_DES3)
+ && !defined(NO_DES3) && defined(WOLFSSL_KEY_GEN)
56
int sockfd;
57
struct sockaddr_in servAddr;
58
char buff[256];
@@ -293,6 +293,10 @@ int main(int argc, char** argv)
293
printf("wolfSSL not configured with --enable-des3\n");
294
#endif
295
296
+ #ifndef WOLFSSL_KEY_GEN
297
+ printf("wolfSSL not configured with --enable-keygen\n");
298
+ #endif
299
+
300
printf("Please re-configure and re-install wolfSSL before using\n"
301
"this example\n\n");
302
0 commit comments