From 7c9f83f93f5ae64d92c01cbc086c0bd70a6d1a8b Mon Sep 17 00:00:00 2001 From: Heinrich Kruger Date: Mon, 24 Jun 2024 18:38:53 +0100 Subject: [PATCH] tmux: rebuild against ncurses-6.5 Copying to the X11 clipboard from tmux has been failing since I updated to ncurses-6.5. Verbose server logs show could not expand Ms when it fails. This is logged here: https://github.com/tmux/tmux/blob/3.4/tty-term.c#L861 I suspect that the problem is related to changes in the behaviour of the `tiparm` and `tparm` functions in ncurses 6.5 (see: https://invisible-island.net/ncurses/announce.html#h4-fixes-library). (`tiparm_s` was not present in ncurses-6.4 so tmux 3.4 compiled against ncurses-6.4 would have used `tiparm` or `tparm`). Rebuilding against ncurses-6.5 fixes the problem. --- srcpkgs/tmux/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tmux/template b/srcpkgs/tmux/template index aea9ffaa2fd..aec235a6401 100644 --- a/srcpkgs/tmux/template +++ b/srcpkgs/tmux/template @@ -1,7 +1,7 @@ # Template file for 'tmux' pkgname=tmux version=3.4 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-utempter --enable-sixel" hostmakedepends="byacc automake pkg-config"