[PATCH] mount: Surround syslog.h with the config check

Lauri Kasanen cand at gmx.com
Mon Dec 21 16:55:59 UTC 2020


This lets bb mount build for limited targets without syslog.h,
as long as the parts using it like NFS are disabled.

Signed-off-by: Lauri Kasanen <cand at gmx.com>
---
 util-linux/mount.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/util-linux/mount.c b/util-linux/mount.c
index 0814a52..831dab9 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -182,7 +182,9 @@
 //usage:       "Returns 0 for success, number of failed mounts for -a, or errno for one mount."

 #include <mntent.h>
+#if ENABLE_FEATURE_SYSLOG
 #include <syslog.h>
+#endif
 #include <sys/mount.h>
 // Grab more as needed from util-linux's mount/mount_constants.h
 #ifndef MS_DIRSYNC
--
2.6.2



More information about the busybox mailing list