diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 7733077..5eb1d79 100644 --- a/configure.in +++ b/configure.in @@ -107,6 +107,13 @@ AC_ARG_ENABLE(rquotad, fi AM_CONDITIONAL(CONFIG_RQUOTAD, [test "$enable_rquotad" = "yes"]) +AC_ARG_WITH(mount, + [AC_HELP_STRING([--without-mount], + [Create mount.nfs and do not use the util-linux mount(8) functionality. By default it doesn't.])], + use_mount=$withval, + use_mount=yes) + AM_CONDITIONAL(CONFIG_NOMOUNT, [test "$use_mount" = "no"]) + # Check whether user wants TCP wrappers support AC_TCP_WRAPPERS @@ -314,6 +321,7 @@ AC_CONFIG_FILES([ utils/gssd/Makefile utils/idmapd/Makefile utils/lockd/Makefile + utils/mount/Makefile utils/mountd/Makefile utils/nfsd/Makefile utils/nfsstat/Makefile |