add autotools bits for cyassl

Signed-off-by: Andy Green <andy.green@linaro.org>
diff --git a/lib/libwebsockets.c b/lib/libwebsockets.c
index 5c30c92..6efebfa 100644
--- a/lib/libwebsockets.c
+++ b/lib/libwebsockets.c
@@ -1691,10 +1691,15 @@
 #ifdef LWS_OPENSSL_SUPPORT
 		context->use_ssl = ssl_cert_filepath != NULL &&
 					       ssl_private_key_filepath != NULL;
+#ifdef USE_CYASSL
+		lwsl_notice(" Compiled with CYASSL support\n");
+#else
+		lwsl_notice(" Compiled with OpenSSL support\n");
+#endif
 		if (context->use_ssl)
-			lwsl_notice(" Compiled with SSL support, using it\n");
+			lwsl_notice(" Using SSL mode\n");
 		else
-			lwsl_notice(" Compiled with SSL support, not using it\n");
+			lwsl_notice(" Using non-SSL mode\n");
 
 #else
 		if (ssl_cert_filepath != NULL &&