From: Rosen Penev Date: Wed, 22 May 2024 01:57:43 +0000 (-0700) Subject: libshout: fix compilation with GCC14 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=bfe0d361f37d320abdfd2f1ad47f7f7e0a39acc8;p=feed%2Fpackages.git libshout: fix compilation with GCC14 Missing headers. Signed-off-by: Rosen Penev --- diff --git a/libs/libshout/Makefile b/libs/libshout/Makefile index 811e6a1a3b..9cd11e4a0c 100644 --- a/libs/libshout/Makefile +++ b/libs/libshout/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libshout PKG_VERSION:=2.4.6 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://downloads.us.xiph.org/releases/libshout/ diff --git a/libs/libshout/patches/010-gcc14.patch b/libs/libshout/patches/010-gcc14.patch new file mode 100644 index 0000000000..0ff6839055 --- /dev/null +++ b/libs/libshout/patches/010-gcc14.patch @@ -0,0 +1,11 @@ +--- a/src/shout_private.h ++++ b/src/shout_private.h +@@ -33,6 +33,8 @@ + #include + #include "util.h" + ++#include ++#include + #include + + #ifdef HAVE_STDINT_H