From: Glenn Strauss Date: Fri, 14 Apr 2023 19:19:36 +0000 (-0400) Subject: lighttpd: fix package DEPENDS syntax X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=bea91ecd927ff6bee883245b508b6262b40ea593;p=feed%2Fpackages.git lighttpd: fix package DEPENDS syntax Signed-off-by: Glenn Strauss Co-authored-by: Tianling Shen --- diff --git a/net/lighttpd/Makefile b/net/lighttpd/Makefile index 0377e0ffd5..d8faa2b986 100644 --- a/net/lighttpd/Makefile +++ b/net/lighttpd/Makefile @@ -87,8 +87,10 @@ define Package/lighttpd $(call Package/lighttpd/Default) MENU:=1 DEPENDS:=+libpthread +LIGHTTPD_LOGROTATE:logrotate \ - $(if $(CONFIG_LIGHTTPD_PCRE2),+libpcre2,) \ - $(if $(cryptolib),+$(cryptolib),) + +LIGHTTPD_PCRE2:libpcre2 \ + +LIGHTTPD_CRYPTOLIB_NETTLE:libnettle \ + +LIGHTTPD_CRYPTOLIB_MBEDTLS:libmbedtls \ + +LIGHTTPD_CRYPTOLIB_WOLFSSL:libwolfssl TITLE:=A flexible and lightweight web server endef