diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-14 22:44:43 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-14 22:44:43 +0300 |
commit | 9e04ff1c099278a57da9f91e1ae1a4d6142a0025 (patch) | |
tree | 5faf52e750547af73124bcd3399ccc078df420bd /app-misc/tmux/tmux-3.4-r1.ebuild | |
parent | dev-python/uvloop: link py3.13 build issue (diff) | |
download | gentoo-9e04ff1c099278a57da9f91e1ae1a4d6142a0025.tar.gz gentoo-9e04ff1c099278a57da9f91e1ae1a4d6142a0025.tar.bz2 gentoo-9e04ff1c099278a57da9f91e1ae1a4d6142a0025.zip |
app-misc/tmux: fix implicit configure b64_ntop
Closes: https://bugs.gentoo.org/934312
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-misc/tmux/tmux-3.4-r1.ebuild')
-rw-r--r-- | app-misc/tmux/tmux-3.4-r1.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app-misc/tmux/tmux-3.4-r1.ebuild b/app-misc/tmux/tmux-3.4-r1.ebuild index d90d053355f5..ad59278189e3 100644 --- a/app-misc/tmux/tmux-3.4-r1.ebuild +++ b/app-misc/tmux/tmux-3.4-r1.ebuild @@ -42,8 +42,12 @@ RDEPEND=" vim-syntax? ( app-vim/vim-tmux ) " -# BSD only functions -QA_CONFIG_IMPL_DECL_SKIP=( strtonum recallocarray ) +QA_CONFIG_IMPL_DECL_SKIP=( + # BSD only functions + strtonum recallocarray + # missing on musl, tmux has fallback impl which it uses + b64_ntop +) DOCS=( CHANGES README ) |