summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-05-04 19:02:58 +0000
committer Eric Hameleers <alien@slackware.com>2023-05-04 21:36:43 +0200
commit59283087f9d1a87a81cb0014d55fb5b2cc5ba08c (patch)
tree6e24f30aea3b28e8e4fe9451bab18f2a396e04c2 /source
parent8b05abc6cfdef17ca59b284bfb80a2519ce6c3ed (diff)
downloadcurrent-59283087f9d1a87a81cb0014d55fb5b2cc5ba08c.tar.gz
current-59283087f9d1a87a81cb0014d55fb5b2cc5ba08c.tar.xz
Thu May 4 19:02:58 UTC 202320230504190258
a/xz-5.4.3-x86_64-1.txz: Upgraded. ap/alsa-utils-1.2.9-x86_64-1.txz: Upgraded. d/mercurial-6.4.3-x86_64-1.txz: Upgraded. l/alsa-lib-1.2.9-x86_64-1.txz: Upgraded. l/libssh-0.10.5-x86_64-1.txz: Upgraded. This update fixes security issues: A NULL dereference during rekeying with algorithm guessing. A possible authorization bypass in pki_verify_data_signature under low-memory conditions. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-1667 https://www.cve.org/CVERecord?id=CVE-2023-2283 (* Security fix *) l/nodejs-20.1.0-x86_64-1.txz: Upgraded. x/libXi-1.8.1-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rw-r--r--source/ap/alsa-utils/alsa-utils.url1
-rw-r--r--source/l/FTBFSlog3
-rw-r--r--source/l/alsa-lib/alsa-lib.url1
-rwxr-xr-xsource/l/qt5-webkit/qt5-webkit.SlackBuild3
-rw-r--r--source/l/qt5-webkit/qt5-webkit.gcc13.diff10
5 files changed, 18 insertions, 0 deletions
diff --git a/source/ap/alsa-utils/alsa-utils.url b/source/ap/alsa-utils/alsa-utils.url
new file mode 100644
index 000000000..1d4f43aeb
--- /dev/null
+++ b/source/ap/alsa-utils/alsa-utils.url
@@ -0,0 +1 @@
+ftp://ftp.alsa-project.org/pub
diff --git a/source/l/FTBFSlog b/source/l/FTBFSlog
index 30acc9d93..1673472b1 100644
--- a/source/l/FTBFSlog
+++ b/source/l/FTBFSlog
@@ -1,3 +1,6 @@
+Thu May 4 03:21:41 UTC 2023
+ qt5-webkit: Fix build with gcc13. Thanks to nobodino.
++--------------------------+
Tue May 2 19:04:09 UTC 2023
qt5: fix build with gcc13. Thanks to marav and nobodino.
+--------------------------+
diff --git a/source/l/alsa-lib/alsa-lib.url b/source/l/alsa-lib/alsa-lib.url
new file mode 100644
index 000000000..1d4f43aeb
--- /dev/null
+++ b/source/l/alsa-lib/alsa-lib.url
@@ -0,0 +1 @@
+ftp://ftp.alsa-project.org/pub
diff --git a/source/l/qt5-webkit/qt5-webkit.SlackBuild b/source/l/qt5-webkit/qt5-webkit.SlackBuild
index d34235828..9b9487ea9 100755
--- a/source/l/qt5-webkit/qt5-webkit.SlackBuild
+++ b/source/l/qt5-webkit/qt5-webkit.SlackBuild
@@ -106,6 +106,9 @@ zcat $CWD/qt5-webkit.glib-2.68.0.diff.gz | patch -p1 --verbose || exit 1
# Fix for Ruby 3.2.x:
zcat $CWD/webkit-offlineasm-warnings-ruby27.patch | patch -p1 --verbose || exit 1
+# Fix for gcc13:
+zcat $CWD/qt5-webkit.gcc13.diff.gz | patch -p1 --verbose || exit 1
+
# -DU_DEFINE_FALSE_AND_TRUE=1 since recent icu4c no longer defines these otherwise.
export CFLAGS="$SLKCFLAGS -DU_DEFINE_FALSE_AND_TRUE=1"
diff --git a/source/l/qt5-webkit/qt5-webkit.gcc13.diff b/source/l/qt5-webkit/qt5-webkit.gcc13.diff
new file mode 100644
index 000000000..318ad0a79
--- /dev/null
+++ b/source/l/qt5-webkit/qt5-webkit.gcc13.diff
@@ -0,0 +1,10 @@
+--- ./Source/ThirdParty/ANGLE/src/common/mathutil.h.orig 2020-03-04 11:16:37.000000000 -0600
++++ ./Source/ThirdParty/ANGLE/src/common/mathutil.h 2023-05-03 22:19:19.201630211 -0500
+@@ -16,6 +16,7 @@
+ #include <algorithm>
+ #include <string.h>
+ #include <stdlib.h>
++#include <cstdint>
+
+ namespace gl
+ {