mirror of
git://slackware.nl/current.git
synced 2025-01-23 07:28:26 +01:00
82d302bd56
a/aaa_elflibs-15.0-x86_64-25.txz: Rebuilt. Add back libffi.so.6.0.4. a/less-563-x86_64-1.txz: Upgraded. a/splitvt-1.6.6-x86_64-3.txz: Rebuilt. Recompiled against libnsl-1.3.0. a/sysvinit-scripts-2.1-noarch-36.txz: Rebuilt. rc.M: before starting rc.elogind, also check for /bin/loginctl. kde/kdelibs-4.14.38-x86_64-8.txz: Rebuilt. Use a better patch to support OpenSSL 1.1.x. Thanks to ifo. l/mozilla-nss-3.57-x86_64-1.txz: Upgraded. This package has not been a security fix since NSS 3.23, so we'll drop it back to the previous version to work around an SSL handshake failure when attempting to connect to talk.google.com with pidgin. Once this issue has been addressed upstream we'll look into bumping the package again. Thanks to Jefferson for the bug report. n/bind-9.16.8-x86_64-1.txz: Upgraded. n/nfs-utils-2.5.2-x86_64-1.txz: Upgraded.
22 lines
1.7 KiB
Diff
22 lines
1.7 KiB
Diff
# Slackware ships a different version of XML DTDs:
|
|
zcat $CWD/patch/kdelibs/kdelibs.docbook.patch.gz | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|
|
|
|
# Make uPnP support depend on the environment variable SOLID_UPNP,
|
|
# e.g. by creating an /etc/profile.d/upnp.sh file with the following contents:
|
|
# export SOLID_UPNP=1
|
|
zcat $CWD/patch/kdelibs/kdelibs.upnp_conditional.patch.gz | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|
|
|
|
# Revert 3 patches which (although they probably follow the FDo spec better),
|
|
# cause incorrect icon overrides:
|
|
zcat $CWD/patch/kdelibs/return-not-break.-copy-paste-error.patch.gz | patch -R -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|
|
zcat $CWD/patch/kdelibs/coding-style-fixes.patch.gz | patch -R -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|
|
zcat $CWD/patch/kdelibs/return-application-icons-properly.patch.gz | patch -R -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|
|
|
|
# Support OpenSSL-1.1.x:
|
|
zcat $CWD/patch/kdelibs/0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch.gz | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|
|
|
|
# Security: remove support for $(...) in config keys with [$e] marker. (CVE-2019-14744)
|
|
zcat $CWD/patch/kdelibs/kdelibs.2c3762feddf7e66cf6b64d9058f625a715694a00.patch.gz | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|
|
|
|
# Support TLS v1.1 and TLS v1.2:
|
|
zcat $CWD/patch/kdelibs/kde4libs-4.14.26.diff.gz | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|