- This update comprises updates to GitHub Actions used for testing and for building Docker. - Update version to 4.3.6 - Bug fixes - Fix a potential bug (no issues reported) by checking that a buffer is not zero before attempting to deallocate it. - Documentation updates - Show how to use MQTTThing with Homebridge to represent Shairport Sync’s active status. - Correct and clarify the statistics documentation. - Fix a typo in the configuration file. OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/shairport-sync?expand=0&rev=45
19 lines
883 B
Diff
19 lines
883 B
Diff
diff -Nur shairport-sync-4.3.2/Makefile.am shairport-sync-4.3.2-new/Makefile.am
|
|
--- shairport-sync-4.3.2/Makefile.am 2023-10-16 01:42:38.000000000 +0800
|
|
+++ shairport-sync-4.3.2-new/Makefile.am 2024-03-21 22:06:21.799112297 +0800
|
|
@@ -262,12 +262,12 @@
|
|
INSTALL_GROUP_TARGET = install-group-local
|
|
|
|
$(INSTALL_GROUP_TARGET):
|
|
- getent group shairport-sync &>/dev/null || groupadd -r shairport-sync &>/dev/null
|
|
+# getent group shairport-sync &>/dev/null || groupadd -r shairport-sync &>/dev/null
|
|
|
|
INSTALL_USER_TARGET = install-user-local
|
|
|
|
$(INSTALL_USER_TARGET): $(INSTALL_GROUP_TARGET)
|
|
- getent passwd shairport-sync &>/dev/null || useradd -r -M -g shairport-sync -s /usr/sbin/nologin -G audio shairport-sync &>/dev/null
|
|
+# getent passwd shairport-sync &>/dev/null || useradd -r -M -g shairport-sync -s /usr/sbin/nologin -G audio shairport-sync &>/dev/null
|
|
|
|
if INSTALL_SYSTEMV
|
|
|