summaryrefslogtreecommitdiffstats
path: root/source/ap/cups-filters
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-01-26 00:34:41 +0000
committer Eric Hameleers <alien@slackware.com>2023-01-26 02:33:14 +0100
commit5fd11513438c7a88c32fc72e1810ec29d1b3a11b (patch)
treeaf8938013ed07b5fc1edfff8ce6adbf4794b0979 /source/ap/cups-filters
parent2da9fb74c8edd5868be2a291e65778118272c75a (diff)
downloadcurrent-5fd11513438c7a88c32fc72e1810ec29d1b3a11b.tar.gz
current-5fd11513438c7a88c32fc72e1810ec29d1b3a11b.tar.xz
Thu Jan 26 00:34:41 UTC 202320230126003441
ap/cups-filters-1.28.17-x86_64-1.txz: Upgraded. ap/vim-9.0.1241-x86_64-1.txz: Upgraded. Fixed a security issue: Heap-based Buffer Overflow in GitHub repository vim/vim prior to 9.0.1225. Thanks to marav for the heads-up. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-0433 (* Security fix *) d/guile-3.0.9-x86_64-1.txz: Upgraded. d/poke-3.0-x86_64-1.txz: Upgraded. l/nodejs-19.5.0-x86_64-1.txz: Upgraded. n/bind-9.18.11-x86_64-1.txz: Upgraded. This update fixes bugs and the following security issues: An UPDATE message flood could cause :iscman:`named` to exhaust all available memory. This flaw was addressed by adding a new :any:`update-quota` option that controls the maximum number of outstanding DNS UPDATE messages that :iscman:`named` can hold in a queue at any given time (default: 100). :iscman:`named` could crash with an assertion failure when an RRSIG query was received and :any:`stale-answer-client-timeout` was set to a non-zero value. This has been fixed. :iscman:`named` running as a resolver with the :any:`stale-answer-client-timeout` option set to any value greater than ``0`` could crash with an assertion failure, when the :any:`recursive-clients` soft quota was reached. This has been fixed. For more information, see: https://kb.isc.org/docs/cve-2022-3094 https://kb.isc.org/docs/cve-2022-3736 https://kb.isc.org/docs/cve-2022-3924 https://www.cve.org/CVERecord?id=CVE-2022-3094 https://www.cve.org/CVERecord?id=CVE-2022-3736 https://www.cve.org/CVERecord?id=CVE-2022-3924 (* Security fix *) n/openvpn-2.6.0-x86_64-1.txz: Upgraded. xap/vim-gvim-9.0.1241-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/ap/cups-filters')
-rwxr-xr-xsource/ap/cups-filters/cups-filters.SlackBuild15
1 files changed, 11 insertions, 4 deletions
diff --git a/source/ap/cups-filters/cups-filters.SlackBuild b/source/ap/cups-filters/cups-filters.SlackBuild
index 9ca96c91b..799a6253d 100755
--- a/source/ap/cups-filters/cups-filters.SlackBuild
+++ b/source/ap/cups-filters/cups-filters.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright 2015, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA
+# Copyright 2015, 2018, 2023 Patrick J. Volkerding, Sebeka, Minnesota, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -23,8 +23,8 @@
cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=cups-filters
-VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -68,7 +68,7 @@ mkdir -p $TMP $PKG
cd $TMP
rm -rf $PKGNAM-$VERSION
-tar xvf $CWD/$PKGNAM-$VERSION.tar.?z* || exit 1
+tar xvf $CWD/$PKGNAM-$VERSION.tar.?z || exit 1
cd $PKGNAM-$VERSION || exit 1
chown -R root:root .
@@ -78,6 +78,13 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \+
+if [ ! -r configure ]; then
+ if [ -x ./autogen.sh ]; then
+ NOCONFIGURE=1 ./autogen.sh
+ else
+ autoreconf -vif
+ fi
+fi
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS -std=c++11 -fpermissive" \
./configure \