diff options
Diffstat (limited to 'contrib/package')
-rw-r--r-- | contrib/package/luci/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 7cdcb7a01c..5cfab4c9cf 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -275,7 +275,7 @@ endef -NIXIO_TLS:=axtls +NIXIO_TLS:=cyassl define Package/luci-nixio $(call Package/luci/libtemplate) @@ -290,7 +290,7 @@ endef define Package/luci-nixio/config choice prompt "TLS Provider" - default PACKAGE_luci-nixio_axtls + default PACKAGE_luci-nixio_cyassl config PACKAGE_luci-nixio_axtls bool "Builtin (axTLS)" @@ -305,6 +305,10 @@ define Package/luci-nixio/config endchoice endef +ifneq ($(CONFIG_PACKAGE_luci-nixio_axtls),) + NIXIO_TLS:=axtls +endif + ifneq ($(CONFIG_PACKAGE_luci-nixio_openssl),) NIXIO_TLS:=openssl endif |