aports/main/rsyslog/musl-fix.patch
Francisco Guerreiro 9c38c131fb update rsyslog to 8.16.0
* added redis subpackage for hiredis client support
* added different musl fixes for missing constants
* enabled syslog over TCP support by default
2016-03-07 16:40:57 +01:00

14 lines
300 B
Diff

--- rsyslog-8.16.0/runtime/rsyslog.h
+++ rsyslog-8.16.0-musl/runtime/rsyslog.h
@@ -643,3 +643,10 @@
#endif
#endif /* multi-include protection */
+
+/* musl patches for alpine */
+#define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO)
+#define GLOB_BRACE 0
+#ifndef WAIT_ANY
+#define WAIT_ANY (-1)
+#endif