From 39123db2e48422d5bb65a1f7c20d9ffbd9102f8b Mon Sep 17 00:00:00 2001 From: Bjorn Pagen Date: Thu, 22 Feb 2018 17:05:31 -0500 Subject: [PATCH] Fix build on musl Before this fix, elogind did not compile on musl, as the header "musl-missing.h" tries to include a nonexistant header: "config.h". This patch fixes that. Musl compiles with no issues once this patch is administered. --- src/shared/musl_missing.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shared/musl_missing.h b/src/shared/musl_missing.h index 800dc18be..d42f03c34 100644 --- a/src/shared/musl_missing.h +++ b/src/shared/musl_missing.h @@ -20,7 +20,6 @@ void elogind_set_program_name(const char* pcall); #if !defined(__GLIBC__) -#include "config.h" #include #include #include -- 2.30.2