summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2004-12-28 20:40:42 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2004-12-28 20:40:42 (GMT)
commit3c97e0f36f48bad4f1d7accb5649a0e24f21f726 (patch)
treee6f17ab21d90886beb7a5eb83eb960c597849918
parentffc603b77e14bbc15df970cd5ac32fdbe5caddd8 (diff)
downloadmonitoring-plugins-3c97e0f36f48bad4f1d7accb5649a0e24f21f726.tar.gz
sys/param.h needed for sys/swap.h on openbsd 3.6 (Julien Touche)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1063 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 30e4261..76e0ca9 100644
--- a/configure.in
+++ b/configure.in
@@ -1312,12 +1312,12 @@ dnl fwict, the 2-arg is an SVR4 standard, whereas the 3-arg is shared
1312dnl in the various BSD's 1312dnl in the various BSD's
1313dnl 1313dnl
1314 1314
1315AC_CHECK_HEADERS([sys/stat.h sys/param.h])
1315AC_CHECK_HEADERS([sys/swap.h], [], [], [ 1316AC_CHECK_HEADERS([sys/swap.h], [], [], [
1316#ifdef HAVE_SYS_PARAM_H 1317#ifdef HAVE_SYS_PARAM_H
1317#include <sys/param.h> 1318#include <sys/param.h>
1318#endif 1319#endif
1319]) 1320])
1320AC_CHECK_HEADERS([sys/stat.h sys/param.h])
1321AC_CHECK_DECLS([swapctl],,,[ 1321AC_CHECK_DECLS([swapctl],,,[
1322 #include <unistd.h> 1322 #include <unistd.h>
1323 #include <sys/types.h> 1323 #include <sys/types.h>