mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
systemd: Drop musl __secure_getenv patch
This API is now implemented in musl [1] [1] https://git.musl-libc.org/cgit/musl/commit/?id=7844ecb590893f8344324837956718001402d297 (From OE-Core rev: 46e49b14b52ebc9c7076488ad858083f8270ce9f) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
-32
@@ -1,32 +0,0 @@
|
||||
From b8055a61b5df6b43b8d3117936587b874b0a339b Mon Sep 17 00:00:00 2001
|
||||
From: Chen Qi <Qi.Chen@windriver.com>
|
||||
Date: Mon, 25 Feb 2019 11:01:18 +0800
|
||||
Subject: [PATCH 01/24] Use getenv when secure versions are not available
|
||||
|
||||
musl doesnt implement secure version, so we default
|
||||
to it if configure does not detect a secure implementation
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
|
||||
Upstream-Status: Denied
|
||||
|
||||
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
|
||||
---
|
||||
src/basic/missing_stdlib.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/basic/missing_stdlib.h b/src/basic/missing_stdlib.h
|
||||
index 188a8d4..c0ffe86 100644
|
||||
--- a/src/basic/missing_stdlib.h
|
||||
+++ b/src/basic/missing_stdlib.h
|
||||
@@ -8,6 +8,6 @@
|
||||
# if HAVE___SECURE_GETENV
|
||||
# define secure_getenv __secure_getenv
|
||||
# else
|
||||
-# error "neither secure_getenv nor __secure_getenv are available"
|
||||
+# define secure_getenv getenv
|
||||
# endif
|
||||
#endif
|
||||
--
|
||||
2.7.4
|
||||
|
||||
@@ -32,7 +32,7 @@ SRC_URI += "file://touchscreen.rules \
|
||||
|
||||
# patches needed by musl
|
||||
SRC_URI_append_libc-musl = " ${SRC_URI_MUSL}"
|
||||
SRC_URI_MUSL = "file://0001-Use-getenv-when-secure-versions-are-not-available.patch \
|
||||
SRC_URI_MUSL = "\
|
||||
file://0002-don-t-use-glibc-specific-qsort_r.patch \
|
||||
file://0003-missing_type.h-add-__compare_fn_t-and-comparison_fn_.patch \
|
||||
file://0004-add-fallback-parse_printf_format-implementation.patch \
|
||||
|
||||
Reference in New Issue
Block a user