mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 18:26:44 +02:00
- align patches - add basename.patch needed since musl 1.2.5, see #16106 - add Create.c-fix-build.patch from upstream, also musl 1.2.5 - add util.c-include-limits.h.patch from upstream, mainly for ppc64le - add eudev-dev makedependency to satisfy libudev.h need
29 lines
724 B
Diff
29 lines
724 B
Diff
From 8bda86099089b44129ef6206764f9de47a45f0db Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex@linutronix.de>
|
|
Date: Tue, 12 Mar 2024 11:01:50 +0100
|
|
Subject: [PATCH] util.c: add limits.h include for NAME_MAX definition
|
|
|
|
Add limits.h include for NAME_MAX definition.
|
|
|
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
|
Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
|
|
---
|
|
util.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/util.c b/util.c
|
|
index 05ad3343..49a9c6e2 100644
|
|
--- a/util.c
|
|
+++ b/util.c
|
|
@@ -36,7 +36,7 @@
|
|
#include <ctype.h>
|
|
#include <dirent.h>
|
|
#include <dlfcn.h>
|
|
-
|
|
+#include <limits.h>
|
|
|
|
/*
|
|
* following taken from linux/blkpg.h because they aren't
|
|
--
|
|
2.45.0
|
|
|