mirror of
git://slackware.nl/current.git
synced 2024-11-16 07:48:02 +01:00
72065739ec
d/parallel-20240222-noarch-1.txz: Upgraded. kde/krita-5.2.2-x86_64-4.txz: Rebuilt. Recompiled against libunibreak-6.0. l/accountsservice-23.13.9-x86_64-1.txz: Upgraded. Thanks to reddog83. l/libass-0.17.1-x86_64-2.txz: Rebuilt. Recompiled against libunibreak-6.0. l/libunibreak-6.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/orc-0.4.38-x86_64-1.txz: Upgraded. l/python-requests-2.31.0-x86_64-1.txz: Upgraded. l/python-urllib3-2.2.1-x86_64-1.txz: Upgraded. l/qt6-6.6.2_20240210_15b7e743-x86_64-1.txz: Added. n/wpa_supplicant-2.10-x86_64-3.txz: Rebuilt. Patched the implementation of PEAP in wpa_supplicant to prevent an authentication bypass. For a successful attack, wpa_supplicant must be configured to not verify the network's TLS certificate during Phase 1 authentication, and an eap_peap_decrypt vulnerability can then be abused to skip Phase 2 authentication. The attack vector is sending an EAP-TLV Success packet instead of starting Phase 2. This allows an adversary to impersonate Enterprise Wi-Fi networks. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-52160 (* Security fix *) xap/gparted-1.6.0-x86_64-1.txz: Upgraded.
26 lines
971 B
Bash
26 lines
971 B
Bash
#!/bin/sh
|
|
# Environment variables for the Qt package.
|
|
#
|
|
# It's best to use the generic directory to avoid
|
|
# compiling in a version-containing path:
|
|
if [ -d /usr/lib@LIBDIRSUFFIX@/qt6 ]; then
|
|
QT6DIR=/usr/lib@LIBDIRSUFFIX@/qt6
|
|
else
|
|
# Find the newest Qt directory and set $QT6DIR to that:
|
|
for qtd in /usr/lib@LIBDIRSUFFIX@/qt6-* ; do
|
|
if [ -d $qtd ]; then
|
|
QT6DIR=$qtd
|
|
fi
|
|
done
|
|
fi
|
|
PATH="$PATH:$QT6DIR/bin"
|
|
export QT6DIR
|
|
# Unfortunately Chromium and derived projects (including QtWebEngine) seem
|
|
# to be suffering some bitrot when it comes to 32-bit support, so we are
|
|
# forced to disable the seccomp filter sandbox on 32-bit or else all of these
|
|
# applications crash. If anyone has a patch that gets these things running on
|
|
# 32-bit without this workaround, please let volkerdi or alienBOB know, or
|
|
# post your solution on LQ. Thanks. :-)
|
|
if file /bin/cat | grep -wq 32-bit ; then
|
|
export QTWEBENGINE_CHROMIUM_FLAGS="--disable-seccomp-filter-sandbox"
|
|
fi
|