summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2009-06-22 09:49:17 -0400
committerSteve Dickson <steved@redhat.com>2009-06-22 09:49:17 -0400
commit148503a575534a4050d709045a6c0dcddd565445 (patch)
treefedd1f44cf7c60aa62b2703babcba04c48a77bf2 /configure.ac
parentf91afa8eaee1d7ba390918d00d4f7d3f338d18d3 (diff)
downloadnfs-utils-148503a575534a4050d709045a6c0dcddd565445.tar.gz
nfs-utils-148503a575534a4050d709045a6c0dcddd565445.tar.xz
nfs-utils-148503a575534a4050d709045a6c0dcddd565445.zip
Make --enable-tirpc the default. If --enable-tirpc wasn't explicitly
specified, but TIRPC libs or headers aren't present then just throw a warning and disable it. If it was explicitly specified, then throw an error and exit if they aren't present. Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 9ad64ed..e0ca70e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -120,9 +120,9 @@ AC_ARG_ENABLE(mount,
AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"])
AC_ARG_ENABLE(tirpc,
[AC_HELP_STRING([--enable-tirpc],
- [enable use of TI-RPC @<:@default=no@:>@])],
+ [enable use of TI-RPC @<:@default=yes@:>@])],
enable_tirpc=$enableval,
- enable_tirpc=no)
+ enable_tirpc='yes')
AC_ARG_ENABLE(ipv6,
[AC_HELP_STRING([--enable-ipv6],
[enable support for IPv6 @<:@default=no@:>@])],