diff options
Diffstat (limited to 'source/l')
-rw-r--r-- | source/l/FTBFSlog | 3 | ||||
-rw-r--r-- | source/l/frei0r-plugins/frei0r-plugins.url | 2 | ||||
-rw-r--r-- | source/l/icu4c/icu4c.url | 2 | ||||
-rw-r--r-- | source/l/libsoup/ced3c5d8cad0177b297666343f1561799dfefb0d.patch | 43 | ||||
-rwxr-xr-x | source/l/libsoup/libsoup.SlackBuild | 2 |
5 files changed, 50 insertions, 2 deletions
diff --git a/source/l/FTBFSlog b/source/l/FTBFSlog index e61c32a4e..550790db3 100644 --- a/source/l/FTBFSlog +++ b/source/l/FTBFSlog @@ -1,3 +1,6 @@ +Tue Dec 12 19:23:30 UTC 2023 + libsoup: patch to fix build with libxml2-2.12. Thanks to marav. ++--------------------------+ Fri Oct 27 17:55:58 UTC 2023 ffmpeg: fix building HTML documentation with texinfo-7.1. Thanks to rizitis. diff --git a/source/l/frei0r-plugins/frei0r-plugins.url b/source/l/frei0r-plugins/frei0r-plugins.url index d11be4a86..0b6de368e 100644 --- a/source/l/frei0r-plugins/frei0r-plugins.url +++ b/source/l/frei0r-plugins/frei0r-plugins.url @@ -1,3 +1,3 @@ #https://files.dyne.org/frei0r https://github.com/dyne/frei0r -https://github.com/dyne/frei0r/archive/v2.3.1/frei0r-plugins-2.3.1.tar.gz +https://github.com/dyne/frei0r/archive/v2.3.2/frei0r-plugins-2.3.2.tar.gz diff --git a/source/l/icu4c/icu4c.url b/source/l/icu4c/icu4c.url index 8a2e5c5b2..69c9c8d0f 100644 --- a/source/l/icu4c/icu4c.url +++ b/source/l/icu4c/icu4c.url @@ -1,2 +1,2 @@ https://github.com/unicode-org/icu -https://github.com/unicode-org/icu/releases/download/release-74-1/icu4c-74_1-src.tgz +https://github.com/unicode-org/icu/releases/download/release-74-2/icu4c-74_2-src.tgz diff --git a/source/l/libsoup/ced3c5d8cad0177b297666343f1561799dfefb0d.patch b/source/l/libsoup/ced3c5d8cad0177b297666343f1561799dfefb0d.patch new file mode 100644 index 000000000..4aba5357b --- /dev/null +++ b/source/l/libsoup/ced3c5d8cad0177b297666343f1561799dfefb0d.patch @@ -0,0 +1,43 @@ +From ced3c5d8cad0177b297666343f1561799dfefb0d Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@gmail.com> +Date: Wed, 22 Nov 2023 18:49:10 -0800 +Subject: [PATCH] Fix build with libxml2-2.12.0 and clang-17 + +Fixes build errors about missing function prototypes with clang-17 + +Fixes +| ../libsoup-2.74.3/libsoup/soup-xmlrpc-old.c:512:8: error: call to undeclared function 'xmlParseMemory'; ISO C99 and later do not support implicit function declarations + +Signed-off-by: Khem Raj <raj.khem@gmail.com> +--- + libsoup/soup-xmlrpc-old.c | 1 + + libsoup/soup-xmlrpc.c | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/libsoup/soup-xmlrpc-old.c b/libsoup/soup-xmlrpc-old.c +index c57086b6a..527e3b235 100644 +--- a/libsoup/soup-xmlrpc-old.c ++++ b/libsoup/soup-xmlrpc-old.c +@@ -11,6 +11,7 @@ + + #include <string.h> + ++#include <libxml/parser.h> + #include <libxml/tree.h> + + #include "soup-xmlrpc-old.h" +diff --git a/libsoup/soup-xmlrpc.c b/libsoup/soup-xmlrpc.c +index 42dcda9c7..e991cbf01 100644 +--- a/libsoup/soup-xmlrpc.c ++++ b/libsoup/soup-xmlrpc.c +@@ -17,6 +17,7 @@ + + #include <string.h> + #include <errno.h> ++#include <libxml/parser.h> + #include <libxml/tree.h> + #include "soup-xmlrpc.h" + #include "soup.h" +-- +GitLab + diff --git a/source/l/libsoup/libsoup.SlackBuild b/source/l/libsoup/libsoup.SlackBuild index 0fcdcbfb8..4799f579a 100755 --- a/source/l/libsoup/libsoup.SlackBuild +++ b/source/l/libsoup/libsoup.SlackBuild @@ -73,6 +73,8 @@ cd $PKGNAM-$VERSION || exit 1 chown -R root:root . chmod -R u+w,go+r-w,a-s . +cat $CWD/ced3c5d8cad0177b297666343f1561799dfefb0d.patch | patch -p1 --verbose || exit 1 + # Configure, build, and install: export CFLAGS="$SLKCFLAGS" export CXXFLAGS="$SLKCFLAGS" |