diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2022-12-09 19:43:46 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-12-09 21:38:57 +0100 |
commit | 9969c19137bda499690b440ddb516d3608e40044 (patch) | |
tree | bdaaf3e3d3e750bcf78b19700ab8e2649bfa06b0 /source/l | |
parent | 69f7fbdfae263c407ef01858ec9bd77eb071bafd (diff) | |
download | current-9969c19137bda499690b440ddb516d3608e40044.tar.gz current-9969c19137bda499690b440ddb516d3608e40044.tar.xz |
Fri Dec 9 19:43:46 UTC 202220221209194346
a/usbutils-015-x86_64-1.txz: Upgraded.
l/adwaita-icon-theme-43-noarch-1.txz: Upgraded.
l/gtk+3-3.24.35-x86_64-1.txz: Upgraded.
l/libarchive-3.6.2-x86_64-1.txz: Upgraded.
This is a bugfix and security release.
Relevant bugfixes:
rar5 reader: fix possible garbled output with bsdtar -O (#1745)
mtree reader: support reading mtree files with tabs (#1783)
Security fixes:
various small fixes for issues found by CodeQL
(* Security fix *)
l/mozilla-nss-3.86-x86_64-1.txz: Upgraded.
l/pipewire-0.3.62-x86_64-1.txz: Upgraded.
x/OpenCC-1.1.6-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l')
-rw-r--r-- | source/l/gtk+3/fix.missing.gdk.wayland.cursor.meson.build.diff | 15 | ||||
-rwxr-xr-x | source/l/gtk+3/gtk+3.SlackBuild | 7 | ||||
-rwxr-xr-x | source/l/mozilla-nss/mozilla-nss.SlackBuild | 2 |
3 files changed, 22 insertions, 2 deletions
diff --git a/source/l/gtk+3/fix.missing.gdk.wayland.cursor.meson.build.diff b/source/l/gtk+3/fix.missing.gdk.wayland.cursor.meson.build.diff new file mode 100644 index 000000000..610d11079 --- /dev/null +++ b/source/l/gtk+3/fix.missing.gdk.wayland.cursor.meson.build.diff @@ -0,0 +1,15 @@ +--- ./gdk/wayland/cursor/meson.build.orig 2022-12-09 12:40:50.120829020 -0600 ++++ ./gdk/wayland/cursor/meson.build 2022-12-09 12:40:50.120829020 -0600 +@@ -0,0 +1,12 @@ ++wayland_cursor_sources = files([ ++ 'wayland-cursor.c', ++ 'xcursor.c', ++ 'os-compatibility.c' ++]) ++ ++libwayland_cursor = static_library('wayland+cursor', ++ sources: wayland_cursor_sources, ++ include_directories: [ confinc, ], ++ dependencies: [ glib_dep, wlclientdep, ], ++ c_args: common_cflags, ++) diff --git a/source/l/gtk+3/gtk+3.SlackBuild b/source/l/gtk+3/gtk+3.SlackBuild index 740909808..c8e50c591 100755 --- a/source/l/gtk+3/gtk+3.SlackBuild +++ b/source/l/gtk+3/gtk+3.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2010, 2011, 2013, 2018, 2020 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2011, 2013, 2018, 2020, 2022 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -85,6 +85,11 @@ zcat $CWD/gtk.fix.missing.version-check.py.diff.gz | patch -p1 --verbose || exit # Loosen this up for gcc11: zcat $CWD/gtk.array-bounds.gcc11.diff.gz | patch -p1 --verbose || exit 1 +# If this is missing: +if [ ! -r gdk/wayland/cursor/meson.build ]; then + zcat $CWD/fix.missing.gdk.wayland.cursor.meson.build.diff.gz | patch -p1 --verbose || exit 1 +fi + # Configure, build, and install: export CFLAGS="$SLKCFLAGS -DG_ENABLE_DEBUG -DG_DISABLE_CAST_CHECKS" export CXXFLAGS="$SLKCFLAGS -DG_ENABLE_DEBUG -DG_DISABLE_CAST_CHECKS" diff --git a/source/l/mozilla-nss/mozilla-nss.SlackBuild b/source/l/mozilla-nss/mozilla-nss.SlackBuild index ceefb90c8..33b0dac82 100755 --- a/source/l/mozilla-nss/mozilla-nss.SlackBuild +++ b/source/l/mozilla-nss/mozilla-nss.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=mozilla-nss SRCNAM=nss -VERSION=${VERSION:-3.85} +VERSION=${VERSION:-3.86} NSPR=${NSPR:-4.35} BUILD=${BUILD:-1} |