- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
29 lines
728 B
Diff
29 lines
728 B
Diff
From c5caf52b9ed79da8916ef5722efe6df61a856e2f Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Tue, 28 Mar 2017 20:09:12 -0700
|
|
Subject: [PATCH] sysdeputil.c: Fix with musl which does not have utmpx
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
sysdeputil.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/sysdeputil.c b/sysdeputil.c
|
|
index 06f01f4..a8cff3b 100644
|
|
--- a/sysdeputil.c
|
|
+++ b/sysdeputil.c
|
|
@@ -58,7 +58,9 @@
|
|
#define VSF_SYSDEP_HAVE_SHADOW
|
|
#define VSF_SYSDEP_HAVE_USERSHELL
|
|
#define VSF_SYSDEP_HAVE_LIBCAP
|
|
-#define VSF_SYSDEP_HAVE_UTMPX
|
|
+#if defined(__GLIBC__)
|
|
+ #define VSF_SYSDEP_HAVE_UTMPX
|
|
+#endif
|
|
|
|
#define __USE_GNU
|
|
#include <utmpx.h>
|