summaryrefslogtreecommitdiffstats
path: root/source/l
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-12-12 19:54:42 +0000
committer Eric Hameleers <alien@slackware.com>2023-12-12 22:06:31 +0100
commitad1b1833ef7c081fab1d2fa8a45f2f663180b68d (patch)
treeacb6fac900d968caa6af8f4a29acc0ff230d6a3b /source/l
parentb04af892853e58c426e27bff4f0acbcd3d524f06 (diff)
downloadcurrent-ad1b1833ef7c081fab1d2fa8a45f2f663180b68d.tar.gz
current-ad1b1833ef7c081fab1d2fa8a45f2f663180b68d.tar.xz
Tue Dec 12 19:54:42 UTC 202320231212195442
a/aaa_libraries-15.1-x86_64-24.txz: Rebuilt. Upgraded: libglib-2.0.so.0.7800.3, libgmodule-2.0.so.0.7800.3, libgobject-2.0.so.0.7800.3, libgthread-2.0.so.0.7800.3. Removed: libicudata.so.73.2, libicui18n.so.73.2, libicuio.so.73.2, libicutest.so.73.2, libicutu.so.73.2, libicuuc.so.73.2. ap/rpm-4.19.1-x86_64-1.txz: Upgraded. l/frei0r-plugins-2.3.2-x86_64-1.txz: Upgraded. l/icu4c-74.2-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-115.5.2-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/115.5.2/releasenotes/ xap/x3270-4.3ga4-x86_64-1.txz: Upgraded. extra/brltty/brltty-6.6-x86_64-2.txz: Rebuilt. Recompiled against icu4c-74.2.
Diffstat (limited to 'source/l')
-rw-r--r--source/l/FTBFSlog3
-rw-r--r--source/l/frei0r-plugins/frei0r-plugins.url2
-rw-r--r--source/l/icu4c/icu4c.url2
-rw-r--r--source/l/libsoup/ced3c5d8cad0177b297666343f1561799dfefb0d.patch43
-rwxr-xr-xsource/l/libsoup/libsoup.SlackBuild2
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"