From: Rosen Penev Date: Thu, 1 May 2025 19:44:54 +0000 (-0700) Subject: icecast: fix compilation with GCC14 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=aef483bad5fd0082b607addce7a89f8e7d2cfe0a;p=openwrt-packages.git icecast: fix compilation with GCC14 Upstream backport. Signed-off-by: Rosen Penev --- diff --git a/multimedia/icecast/Makefile b/multimedia/icecast/Makefile index 544ea3cab..94b7edbd8 100644 --- a/multimedia/icecast/Makefile +++ b/multimedia/icecast/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=icecast PKG_VERSION:=2.4.4 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://downloads.xiph.org/releases/icecast/ diff --git a/multimedia/icecast/patches/030-stdlib.patch b/multimedia/icecast/patches/030-stdlib.patch new file mode 100644 index 000000000..f32ae9b12 --- /dev/null +++ b/multimedia/icecast/patches/030-stdlib.patch @@ -0,0 +1,30 @@ +From 33a0595d1085d2acde65f3418da806e50d7c5ad7 Mon Sep 17 00:00:00 2001 +From: Philipp Schafft +Date: Tue, 30 Jul 2024 22:33:28 +0000 +Subject: [PATCH] Fix: Added a number of missing includes to + +--- + src/main.c | 1 + + src/xslt.c | 1 + + 2 files changed, 2 insertions(+) + +--- a/src/main.c ++++ b/src/main.c +@@ -18,6 +18,7 @@ + #endif + + #include ++#include + #include + #include + +--- a/src/xslt.c ++++ b/src/xslt.c +@@ -14,6 +14,7 @@ + #include + #endif + ++#include + #include + #include + #include