summaryrefslogtreecommitdiffstats
path: root/package/rsyslog
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2016-02-05 22:18:25 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-05 23:09:11 +0100
commit561c43d8323575296a31a4e54c9966ced730c54a (patch)
treeb4bf4dcc79db9ed37365781cd930e5ea71e268f6 /package/rsyslog
parentade46eea1bf0f80dc9300f7080c8fff35dac225e (diff)
downloadbuildroot-561c43d8323575296a31a4e54c9966ced730c54a.tar.gz
buildroot-561c43d8323575296a31a4e54c9966ced730c54a.zip
package/rsyslog: fix musl buil
The build error was not yet being found by the autobuilders: omfile.c: In function ‘prepareFile’: omfile.c:580:3: error: implicit declaration of function ‘open’ [-Werror=implicit-function-declaration] fd = open((char*) newFileName, O_WRONLY|O_APPEND|O_CREAT|O_NOCTTY|O_CLOEXEC, ^ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/rsyslog')
-rw-r--r--package/rsyslog/0001-musl-fcntl-h.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/package/rsyslog/0001-musl-fcntl-h.patch b/package/rsyslog/0001-musl-fcntl-h.patch
new file mode 100644
index 0000000000..5c2daee695
--- /dev/null
+++ b/package/rsyslog/0001-musl-fcntl-h.patch
@@ -0,0 +1,30 @@
+From 835571774dc519dd2cff7ab1020cf298cc953a8f Mon Sep 17 00:00:00 2001
+From: Thordur Bjornsson <thorduri@secnorth.net>
+Date: Tue, 7 Jul 2015 12:34:08 +0200
+Subject: [PATCH] omfile: unconditionally include fcntl.h.
+
+required for open() flags
+
+Signed-off-by: Thordur Bjornsson <thorduri@secnorth.net>
+[Bernd: downloaded from upstream commit:
+ https://github.com/rsyslog/rsyslog/commit/835571774dc519dd2cff7ab1020cf298cc953a8f
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+---
+ tools/omfile.c | 4 +---
+ 1 file changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/tools/omfile.c b/tools/omfile.c
+index 482e723..4444b97 100644
+--- a/tools/omfile.c
++++ b/tools/omfile.c
+@@ -48,9 +48,7 @@
+ #include <libgen.h>
+ #include <unistd.h>
+ #include <sys/file.h>
+-#ifdef OS_SOLARIS
+-# include <fcntl.h>
+-#endif
++#include <fcntl.h>
+ #ifdef HAVE_ATOMIC_BUILTINS
+ # include <pthread.h>
+ #endif
OpenPOWER on IntegriCloud