From aead0de984cbe17203d56faa057d39845e43ed74 Mon Sep 17 00:00:00 2001 From: Robert Högberg Date: Wed, 12 Oct 2022 10:31:58 +0200 Subject: squeezelite: add SSL support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robert Högberg --- sound/squeezelite/Makefile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'sound/squeezelite/Makefile') diff --git a/sound/squeezelite/Makefile b/sound/squeezelite/Makefile index ca6c0c944..cf1d9fb0b 100644 --- a/sound/squeezelite/Makefile +++ b/sound/squeezelite/Makefile @@ -36,7 +36,8 @@ define Package/squeezelite-full $(call Package/squeezelite/default) TITLE+= (full) DEPENDS+= +libflac +libvorbis +libmpg123 +libfaad2 \ - +SQUEEZELITE_WMA:libffmpeg-audio-dec + +SQUEEZELITE_WMA:libffmpeg-audio-dec \ + +SQUEEZELITE_SSL:libopenssl VARIANT:=full endef @@ -64,7 +65,13 @@ define Package/squeezelite/config/default config SQUEEZELITE_DSD bool "DSD playback over PCM (DoP)" help - Include support for DSD over PCM for compatible DAC" + Include support for DSD over PCM for compatible DAC + default n + + config SQUEEZELITE_SSL + bool "SSL/TLS support" + help + Include SSL/TLS support for use with e.g. https media URLs default n endef @@ -114,6 +121,10 @@ ifeq ($(CONFIG_SQUEEZELITE_RESAMPLE),y) opts+= -DRESAMPLE endif +ifeq ($(CONFIG_SQUEEZELITE_SSL),y) + opts+= -DUSE_SSL +endif + ifeq ($(BUILD_VARIANT),full) opts+= -DLINKALL endif -- cgit v1.2.3