All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix build on Fedora 13.
@ 2011-06-07 17:58 greearb
  2011-06-07 18:14 ` Chuck Lever
  0 siblings, 1 reply; 7+ messages in thread
From: greearb @ 2011-06-07 17:58 UTC (permalink / raw)
  To: linux-nfs; +Cc: Ben Greear

From: Ben Greear <greearb@candelatech.com>

Need sys/stat.h for S_ISDIR and S_ISREG symbols.

Signed-off-by: Ben Greear <greearb@candelatech.com>
---
:100644 100644 99618c9... e057c5c... M	utils/exportfs/exportfs.c
:100644 100644 2aa3d4f... a8ce028... M	utils/mount/mount.c
 utils/exportfs/exportfs.c |    4 ++++
 utils/mount/mount.c       |    3 +++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c
index 99618c9..e057c5c 100644
--- a/utils/exportfs/exportfs.c
+++ b/utils/exportfs/exportfs.c
@@ -12,6 +12,10 @@
 #include <config.h>
 #endif
 
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
+
 #include <unistd.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/utils/mount/mount.c b/utils/mount/mount.c
index 2aa3d4f..a8ce028 100644
--- a/utils/mount/mount.c
+++ b/utils/mount/mount.c
@@ -20,6 +20,9 @@
 
 #include "config.h"
 #include <unistd.h>
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
 #include <sys/types.h>
 #include <stdio.h>
 #include <string.h>
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-06-08 11:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-07 17:58 [PATCH] Fix build on Fedora 13 greearb
2011-06-07 18:14 ` Chuck Lever
2011-06-07 18:24   ` Ben Greear
2011-06-07 21:47     ` Ben Greear
2011-06-08  3:12       ` Steve Dickson
2011-06-08  4:00         ` Ben Greear
2011-06-08 11:08           ` Steve Dickson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.