summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGreg Banks <gnb@melbourne.sgi.com>2006-07-03 14:21:48 +1000
committerGreg Banks <gnb@melbourne.sgi.com>2006-07-03 14:21:48 +1000
commit940c7c304d4a43c00c27529cdddc7c87db6eef87 (patch)
treeb2d1f4d190afd1c21e8e31eada9d6e58cfa0f93b /configure.in
parentb90d201551aaa712c011c3d5de900fad714a26a6 (diff)
parenta503848d423fe1681879936da7b526b15f7eca23 (diff)
downloadnfs-utils-940c7c304d4a43c00c27529cdddc7c87db6eef87.tar.gz
nfs-utils-940c7c304d4a43c00c27529cdddc7c87db6eef87.tar.xz
nfs-utils-940c7c304d4a43c00c27529cdddc7c87db6eef87.zip
Merge branch 'master' of git://linux-nfs.org/nfs-utils
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index 8459ef8..6f9ab40 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
dnl
-AC_INIT([linux nfs-utils],[1.0.8],[nfs@lists.sf.net],[nfs-utils])
+AC_INIT([linux nfs-utils],[1.0.9-pre1],[nfs@lists.sf.net],[nfs-utils])
AC_CANONICAL_BUILD([])
AC_CANONICAL_HOST([])
AC_CONFIG_SRCDIR(tools/getiversion/getiversion.c)
@@ -107,12 +107,12 @@ 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"])
+AC_ARG_ENABLE(mount,
+ [AC_HELP_STRING([--enable-mount],
+ [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=yes@:>@])],
+ enable_mount=$enableval,
+ enable_mount=yes)
+ AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"])
# Check whether user wants TCP wrappers support
AC_TCP_WRAPPERS