From 683defd0f8597773f1f3f1fb2031cb010c82ab56 Mon Sep 17 00:00:00 2001 From: Grische <2787581+grische@users.noreply.github.com> Date: Tue, 26 Dec 2023 01:30:28 +0100 Subject: [PATCH] gluon-tls: add package (#3114) This package allows to easily select the correct libustream implementation without all communities having the need to manually change their included packages. --- package/gluon-tls/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package/gluon-tls/Makefile diff --git a/package/gluon-tls/Makefile b/package/gluon-tls/Makefile new file mode 100644 index 000000000..f395a1c44 --- /dev/null +++ b/package/gluon-tls/Makefile @@ -0,0 +1,12 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=gluon-tls + +include ../gluon.mk + +define Package/gluon-tls + DEPENDS:=+libustream-mbedtls +ca-bundle + TITLE:=Dummy Package to select the current TLS implementation +endef + +$(eval $(call BuildPackageGluon,gluon-tls)) -- GitLab