Skip to content
Snippets Groups Projects
Commit aead0de9 authored by Robert Högberg's avatar Robert Högberg Committed by Rosen Penev
Browse files

squeezelite: add SSL support

parent 4a16e5eb
No related branches found
No related tags found
2 merge requests!39Merge openwrt v23.05.0-rc3,!38Merge openwrt v23.05.0-rc3
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment