summaryrefslogtreecommitdiff
blob: bee4ddc8d7bcb656a9f5983613b3dcce9eabd5a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
commit f52c40680f0aad44b9ae16648803453ec00cbb2c
Author: Paul Crawford <psc@sat.dundee.ac.uk>
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 <fjanda@users.sf.net>

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 <signal.h>
 #include <stdarg.h>
 #include <stdlib.h>
+#if HAVE_NFS
 #if !defined(bool_t) && !defined(__GLIBC__)
 #include <rpc/types.h>
 #endif
+#endif
 
 extern int mount_mount_quiet;
 extern int mount_verbose;