summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 42e281c)
raw | patch | inline | side by side (parent: 42e281c)
author | niki <niki> | |
Fri, 16 Dec 2005 17:03:48 +0000 (17:03 +0000) | ||
committer | niki <niki> | |
Fri, 16 Dec 2005 17:03:48 +0000 (17:03 +0000) |
configure.in | patch | blob | history |
diff --git a/configure.in b/configure.in
index 4fc7c9a06df0aa72b10bf98ec9a9d2ceacd98568..0c867962f761c2d0c08c9c8c2b58d104d0d6b20d 100644 (file)
--- a/configure.in
+++ b/configure.in
@@ -109,8 +109,7 @@ AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"]
AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
# For users module
-have_getutent="no"
-AC_CHECK_FUNCS(getutent getutxent, [have_getutent="yes"])
+AC_CHECK_FUNCS(getutent getutxent)
# For quota module
AC_CHECK_FUNCS(quotactl)
then
AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no"])
fi
+if test "x$with_rrdtool" = "xyes"
+then
+ collect_rrdtool=1
+else
+ collect_rrdtool=0
+fi
+AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
+ [Wether or not to use rrdtool library])
AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
#AC_ARG_WITH(pth, AC_HELP_STRING([--with-pth=PFX], [Path to pth (experimental).]),
if test "$ac_system" = "Solaris"
then
with_kstat="yes"
- AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (not found)"])
+ AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
AC_CHECK_LIB(devinfo, di_init)
AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
else
with_kstat="no (Solaris only)"
fi
+if test "x$with_kstat" = "xyes"
+then
+ collect_kstat=1
+else
+ collect_kstat=0
+fi
+AC_DEFINE_UNQUOTED(COLLECT_KSTAT, [$collect_kstat],
+ [Wether or not to use kstat library (Solaris)])
+AM_CONDITIONAL(BUILD_WITH_KSTAT, test "x$with_kstat" = "xyes")
AC_ARG_WITH(libstatgrab, AC_HELP_STRING([--with-libstatgrab@<:@=PFX@:>@], [Path to libstatgrab.]),
[