From: Junyeon LEE Date: Fri, 11 Aug 2017 10:45:57 +0000 (-0700) Subject: netutils/http: add dependency X-Git-Tag: 1.1_Public_Release~318^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=27c333c312a9f89391d131867838b9a4391c113e;p=rtos%2Ftinyara.git netutils/http: add dependency This commit addes dependency in Kconfig. * Webclient makes linkding error without Webserver. * Easysetup makes linkding error without TLS. Change-Id: I14dc58b5da2390faaf9fa8d08ba6d947cf788ee9 Signed-off-by: Junyeon LEE --- diff --git a/apps/examples/easysetup/Kconfig b/apps/examples/easysetup/Kconfig index 508829b..e119fb5 100644 --- a/apps/examples/easysetup/Kconfig +++ b/apps/examples/easysetup/Kconfig @@ -8,6 +8,7 @@ config EXAMPLES_EASYSETUP depends on NETUTILS_WEBSERVER depends on NETUTILS_JSON depends on NETUTILS_WIFI + depends on NET_SECURITY_TLS default n if EXAMPLES_EASYSETUP diff --git a/apps/netutils/webclient/Kconfig b/apps/netutils/webclient/Kconfig index 1c0e6ea..a11a04a 100644 --- a/apps/netutils/webclient/Kconfig +++ b/apps/netutils/webclient/Kconfig @@ -7,6 +7,7 @@ config NETUTILS_WEBCLIENT bool "Webclient" default n depends on NET + depends on NETUTILS_WEBSERVER ---help--- Enables the webclient. This webclient supports to send request by sync/async mode.