diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-27 19:21:31 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-27 19:21:31 +0000 |
commit | 7667c0610e27b3c25eb7a5715c89ee490ca4a3b0 (patch) | |
tree | 17a7b9438d605bedc6c89e3a850f98af733f3f3b | |
parent | c0d0953bd7ad56837cb679b11ce200b63c664a4a (diff) |
contrib/package: add option to disable nixio tls support
-rw-r--r-- | contrib/package/luci/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 387499c75..7666d04d8 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -275,7 +275,7 @@ endef -NIXIO_TLS:=cyassl +NIXIO_TLS:= define Package/luci-nixio $(call Package/luci/libtemplate) @@ -290,7 +290,10 @@ endef define Package/luci-nixio/config choice prompt "TLS Provider" - default PACKAGE_luci-nixio_cyassl + default PACKAGE_luci-nixio_notls + + config PACKAGE_luci-nixio_notls + bool "Disabled" config PACKAGE_luci-nixio_axtls bool "Builtin (axTLS)" |