commit: 8a53c13ef918d653faf772e59c76e6b0acc4f359 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org> AuthorDate: Sat Jan 31 15:41:05 2026 +0000 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org> CommitDate: Sat Jan 31 15:43:52 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a53c13e
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 <tomjbe <AT> gentoo.org> 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 9493fd6326c7..5caa0c1b7b24 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 <stdlib.h>" 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 }
