From: kaloz Date: Mon, 17 Mar 2014 12:55:31 +0000 (+0000) Subject: [coova-chilli]: add compile option to enable large limits X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=6af99bf2ad5cf01ed2448f1d1b5f3982f12c5da8;p=packages.git [coova-chilli]: add compile option to enable large limits Signed-off-by: Imre Kaloz git-svn-id: svn://svn.openwrt.org/openwrt/packages@39932 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/net/coova-chilli/Config.in b/net/coova-chilli/Config.in index 947266203..79171f3d8 100644 --- a/net/coova-chilli/Config.in +++ b/net/coova-chilli/Config.in @@ -23,6 +23,10 @@ config COOVACHILLI_UAMDOMAINFILE bool "Enable loading of mass uamdomains from file" default n +config COOVACHILLI_LARGELIMITS + bool "Enable larger limits for use with non-embedded systems" + default n + choice prompt "SSL library" default COOVACHILLI_NOSSL diff --git a/net/coova-chilli/Makefile b/net/coova-chilli/Makefile index ba49be988..364bb3888 100644 --- a/net/coova-chilli/Makefile +++ b/net/coova-chilli/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2013 OpenWrt.org +# Copyright (C) 2007-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=coova-chilli PKG_VERSION:=1.3.0 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://ap.coova.org/chilli @@ -23,6 +23,7 @@ PKG_CONFIG_DEPENDS := \ COOVACHILLI_USERAGENT \ COOVACHILLI_DNSLOG \ COOVACHILLI_UAMDOMAINFILE \ + COOVACHILLI_LARGELIMITS \ COOVACHILLI_NOSSL \ COOVACHILLI_MATRIXSSL \ COOVACHILLI_CYASSL \ @@ -61,6 +62,7 @@ define Build/Configure $(if $(CONFIG_COOVACHILLI_DNSLOG),--enable,--disable)-dnslog \ $(if $(CONFIG_COOVACHILLI_MINIPORTAL),--enable,--disable)-miniportal \ $(if $(CONFIG_COOVACHILLI_USERAGENT),--enable,--disable)-useragent \ + $(if $(CONFIG_COOVACHILLI_LARGELIMITS),--enable,--disable)-largelimits \ $(if $(CONFIG_COOVACHILLI_UAMDOMAINFILE),--enable,--disable)-uamdomainfile \ $(if $(CONFIG_COOVACHILLI_MATRIXSSL),--with,--without)-matrixssl \ $(if $(CONFIG_COOVACHILLI_CYASSL),--with,--without)-cyaxssl \