void-packages/srcpkgs/elogind/patches/musl.patch
Derriick 841270ec87 elogind: fix building of sway with musl
When trying to build sway-1.0-rc3 with musl, meson stops and indicates that _POSIX_C_SOURCE is not defined in src/systemd/sd-event.h
2019-02-22 08:29:54 -03:00

11 lines
665 B
Diff

--- src/systemd/sd-event.h
+++ src/systemd/sd-event.h
@@ -71,7 +71,7 @@
typedef int (*sd_event_io_handler_t)(sd_event_source *s, int fd, uint32_t revents, void *userdata);
typedef int (*sd_event_time_handler_t)(sd_event_source *s, uint64_t usec, void *userdata);
typedef int (*sd_event_signal_handler_t)(sd_event_source *s, const struct signalfd_siginfo *si, void *userdata);
-#if defined _GNU_SOURCE || _POSIX_C_SOURCE >= 199309L
+#if defined _GNU_SOURCE || (defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 199309L)
typedef int (*sd_event_child_handler_t)(sd_event_source *s, const siginfo_t *si, void *userdata);
#else
typedef void* sd_event_child_handler_t;