kumquat-buildroot/package/libcap-ng/0001-add-missing-include.patch
Thomas Petazzoni 741bc4d232 libcap-ng: add patch to fix musl build
Fixes:

  http://autobuild.buildroot.org/results/98c/98c296d8bd717f4419fc6010dc9c92df3027a9f0/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-05-02 09:32:38 +02:00

23 lines
625 B
Diff

Add missing include <sys/types.h>
This include is needed to get the pid_t definition, at least with the
musl C library.
Patch inspired from Alpine Linux patch
http://git.alpinelinux.org/cgit/aports/tree/main/libcap-ng/fix-includes.patch.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Index: b/utils/proc-llist.h
===================================================================
--- a/utils/proc-llist.h
+++ b/utils/proc-llist.h
@@ -26,6 +26,7 @@
#include "config.h"
+#include <sys/types.h>
/* This is the node of the linked list. Any data elements that are per
* record goes here. */