]> code.ossystems Code Review - openembedded-core.git/blob
198f198619804d40cb977ef5f03e656e9f810a83
[openembedded-core.git] /
1 From 8f91385dbd5e7c14b36ecbd8a01ca82c709f6d77 Mon Sep 17 00:00:00 2001
2 From: Khem Raj <raj.khem@gmail.com>
3 Date: Fri, 24 Jun 2016 18:19:29 +0000
4 Subject: [PATCH] Include linux/param.h for EXEC_PAGESIZE definition
5
6 Musl does not include linux/param.h whereas glibc
7 does, so it fails to build on musl.
8
9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
10 ---
11 Upstream-Status: Submitted
12
13  src/watchdog.c | 3 +++
14  1 file changed, 3 insertions(+)
15
16 diff --git a/src/watchdog.c b/src/watchdog.c
17 index acf6450..486384a 100644
18 --- a/src/watchdog.c
19 +++ b/src/watchdog.c
20 @@ -26,6 +26,9 @@
21  #include <sys/param.h>         /* For EXEC_PAGESIZE */
22  #include <linux/oom.h>
23  #include <linux/watchdog.h>
24 +#ifdef __linux__
25 +#include <linux/param.h>
26 +#endif
27  #include <string.h>
28  
29  #include <libgen.h>
30 -- 
31 1.8.3.1
32