Remove BR2_DEPRECATED
[buildroot-gz.git] / package / lttng-tools / 0002-Fix-add-missing-sys-types.h-header.patch
blob5ce2da52dc0ff998dd84d8abda9b91964e2ed639
1 From: Baruch Siach <baruch@tkos.co.il>
2 Date: Tue, 8 Mar 2016 14:40:49 +0200
3 Subject: [PATCH] Fix: add missing sys/types.h header
5 The musl C library requires inclusion of sys/types.h for mode_t.
7 Signed-off-by: Baruch Siach <baruch@tkos.co.il>
8 ---
9 Patch status: sent upstream
10 (http://lists.lttng.org/pipermail/lttng-dev/2016-March/025594.html)
12 src/common/runas.h | 1 +
13 1 file changed, 1 insertion(+)
15 diff --git a/src/common/runas.h b/src/common/runas.h
16 index 2c5565af3646..ac1143eecf84 100644
17 --- a/src/common/runas.h
18 +++ b/src/common/runas.h
19 @@ -19,6 +19,7 @@
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 +#include <sys/types.h>
24 #include <unistd.h>
25 #include <pthread.h>
27 --
28 2.7.0