From 8a53c13ef918d653faf772e59c76e6b0acc4f359 Mon Sep 17 00:00:00 2001 From: Thomas Beierlein Date: Sat, 31 Jan 2026 16:41:05 +0100 Subject: [PATCH] media-radio/ax25-apps: Use termios.h instead of termio.h Already used for musl libc but needed for >=glibc-2.42 also Closes: https://bugs.gentoo.org/952954 Signed-off-by: Thomas Beierlein --- media-radio/ax25-apps/ax25-apps-0.0.8_rc5-r1.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/media-radio/ax25-apps/ax25-apps-0.0.8_rc5-r1.ebuild b/media-radio/ax25-apps/ax25-apps-0.0.8_rc5-r1.ebuild index 9493fd6326c79..5caa0c1b7b24c 100644 --- a/media-radio/ax25-apps/ax25-apps-0.0.8_rc5-r1.ebuild +++ b/media-radio/ax25-apps/ax25-apps-0.0.8_rc5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -34,9 +34,8 @@ src_prepare() { # fix missing prototype for malloc sed -i -e "/^#include /i #include " ax25ipd/routing.c || die eapply "${FILESDIR}"/${PN}-0.0.8_rc5-tinfo.patch - if use elibc_musl ; then - eapply -p1 "${FILESDIR}/${PN}-0.0.8-musl.patch" - fi + # use termios.h instead of termio.h (bug # 715802 + 968885) + eapply -p1 "${FILESDIR}/${PN}-0.0.8-musl.patch" eapply_user eautoreconf }