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.
master
Arav K 4 years ago committed by Simon Ser
parent ba943c694c
commit c9fe0626ca

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

Loading…
Cancel
Save