From 16e18d9170699e29cf73ffff062dd657745ddf30 Mon Sep 17 00:00:00 2001 From: Aditya Patwardhan Date: Wed, 2 Nov 2022 09:58:32 +0530 Subject: [PATCH] esp-tls/Kconfig: Fix dependency for ESP-TLS Server menuconfig option --- components/esp-tls/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp-tls/Kconfig b/components/esp-tls/Kconfig index ea73d0f979..ac28442ef3 100644 --- a/components/esp-tls/Kconfig +++ b/components/esp-tls/Kconfig @@ -40,6 +40,7 @@ menu "ESP-TLS" config ESP_TLS_SERVER bool "Enable ESP-TLS Server" + depends on (ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER) || ESP_TLS_USING_WOLFSSL help Enable support for creating server side SSL/TLS session, available for mbedTLS as well as wolfSSL TLS library.