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.
This commit is contained in:
Heinrich Kruger 2024-06-24 18:38:53 +01:00 committed by Đoàn Trần Công Danh
parent ada70ca143
commit 7c9f83f93f
1 changed files with 1 additions and 1 deletions

View File

@ -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"