libressl: add musl patch
This commit is contained in:
parent
98dd6f95fc
commit
8806dba343
1 changed files with 28 additions and 0 deletions
28
srcpkgs/libressl/patches/getprogname-musl.patch
Normal file
28
srcpkgs/libressl/patches/getprogname-musl.patch
Normal file
|
@ -0,0 +1,28 @@
|
|||
From a747aacc23607c993cc481378782b2c7dd5bc53b Mon Sep 17 00:00:00 2001
|
||||
From: Ishimoto Shinobu <47295761+protonesso@users.noreply.github.com>
|
||||
Date: Tue, 21 May 2019 22:41:05 +0900
|
||||
Subject: [PATCH 1/4] avoid glibc
|
||||
|
||||
cause problems on musl systems
|
||||
---
|
||||
crypto/compat/getprogname_linux.c | 4 +---
|
||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||
|
||||
diff --git a/crypto/compat/getprogname_linux.c b/crypto/compat/getprogname_linux.c
|
||||
index 2c89743..4e7e31f 100644
|
||||
--- crypto/compat/getprogname_linux.c
|
||||
+++ crypto/compat/getprogname_linux.c
|
||||
@@ -26,9 +26,7 @@ getprogname(void)
|
||||
#if defined(__ANDROID_API__) && __ANDROID_API__ < 21
|
||||
extern const char *__progname;
|
||||
return __progname;
|
||||
-#elif defined(__GLIBC__)
|
||||
- return program_invocation_short_name;
|
||||
#else
|
||||
-#error "Cannot emulate getprogname"
|
||||
+ return program_invocation_short_name;
|
||||
#endif
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
Loading…
Reference in a new issue