commit c9fe0626ca7351fc31e20545f91631cb40b0ea17
parent ba943c694cec527580c4d9f2098157dad6af55b1
Author: Arav K <nothien@uber.space>
Date: Wed, 16 Dec 2020 21:09:06 +0100
Fix swaybar tray for non-systemd
Meson's generated config.h header defines false macros as 0, not
undefined. This means that the header line, which was checking for the
definition existing, not a non-zero value, was incorrect. Now the
swaybar tray can be used with systemd, elogind, or basu.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/swaybar/tray/tray.h b/include/swaybar/tray/tray.h
@@ -2,7 +2,7 @@
#define _SWAYBAR_TRAY_TRAY_H
#include "config.h"
-#ifdef HAVE_LIBSYSTEMD
+#if HAVE_LIBSYSTEMD
#include <systemd/sd-bus.h>
#elif HAVE_LIBELOGIND
#include <elogind/sd-bus.h>