diff options
Diffstat (limited to 'misc/rlwrap/rlwrap.SlackBuild')
-rw-r--r-- | misc/rlwrap/rlwrap.SlackBuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/misc/rlwrap/rlwrap.SlackBuild b/misc/rlwrap/rlwrap.SlackBuild index d1b8e2bb69..967314eec5 100644 --- a/misc/rlwrap/rlwrap.SlackBuild +++ b/misc/rlwrap/rlwrap.SlackBuild @@ -10,7 +10,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=rlwrap -VERSION=${VERSION:-0.46.2} +VERSION=${VERSION:-0.47.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -63,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 |