diff --git a/sound/forked-daapd/Makefile b/sound/forked-daapd/Makefile index 56919c2cb5..3b590c738a 100644 --- a/sound/forked-daapd/Makefile +++ b/sound/forked-daapd/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=forked-daapd -PKG_VERSION:=27.1 -PKG_RELEASE:=3 +PKG_VERSION:=27.2 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/ejurgensen/$(PKG_NAME)/releases/download/$(PKG_VERSION)/ -PKG_HASH:=e11f86d7de5b7743e388d88f17adb8967d30c4c6c9b4bee2d85d3e7ee2d1849f +PKG_HASH:=27294a893253d232161f4521fc42147e65324ce5a13fcf550b537100375277bb PKG_FIXUP:=autoreconf PKG_USE_MIPS16:=0 diff --git a/sound/forked-daapd/files/forked-daapd.conf b/sound/forked-daapd/files/forked-daapd.conf index 6921e99158..5378f7737e 100644 --- a/sound/forked-daapd/files/forked-daapd.conf +++ b/sound/forked-daapd/files/forked-daapd.conf @@ -47,7 +47,7 @@ general { # When starting playback, autoselect speaker (if none of the previously # selected speakers/outputs are available) -# speaker_autoselect = yes +# speaker_autoselect = no # Most modern systems have a high-resolution clock, but if you are on an # unusual platform and experience audio drop-outs, you can try changing @@ -157,6 +157,10 @@ library { # to trigger a rescan. # filescan_disable = false + # Should metadata from m3u playlists, e.g. artist and title in EXTINF, + # override the metadata we get from radio streams? +# m3u_overrides = false + # Should iTunes metadata override ours? # itunes_overrides = false @@ -272,7 +276,15 @@ audio { # path = "/path/to/fifo" #} -# AirPlay/Airport Express device settings +# AirPlay settings common to all devices +#airplay_shared { + # UDP ports used when airplay devices make connections back to forked-daapd + # (choosing specific ports may be helpful when running forked-daapd behind a firewall) +# control_port = 0 +# timing_port = 0 +#} + +# AirPlay per device settings # (make sure you get the capitalization of the device name right) #airplay "My AirPlay device" { # forked-daapd's volume goes to 11! If that's more than you can handle @@ -288,6 +300,11 @@ audio { # present. The speaker will remain until restart of forked-daapd. # permanent = false + # Some devices spuriously disconnect during playback, and based on the + # device type forked-daapd may attempt to reconnect. Setting this option + # overrides this so reconnecting is either always enabled or disabled. +# reconnect = false + # AirPlay password # password = "s1kr3t" #} diff --git a/sound/forked-daapd/patches/010-errno.patch b/sound/forked-daapd/patches/010-errno.patch deleted file mode 100644 index b7fee52d07..0000000000 --- a/sound/forked-daapd/patches/010-errno.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/websocket.c -+++ b/src/websocket.c -@@ -25,6 +25,7 @@ - #ifdef HAVE_PTHREAD_NP_H - # include - #endif -+#include - #include - #include - #include diff --git a/sound/forked-daapd/patches/020-gcc10.patch b/sound/forked-daapd/patches/020-gcc10.patch deleted file mode 100644 index c0ddeb4edd..0000000000 --- a/sound/forked-daapd/patches/020-gcc10.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/src/outputs.h -+++ b/src/outputs.h -@@ -185,7 +185,7 @@ struct output_data - int samples; - }; - --struct output_buffer -+static struct output_buffer - { - struct timespec pts; - // The array is two larger than max quality subscriptions because element 0 -@@ -262,7 +262,7 @@ struct output_definition - }; - - // Our main list of devices, not for use by backend modules --struct output_device *output_device_list; -+static struct output_device *output_device_list; - - /* ------------------------------- General use ------------------------------ */ -