From: Rodrigo Rebello Date: Tue, 1 Dec 2015 21:54:11 +0000 (-0200) Subject: vnstat: add upstream patch to fix build with musl X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=288f7541196d31bd43e6450ccad4ed0fa6ed6c08;p=buildroot.git vnstat: add upstream patch to fix build with musl The header file 'fcntl.h' was missing from 'src/common.h', which caused the build with musl to fail with undeclared symbol errors like the following: dbaccess.c: In function ‘backupdb’: dbaccess.c:268:25: error: ‘O_RDONLY’ undeclared (first use in this function) if ((c = open(current, O_RDONLY)) == -1) { ^ This has already been fixed upstream, so the included patch must be dropped on the next version bump. Signed-off-by: Rodrigo Rebello Signed-off-by: Thomas Petazzoni --- diff --git a/package/vnstat/0001-add-missing-fcntl.h-include-needed-by-open-closes-21.patch b/package/vnstat/0001-add-missing-fcntl.h-include-needed-by-open-closes-21.patch new file mode 100644 index 0000000000..54895801e4 --- /dev/null +++ b/package/vnstat/0001-add-missing-fcntl.h-include-needed-by-open-closes-21.patch @@ -0,0 +1,28 @@ +From a222434e096ce42c7937839f9666691f2b8a612f Mon Sep 17 00:00:00 2001 +From: Teemu Toivola +Date: Sat, 27 Jun 2015 18:29:22 +0300 +Subject: [PATCH] add missing fcntl.h include needed by open(), closes #21 + +[Backport from upstream commit 964d7cd62b8626d51bf7ce06564aa9bd1d2b4d4c. +Fixes undeclared symbol issues when building with musl.] + +Signed-off-by: Rodrigo Rebello +--- + src/common.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/common.h b/src/common.h +index 7616e55..eb0b61f 100644 +--- a/src/common.h ++++ b/src/common.h +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__) || defined(__FreeBSD_kernel__) + #include +-- +2.1.4 +