mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-10 20:00:51 +00:00
bump(main/tmux): 3.6
This commit is contained in:
@@ -2,10 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://tmux.github.io/
|
||||
TERMUX_PKG_DESCRIPTION="Terminal multiplexer"
|
||||
TERMUX_PKG_LICENSE="ISC"
|
||||
TERMUX_PKG_MAINTAINER="Joshua Kahn @TomJo2000"
|
||||
TERMUX_PKG_VERSION="3.5a"
|
||||
TERMUX_PKG_REVISION=1
|
||||
TERMUX_PKG_VERSION="3.6"
|
||||
TERMUX_PKG_SRCURL=https://github.com/tmux/tmux/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
|
||||
TERMUX_PKG_SHA256=49e68b41dec0bf408990160ee12fa29b06dee8f74c1f0b4b71c9d2a1477dd910
|
||||
TERMUX_PKG_SHA256=bb8e96da3809845c72b53589cd7f4c00d5e3cbbb88d3284e15e5a8c2220d471d
|
||||
TERMUX_PKG_AUTO_UPDATE=true
|
||||
# Link against libandroid-support for wcwidth(), see https://github.com/termux/termux-packages/issues/224
|
||||
TERMUX_PKG_DEPENDS="ncurses, libevent, libandroid-support, libandroid-glob"
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
diff -u -r ../tmux-3.1b/compat/imsg.c ./compat/imsg.c
|
||||
--- ../tmux-3.1b/compat/imsg.c 2020-05-04 08:06:57.000000000 +0000
|
||||
+++ ./compat/imsg.c 2020-10-02 18:37:55.651051000 +0000
|
||||
@@ -73,7 +73,13 @@
|
||||
again:
|
||||
if (getdtablecount() + imsg_fd_overhead +
|
||||
(int)((CMSG_SPACE(sizeof(int))-CMSG_SPACE(0))/sizeof(int))
|
||||
- >= getdtablesize()) {
|
||||
+ >=
|
||||
+#ifdef HAVE_SYSCONF
|
||||
+ sysconf(_SC_OPEN_MAX)
|
||||
+#else
|
||||
+ getdtablesize()
|
||||
+#endif
|
||||
+ ) {
|
||||
errno = EAGAIN;
|
||||
free(ifd);
|
||||
return (-1);
|
||||
Reference in New Issue
Block a user