diff --git a/net/coova-chilli/Config.in b/net/coova-chilli/Config.in index 79171f3d8..74877c293 100644 --- a/net/coova-chilli/Config.in +++ b/net/coova-chilli/Config.in @@ -3,6 +3,10 @@ menu "Configuration" depends on PACKAGE_coova-chilli +config COOVACHILLI_PROXY + bool "Enable support for chilli proxy. Required for AAA Proxy through http" + default n + config COOVACHILLI_REDIR bool "Enable support for redir server. Required for uamregex" default n diff --git a/net/coova-chilli/Makefile b/net/coova-chilli/Makefile index 0498f9322..b6adaf319 100644 --- a/net/coova-chilli/Makefile +++ b/net/coova-chilli/Makefile @@ -72,6 +72,7 @@ endef define Build/Configure $(call Build/Configure/Default, \ + $(if $(CONFIG_COOVACHILLI_PROXY),--enable,--disable)-chilliproxy \ $(if $(CONFIG_COOVACHILLI_REDIR),--enable,--disable)-chilliredir \ $(if $(CONFIG_COOVACHILLI_DNSLOG),--enable,--disable)-dnslog \ $(if $(CONFIG_COOVACHILLI_MINIPORTAL),--enable,--disable)-miniportal \