From 08b315e1f564203666ecde95190f59547375b491 Mon Sep 17 00:00:00 2001 From: Ming Liu Date: Tue, 27 Sep 2016 08:43:53 +0200 Subject: rsyslog: fixes musl libc build - struct timeval is defined in sys/time.h with a musl libc. - include fcntl.h without the conditional checking. Signed-off-by: Ming Liu Signed-off-by: Martin Jansa --- .../rsyslog/rsyslog/fix_build_with_musl.patch | 62 ++++++++++++++++++++++ meta-oe/recipes-extended/rsyslog/rsyslog_7.6.7.bb | 1 + 2 files changed, 63 insertions(+) create mode 100644 meta-oe/recipes-extended/rsyslog/rsyslog/fix_build_with_musl.patch diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog/fix_build_with_musl.patch b/meta-oe/recipes-extended/rsyslog/rsyslog/fix_build_with_musl.patch new file mode 100644 index 0000000000..db35db06f2 --- /dev/null +++ b/meta-oe/recipes-extended/rsyslog/rsyslog/fix_build_with_musl.patch @@ -0,0 +1,62 @@ +From b6cc506b6ad0b5dd9aa9831ed42e6759183aaf45 Mon Sep 17 00:00:00 2001 +From: Peter Liu +Date: Mon, 26 Sep 2016 17:03:57 +0200 +Subject: [PATCH] fix building with musl libc + +- struct timeval is defined in sys/time.h with a musl libc. +- include fcntl.h without the conditional checking. + +Upstream-Status: Pending + +Signed-off-by: Peter Liu +--- + tests/msleep.c | 2 +- + tools/omfile.c | 4 +--- + tools/pidfile.c | 2 -- + 3 files changed, 2 insertions(+), 6 deletions(-) + +diff --git a/tests/msleep.c b/tests/msleep.c +index 36fa01b..ca818be 100644 +--- a/tests/msleep.c ++++ b/tests/msleep.c +@@ -26,7 +26,7 @@ + #include "config.h" + #include + #include +-#include ++#include + + int main(int argc, char *argv[]) + { +diff --git a/tools/omfile.c b/tools/omfile.c +index 11eab56..765ef91 100644 +--- a/tools/omfile.c ++++ b/tools/omfile.c +@@ -48,9 +48,7 @@ + #include + #include + #include +-#ifdef OS_SOLARIS +-# include +-#endif ++#include + #ifdef HAVE_ATOMIC_BUILTINS + # include + #endif +diff --git a/tools/pidfile.c b/tools/pidfile.c +index 8298b94..188cca4 100644 +--- a/tools/pidfile.c ++++ b/tools/pidfile.c +@@ -36,9 +36,7 @@ + #include + #include + #include +-#ifdef __sun + #include +-#endif + + #include "srUtils.h" + +-- +1.9.1 + diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_7.6.7.bb b/meta-oe/recipes-extended/rsyslog/rsyslog_7.6.7.bb index 664ab9ff7f..38bbe9cfd9 100644 --- a/meta-oe/recipes-extended/rsyslog/rsyslog_7.6.7.bb +++ b/meta-oe/recipes-extended/rsyslog/rsyslog_7.6.7.bb @@ -29,6 +29,7 @@ SRC_URI = "http://www.rsyslog.com/download/files/download/rsyslog/${BPN}-${PV}.t file://use_gnutls_certificate_type_set_priority_only_if_available.patch \ file://bugfix-include-config.h-before-any-other-headers.patch \ file://enable_tls_ptests.patch \ + file://fix_build_with_musl.patch \ " SRC_URI[md5sum] = "fa78a6e675fe78a811edcdf7eb6f1975" -- cgit v1.2.3-54-g00ecf