From 42bf8750ac87f00ee98369e4964e295a786eafae Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Mon, 20 Jul 2009 12:19:07 -0600 Subject: [PATCH] Fix iostats configure stuff. --- configure.ac.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac.in b/configure.ac.in index 4faf564b..0c0165a2 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -238,13 +238,13 @@ dnl AC_ARG_ENABLE([iostats], AC_HELP_STRING([--enable-iostats], - [enable if you want support for per-task I/O statistics @<:@default=no@:>@]), - [want_iostats="$enableval"], [want_iostats=no]) + [enable if you want support for per-task I/O statistics @<:@default=yes@:>@]), + [want_iostats="$enableval"], [want_iostats=yes]) if test x$want_iostats = xyes; then if test x"$uname" != xLinux; then AC_MSG_NOTICE([iostats not supported on $uname... disabling]) - want_apcupsd=no + want_iostats=no else AC_DEFINE(IOSTATS, 1, [Define if you want support for per-task I/O statistics]) fi