summaryrefslogtreecommitdiffstats
path: root/utils/mount/mount.c
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2008-03-11 13:11:50 -0400
committerSteve Dickson <steved@dickson.boston.devel.redhat.com>2008-03-11 13:11:50 -0400
commitab26cd622e1a5ef22be2df1f3176158b1505df30 (patch)
treeee919fbd34a3e12763daf49be164db7c8c008a71 /utils/mount/mount.c
parent9c1e19f1c6ba13e08c51c21db6f21ef1e203b37c (diff)
downloadnfs-utils-ab26cd622e1a5ef22be2df1f3176158b1505df30.tar.gz
nfs-utils-ab26cd622e1a5ef22be2df1f3176158b1505df30.tar.xz
nfs-utils-ab26cd622e1a5ef22be2df1f3176158b1505df30.zip
Recently #include directives for autoconf's config.h file were added in
utils/mount/error.c and utils/mount/mount.c, but appropriate HAVE_CONFIG_H checks were not added at the same time. In addition, several other .c files under utils/mount reference autoconf-generated HAVE_ macros, but don't appear to include config.h Also, Heinz-Ado Arnolds <arnolds@MPA-Garching.MPG.DE> reports that this patch is needed to ensure START_STATD is properly defined in utils/mount/network.c. Otherwise start_statd() is always a no-op, even if the configure script defines an appropriate statd start-up script. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Cc: Heinz-Ado Arnolds <arnolds@MPA-Garching.MPG.DE> Signed-off-by: Steve Dickson <steved@dickson.boston.devel.redhat.com>
Diffstat (limited to 'utils/mount/mount.c')
-rw-r--r--utils/mount/mount.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/mount/mount.c b/utils/mount/mount.c
index 839a329..5076468 100644
--- a/utils/mount/mount.c
+++ b/utils/mount/mount.c
@@ -18,7 +18,10 @@
*
*/
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <unistd.h>
#include <sys/types.h>
#include <stdio.h>