aboutsummaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2024-04-14 16:10:31 +0200
committerRosen Penev <rosenp@gmail.com>2024-04-19 14:24:43 -0700
commit577259cfb94079a9962a8abec68a54626bdac5e5 (patch)
treeb64dd99780f164344958ab142ad3579592168eee /lang
parentb20e69d765739c2134dae48bfc3f016c598bb8c2 (diff)
lua-eco: Fix compilation with musl libc 1.2.5
Support POSIX basename used in musl libc 1.2.5. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'lang')
-rw-r--r--lang/lua-eco/patches/0001-Support-POSIX-basename-from-musl-libc.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/lang/lua-eco/patches/0001-Support-POSIX-basename-from-musl-libc.patch b/lang/lua-eco/patches/0001-Support-POSIX-basename-from-musl-libc.patch
new file mode 100644
index 000000000..5c9b7bb96
--- /dev/null
+++ b/lang/lua-eco/patches/0001-Support-POSIX-basename-from-musl-libc.patch
@@ -0,0 +1,62 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Hauke Mehrtens <hauke@hauke-m.de>
+Date: Sun, 14 Apr 2024 17:13:17 +0200
+Subject: Support POSIX basename() from musl libc
+
+Musl libc 1.2.5 removed the definition of the basename() function from
+string.h and only provides it in libgen.h as the POSIX standard
+defines it.
+
+This change fixes compilation with musl libc 1.2.5.
+````
+/build_dir/target-mips_24kc_musl/lua-eco-3.3.0/log/log.c: In function '___log':
+/build_dir/target-mips_24kc_musl/lua-eco-3.3.0/log/log.c:76:24: error: implicit declaration of function 'basename' [-Werror=implicit-function-declaration]
+ 76 | filename = basename(filename);
+ | ^~~~~~~~
+/build_dir/target-mips_24kc_musl/lua-eco-3.3.0/log/log.c:76:22: error: assignment to 'const char *' from 'int' makes pointer from integer without a cast [-Werror=int-conversion]
+ 76 | filename = basename(filename);
+ | ^
+````
+
+basename() modifies the input string, copy it first with strdup(), If
+strdup() returns NULL the code will handle it.
+
+Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
+---
+ log/log.c | 10 ++++++++--
+ 1 file changed, 8 insertions(+), 2 deletions(-)
+
+--- a/log/log.c
++++ b/log/log.c
+@@ -9,6 +9,7 @@
+ #include <stdlib.h>
+ #include <unistd.h>
+ #include <string.h>
++#include <libgen.h>
+
+ #include "log.h"
+
+@@ -65,6 +66,7 @@ void ___log(const char *filename, int li
+ {
+ char new_fmt[256];
+ va_list ap;
++ char *dirc = NULL;
+
+ priority = LOG_PRI(priority);
+
+@@ -72,9 +74,13 @@ void ___log(const char *filename, int li
+ return;
+
+ if (__log_flags__ & LOG_FLAG_FILE || __log_flags__ & LOG_FLAG_PATH) {
+- if (!(__log_flags__ & LOG_FLAG_PATH))
+- filename = basename(filename);
++ if (!(__log_flags__ & LOG_FLAG_PATH)) {
++ dirc = strdup(filename);
++ filename = basename(dirc);
++ }
+ snprintf(new_fmt, sizeof(new_fmt), "(%s:%3d) %s", filename, line, fmt);
++ if (!(__log_flags__ & LOG_FLAG_PATH))
++ free(dirc);
+ } else {
+ snprintf(new_fmt, sizeof(new_fmt), "%s", fmt);
+ }