mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
package/tmux: bump to version 3.6a
Changes: https://github.com/tmux/tmux/blob/3.6a/CHANGES Release Notes: https://github.com/tmux/tmux/issues/4745 Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
c1ab01cdc8
commit
3ebd5a4b10
@@ -1,28 +0,0 @@
|
||||
From f812b8d30456c071ee23e9a02d6ce16036fd3f68 Mon Sep 17 00:00:00 2001
|
||||
From: Nicholas Marriott <nicholas.marriott@gmail.com>
|
||||
Date: Wed, 29 Oct 2025 08:47:45 +0000
|
||||
Subject: [PATCH] Cast to avoid warnings on 32-bit architectures. GitHub issue
|
||||
4597.
|
||||
|
||||
Upstream: https://github.com/tmux/tmux/commit/f812b8d30456c071ee23e9a02d6ce16036fd3f68
|
||||
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
||||
---
|
||||
compat/utf8proc.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/compat/utf8proc.c b/compat/utf8proc.c
|
||||
index dd4ab27f..147da696 100644
|
||||
--- a/compat/utf8proc.c
|
||||
+++ b/compat/utf8proc.c
|
||||
@@ -48,7 +48,7 @@ utf8proc_mbtowc(wchar_t *pwc, const char *s, size_t n)
|
||||
* *pwc == -1 indicates invalid codepoint
|
||||
* slen < 0 indicates an error
|
||||
*/
|
||||
- slen = utf8proc_iterate(s, n, pwc);
|
||||
+ slen = utf8proc_iterate(s, n, (utf8proc_int32_t*)pwc);
|
||||
if (*pwc == (wchar_t)-1 || slen < 0)
|
||||
return (-1);
|
||||
return (slen);
|
||||
--
|
||||
2.47.3
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 16216bd0877170dfcc64157085ba9013610b12b082548c7c9542cc0103198951 tmux-3.5a.tar.gz
|
||||
sha256 b6d8d9c76585db8ef5fa00d4931902fa4b8cbe8166f528f44fc403961a3f3759 tmux-3.6a.tar.gz
|
||||
sha256 c031bd37f464c534277814f6aa38686fa023d094261d57fd2545ad592bb53ccd COPYING
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TMUX_VERSION = 3.5a
|
||||
TMUX_VERSION = 3.6a
|
||||
TMUX_SITE = https://github.com/tmux/tmux/releases/download/$(TMUX_VERSION)
|
||||
TMUX_LICENSE = ISC
|
||||
TMUX_LICENSE_FILES = COPYING
|
||||
|
||||
Reference in New Issue
Block a user