mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
sys-apps/iproute2: Fix build with musl (bug #967691)
Closes: https://bugs.gentoo.org/967691 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
This commit is contained in:
parent
b587539c77
commit
ca57f346af
41
sys-apps/iproute2/files/iproute2-6.18.0-musl.patch
Normal file
41
sys-apps/iproute2/files/iproute2-6.18.0-musl.patch
Normal file
@ -0,0 +1,41 @@
|
||||
From 6c1113633fde51b0e60f02243cfad1b3d09762cc Mon Sep 17 00:00:00 2001
|
||||
From: Akhilesh Nema <nemaakhilesh@gmail.com>
|
||||
Date: Tue, 2 Dec 2025 18:11:24 -0800
|
||||
Subject: fix 'UINT_MAX' undeclared with build with musl libc
|
||||
|
||||
- utils_math.c:136:20: error: 'UINT_MAX' undeclared (first use in this function)
|
||||
- tc_core.c:51:22: error: 'UINT_MAX' undeclared (first use in this function)
|
||||
|
||||
Signed-off-by: Akhilesh Nema <nemaakhilesh@gmail.com>
|
||||
---
|
||||
lib/utils_math.c | 1 +
|
||||
tc/tc_core.c | 1 +
|
||||
2 files changed, 2 insertions(+)
|
||||
|
||||
diff --git a/lib/utils_math.c b/lib/utils_math.c
|
||||
index a7e747440..fd2ddc7c7 100644
|
||||
--- a/lib/utils_math.c
|
||||
+++ b/lib/utils_math.c
|
||||
@@ -4,6 +4,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
+#include <limits.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
#include "utils.h"
|
||||
diff --git a/tc/tc_core.c b/tc/tc_core.c
|
||||
index a422e02c8..b13b7d78a 100644
|
||||
--- a/tc/tc_core.c
|
||||
+++ b/tc/tc_core.c
|
||||
@@ -11,6 +11,7 @@
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <math.h>
|
||||
+#include <limits.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
--
|
||||
cgit 1.2.3-korg
|
||||
|
||||
@ -51,7 +51,8 @@ PATCHES=(
|
||||
"${FILESDIR}"/${PN}-6.9.0-mtu.patch # bug #291907
|
||||
"${FILESDIR}"/${PN}-6.8.0-configure-nomagic-nolibbsd.patch # bug #643722 & #911727
|
||||
"${FILESDIR}"/${PN}-6.8.0-disable-libbsd-fallback.patch # bug #911727
|
||||
"${FILESDIR}"/${PN}-6.18.0-netshaper.patch
|
||||
"${FILESDIR}"/${PN}-6.18.0-netshaper.patch # bug #967691
|
||||
"${FILESDIR}"/${PN}-6.18.0-musl.patch # bug #967701
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user