commit c5cb4e1a0339844ae3f55ff1dc4a716c28012f05 Author: Paul Crawford Date: Tue Jun 28 18:08:48 2016 +0100 Include linux/param.h for EXEC_PAGESIZE definition Musl does not include linux/param.h whereas glibc does, so it fails to build on musl. Patch supplied by Khem Raj diff --git a/src/watchdog.c b/src/watchdog.c index acf6450..486384a 100644 --- a/src/watchdog.c +++ b/src/watchdog.c @@ -26,6 +26,9 @@ #include /* For EXEC_PAGESIZE */ #include #include +#ifdef __linux__ +#include +#endif #include #include