summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am4
-rw-r--r--configure.in13
2 files changed, 7 insertions, 10 deletions
diff --git a/Makefile.am b/Makefile.am
index 60e4d3c..39fa032 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,8 +3,8 @@
3SUBDIRS = lib plugins plugins-scripts 3SUBDIRS = lib plugins plugins-scripts
4 4
5EXTRA_DIST = CODING FAQ LEGAL REQUIREMENTS SUPPORT \ 5EXTRA_DIST = CODING FAQ LEGAL REQUIREMENTS SUPPORT \
6acconfig.h subst.in subst.sh Helper.pm \ 6 subst.in subst.sh Helper.pm \
7contrib nagios-plugins.spec.in 7 contrib nagios-plugins.spec.in
8 8
9ACLOCAL_AMFLAGS = -I lib 9ACLOCAL_AMFLAGS = -I lib
10 10
diff --git a/configure.in b/configure.in
index 8f7f4f9..1cad0d9 100644
--- a/configure.in
+++ b/configure.in
@@ -1165,7 +1165,7 @@ else
1165 AC_MSG_WARN([Get qstat from http://www.activesw.com/people/steve/qstat.html in order to make check_game plugin]) 1165 AC_MSG_WARN([Get qstat from http://www.activesw.com/people/steve/qstat.html in order to make check_game plugin])
1166fi 1166fi
1167 1167
1168if test x$ac_cv_path_to_qstat != x 1168if test $ac_cv_path_to_qstat
1169then 1169then
1170 AC_DEFINE_UNQUOTED(PATH_TO_QSTAT,"$ac_cv_path_to_qstat", 1170 AC_DEFINE_UNQUOTED(PATH_TO_QSTAT,"$ac_cv_path_to_qstat",
1171 [path to qstat/quakestat]) 1171 [path to qstat/quakestat])
@@ -1262,16 +1262,13 @@ then
1262 AC_MSG_RESULT([using HP-UX format swapinfo]) 1262 AC_MSG_RESULT([using HP-UX format swapinfo])
1263fi 1263fi
1264 1264
1265if test x$ac_cv_have_swap != x 1265if test x$ac_cv_have_swap != x
1266then 1266then
1267 AC_DEFINE(HAVE_SWAP,1,[Define if swap/swapinfo command is found]) 1267 AC_DEFINE(HAVE_SWAP,1,[Define if swap/swapinfo command is found])
1268fi 1268fi
1269if test x$ac_cv_swap_format != x 1269AC_DEFINE_UNQUOTED(SWAP_FORMAT,"$ac_cv_swap_format",
1270then 1270 [Format string for parsing swap output])
1271 AC_DEFINE_UNQUOTED(SWAP_FORMAT,"$ac_cv_swap_format", 1271if test "x$ac_cv_swap_command" != "x"
1272 [Format string for parsing swap output])
1273fi
1274if test x$ac_cv_swap_command != x
1275then 1272then
1276 AC_DEFINE_UNQUOTED(SWAP_COMMAND,"$ac_cv_swap_command", 1273 AC_DEFINE_UNQUOTED(SWAP_COMMAND,"$ac_cv_swap_command",
1277 [Path to swap/swapinfo binary, with any args]) 1274 [Path to swap/swapinfo binary, with any args])