From 3013490240cc16839f4ef4fe27d8a19fca986978 Mon Sep 17 00:00:00 2001 From: David Yang Date: Fri, 1 Feb 2019 15:12:20 +0800 Subject: [PATCH] lighttpd: Remove recursive dependency in #7737 Signed-off-by: David Yang --- net/lighttpd/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net/lighttpd/Makefile b/net/lighttpd/Makefile index 5e1ef0e22..1a96b2a4b 100644 --- a/net/lighttpd/Makefile +++ b/net/lighttpd/Makefile @@ -195,11 +195,11 @@ $(eval $(call BuildPackage,lighttpd)) $(eval $(call BuildPlugin,redirect,URL redirection,+PACKAGE_lighttpd-mod-redirect:libpcre,10)) # Next, permit authentication. -$(eval $(call BuildPlugin,auth,Authentication,+lighttpd-mod-authn_file,20)) -$(eval $(call BuildPlugin,authn_file,File-based authentication,+lighttpd-mod-auth,20)) -$(eval $(call BuildPlugin,authn_gssapi,Kerberos-based authentication,+lighttpd-mod-auth +PACKAGE_lighttpd-mod-authn_gssapi:krb5-libs,20)) -$(eval $(call BuildPlugin,authn_ldap,LDAP-based authentication,+lighttpd-mod-auth +PACKAGE_lighttpd-mod-authn_ldap:libopenldap,20)) -$(eval $(call BuildPlugin,authn_mysql,Mysql-based authentication,+lighttpd-mod-auth +PACKAGE_lighttpd-mod-authn_mysql:libmysqlclient,20)) +$(eval $(call BuildPlugin,auth,Authentication,,20)) +$(eval $(call BuildPlugin,authn_file,File-based authentication,lighttpd-mod-auth,20)) +$(eval $(call BuildPlugin,authn_gssapi,Kerberos-based authentication,lighttpd-mod-auth +PACKAGE_lighttpd-mod-authn_gssapi:krb5-libs,20)) +$(eval $(call BuildPlugin,authn_ldap,LDAP-based authentication,lighttpd-mod-auth +PACKAGE_lighttpd-mod-authn_ldap:libopenldap,20)) +$(eval $(call BuildPlugin,authn_mysql,Mysql-based authentication,lighttpd-mod-auth +PACKAGE_lighttpd-mod-authn_mysql:libmysqlclient,20)) # Finally, everything else. $(eval $(call BuildPlugin,access,Access restrictions,,30))