12345678910111213141516171819202122232425262728293031 |
- From d0bdce977b7acc5e45e82cf84256c4bedc0e74c4 Mon Sep 17 00:00:00 2001
- From: Khem Raj <raj.khem@gmail.com>
- Date: Sun, 27 May 2018 08:36:44 -0700
- Subject: [PATCH] Define glibc compatible basename() for non-glibc systems
- Fixes builds with musl, even though systemd is adamant about
- using non-posix basename implementation, we have a way out
- Upstream-Status: Inappropriate [musl specific]
- Signed-off-by: Khem Raj <raj.khem@gmail.com>
- ---
- src/machine/machine-dbus.c | 5 +++++
- 1 file changed, 5 insertions(+)
- --- a/src/machine/machine-dbus.c
- +++ b/src/machine/machine-dbus.c
- @@ -4,6 +4,11 @@
- #include <sys/mount.h>
- #include <sys/wait.h>
-
- +#if !defined(__GLIBC__)
- +#include <string.h>
- +#define basename(src) (strrchr(src,'/') ? strrchr(src,'/')+1 : src)
- +#endif
- +
- #include "alloc-util.h"
- #include "bus-common-errors.h"
- #include "bus-get-properties.h"
|