commit f52c40680f0aad44b9ae16648803453ec00cbb2c Author: Paul Crawford Date: Fri Dec 30 15:55:45 2016 +0000 Compile with musl when nfs is disabled musl does by default not ship with rpc headers. The watchdog should not require rpc headers when nfs support is disabled. Patch by Felix Janda diff --git a/include/sundries.h b/include/sundries.h index 4379982..98c489a 100644 --- a/include/sundries.h +++ b/include/sundries.h @@ -9,9 +9,11 @@ #include #include #include +#if HAVE_NFS #if !defined(bool_t) && !defined(__GLIBC__) #include #endif +#endif extern int mount_mount_quiet; extern int mount_verbose;