aboutsummaryrefslogtreecommitdiff
path: root/misc/rlwrap/rlwrap.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'misc/rlwrap/rlwrap.SlackBuild')
-rw-r--r--misc/rlwrap/rlwrap.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/misc/rlwrap/rlwrap.SlackBuild b/misc/rlwrap/rlwrap.SlackBuild
index dc80cf1763..967314eec5 100644
--- a/misc/rlwrap/rlwrap.SlackBuild
+++ b/misc/rlwrap/rlwrap.SlackBuild
@@ -4,12 +4,13 @@
# Written by slakmagik <slakmagik@gmail.com>
# Updated 2017,2021 by Andrew Clemons, Wellington New Zealand
+# Updated 2022,2025 by Andrew Clemons, Tokyo Japan
# Released under the WTFPL
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=rlwrap
-VERSION=${VERSION:-0.46.1}
+VERSION=${VERSION:-0.47.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -62,9 +63,17 @@ find -L . \
autoreconf -vif
+PTYTTYOPT="--without-libptytty"
+if pkg-config --exists libptytty > /dev/null 2>&1 ; then
+ # libptytty was added to current
+ # Thu Jul 20 19:55:25 UTC 2023
+ PTYTTYOPT=""
+fi
+
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
+ $PTYTTYOPT \
--prefix=/usr \
--mandir=/usr/man \
--build=$ARCH-slackware-linux