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.
This commit is contained in:
Arav K 2020-12-16 21:09:06 +01:00 committed by Simon Ser
parent ba943c694c
commit c9fe0626ca
1 changed files with 1 additions and 1 deletions

View File

@ -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>