cleanup on sensors
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, 3.5.0)
3 AC_CONFIG_SRCDIR(src/collectd.c)
4 AC_CONFIG_HEADERS(src/config.h)
5 AM_INIT_AUTOMAKE(dist-bzip2)
6 AC_LANG(C)
7
8 AC_PREFIX_DEFAULT("/opt/collectd")
9
10 #
11 # Checks for programs.
12 #
13 AC_PROG_CC
14 AC_PROG_CPP
15 AC_PROG_INSTALL
16 AC_PROG_LN_S
17 AC_PROG_MAKE_SET
18
19 dnl configure libtool
20 AC_DISABLE_STATIC
21 AC_LIBLTDL_CONVENIENCE
22 AC_SUBST(LTDLINCL)
23 AC_SUBST(LIBLTDL)
24 AC_LIBTOOL_DLOPEN
25 AC_PROG_LIBTOOL
26 #AC_PROG_RANLIB
27 AC_CONFIG_SUBDIRS(libltdl)
28
29 #
30 # Checks for header files.
31 #
32 AC_HEADER_SYS_WAIT
33 AC_HEADER_DIRENT
34 AC_CHECK_HEADERS(fcntl.h)
35 AC_CHECK_HEADERS(signal.h)
36 AC_CHECK_HEADERS(sys/socket.h)
37 AC_CHECK_HEADERS(sys/select.h)
38 AC_CHECK_HEADERS(netdb.h)
39 AC_CHECK_HEADERS(sys/resource.h)
40 AC_CHECK_HEADERS(sys/param.h)
41 AC_CHECK_HEADERS(errno.h)
42 AC_CHECK_HEADERS(syslog.h)
43
44 # For cpu modules
45 AC_CHECK_HEADERS(sys/sysctl.h sys/dkstat.h)
46
47 # For load module
48 AC_CHECK_HEADERS(sys/loadavg.h)
49
50 # For ping module
51 AC_CHECK_HEADERS(arpa/inet.h)
52 AC_CHECK_HEADERS(netinet/in.h)
53
54 # For users module
55 AC_CHECK_HEADERS(utmp.h)
56 AC_CHECK_HEADERS(utmpx.h)
57
58 # For quota module
59 AC_CHECK_HEADERS(grp.h pwd.h sys/ucred.h)
60 AC_CHECK_HEADERS(ctype.h)
61 AC_CHECK_HEADERS(limits.h)
62 AC_CHECK_HEADERS(sys/quota.h)
63 AC_CHECK_HEADERS(xfs/xqm.h)
64
65 # For mount interface
66 AC_CHECK_HEADERS(fs_info.h)
67 AC_CHECK_HEADERS(fshelp.h)
68 AC_CHECK_HEADERS(paths.h)
69 AC_CHECK_HEADERS(mntent.h)
70 AC_CHECK_HEADERS(mnttab.h)
71 AC_CHECK_HEADERS(sys/fstyp.h)
72 AC_CHECK_HEADERS(sys/fs_types.h)
73 AC_CHECK_HEADERS(sys/mntent.h)
74 AC_CHECK_HEADERS(sys/mnttab.h)
75 AC_CHECK_HEADERS(sys/mount.h)
76 AC_CHECK_HEADERS(sys/statfs.h)
77 AC_CHECK_HEADERS(sys/vfs.h)
78 AC_CHECK_HEADERS(sys/vfstab.h)
79
80 # For debugging interface (variable number of arguments)
81 AC_CHECK_HEADERS(stdarg.h)
82
83 dnl Checking for libraries
84 AC_CHECK_LIB(m, ext)
85
86 #
87 # Checks for typedefs, structures, and compiler characteristics.
88 #
89 AC_C_CONST
90 AC_TYPE_PID_T
91 AC_TYPE_SIZE_T
92 AC_HEADER_TIME
93
94 #
95 # Checks for library functions.
96 #
97 AC_PROG_GCC_TRADITIONAL
98 AC_CHECK_FUNCS(gettimeofday select strdup strtol)
99 AC_CHECK_FUNCS(socket, , AC_CHECK_LIB(socket, socket))
100 AC_CHECK_FUNCS(gethostbyname, , AC_CHECK_LIB(nsl, gethostbyname))
101 AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
102 AC_CHECK_FUNCS(strncasecmp strcasecmp)
103 AC_CHECK_FUNCS(openlog syslog closelog)
104
105 # For cpu module
106 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
107
108 # For load module
109 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
110
111 # For users module
112 AC_CHECK_FUNCS(getutent getutxent)
113
114 # For quota module
115 AC_CHECK_FUNCS(quotactl)
116 AC_CHECK_FUNCS(getgrgid getpwuid)
117
118 # For mount interface
119 AC_CHECK_FUNCS(getfsent getvfsent listmntent)
120 AC_FUNC_GETMNTENT
121 if test "x$ac_cv_func_getmntent" = 'xyes'; then
122         saveCFLAGS="$CFLAGS"
123         CFLAGS="-Wall -Werror $CFLAGS"
124         AC_CACHE_CHECK([whether getmntent takes one argument],
125                 [fu_cv_getmntent1],
126                 AC_COMPILE_IFELSE(
127                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
128 #include "$srcdir/src/utils_mount.h"]],
129                                 [[(void)getmntent((FILE *)NULL);]]
130                         ),
131                         [fu_cv_getmntent1=yes],
132                         [fu_cv_getmntent1=no]
133                 )
134         )
135         if test "x$fu_cv_getmntent1" = 'xno'; then
136                 AC_CACHE_CHECK([whether getmntent takes two arguments],
137                         [fu_cv_getmntent2],
138                         AC_COMPILE_IFELSE(
139                                 AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
140 #include "$srcdir/src/utils_mount.h"]],
141                                         [[(void)getmntent((FILE *)NULL,
142                                                 (struct mnttab *)NULL);]]
143                                 ),
144                                 [fu_cv_getmntent2=yes],
145                                 [fu_cv_getmntent2=no]
146                         )
147                 )
148         fi
149         CFLAGS="$saveCFLAGS"
150 fi
151 if test "x$fu_cv_getmntent1" = 'xyes'; then
152         AC_DEFINE(HAVE_GETMNTENT1,
153                 1,
154                 [Define if there is a function named getmntent
155                         for reading the list of mounted filesystems, and
156                         that function takes a single argument. (4.3BSD,
157                         SunOS, HP-UX, Dynix, Irix, Linux)]
158                 )
159 fi
160 if test "x$fu_cv_getmntent2" = 'xyes'; then
161         AC_DEFINE(HAVE_GETMNTENT2,
162                 1,
163                 [Define if there is a function named getmntent
164                         for reading the list of mounted filesystems, and
165                         that function takes two arguments. (SVR4)]
166                 )
167 fi
168
169 AC_MSG_CHECKING([for kernel type ($host_os)])
170 case $host_os in
171         *linux*)
172         AC_DEFINE([KERNEL_LINUX], [], [True if program is to be compiled for a Linux kernel])
173         ac_system="Linux"
174         ;;
175         *solaris*)
176         AC_DEFINE([KERNEL_SOLARIS], [], [True if program is to be compiled for a Solaris kernel])
177         ac_system="Solaris"
178         ;;
179         *)
180         ac_system="unknown"
181 esac
182 AC_MSG_RESULT([$ac_system])
183
184 dnl Checks for libraries.
185 AC_CHECK_LIB(socket, socket)
186 AC_CHECK_LIB(resolv, res_search)
187
188 m4_divert_once([HELP_WITH], [
189 collectd additional packages:])
190
191 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
192 AC_ARG_WITH(rrdtool, AC_HELP_STRING([--with-rrdtool=PFX], [Path to rrdtool.]),
193 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
194         then
195                 LDFLAGS="$LDFLAGS -L$withval/lib"
196                 CPPFLAGS="$CPPFLAGS -I$withval/include"
197                 with_rrdtool="yes"
198         fi
199 ], [with_rrdtool="yes"])
200 if test "x$with_rrdtool" = "xyes"
201 then
202         AC_CHECK_LIB(rrd, rrd_update,, [with_rrdtool="no"], [-lm])
203 fi
204 if test "x$with_rrdtool" = "xyes"
205 then
206         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no"])
207 fi
208 if test "x$with_rrdtool" = "xyes"
209 then
210         collect_rrdtool=1
211 else
212         collect_rrdtool=0
213 fi
214 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
215         [Wether or not to use rrdtool library])
216 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
217
218 #AC_ARG_WITH(pth, AC_HELP_STRING([--with-pth=PFX], [Path to pth (experimental).]),
219 #[      if test "x$withval" != "xno" && test "x$withval" != "xyes"
220 #       then
221 #               LDFLAGS="$LDFLAGS -L$withval/lib"
222 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
223 #               with_pth="yes"
224 #       fi
225 #], [with_pth="no"])
226 #if test "x$with_pth" = "xyes"
227 #then
228 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no"], [])
229 #fi
230 #if test "x$with_pth" = "xyes"
231 #then
232 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no"])
233 #fi
234 #if test "x$with_pth" = "xyes"
235 #then
236 #       collect_pth=1
237 #else
238 #       collect_pth=0
239 #fi
240 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
241 #       [Wether or not to use pth (portable threads) library])
242 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
243
244 if test "$ac_system" = "Solaris"
245 then
246         with_kstat="yes"
247         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
248         AC_CHECK_LIB(devinfo, di_init)
249         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
250 else
251         with_kstat="no (Solaris only)"
252 fi
253 if test "x$with_kstat" = "xyes"
254 then
255         collect_kstat=1
256 else
257         collect_kstat=0
258 fi
259 AC_DEFINE_UNQUOTED(COLLECT_KSTAT, [$collect_kstat],
260         [Wether or not to use kstat library (Solaris)])
261 AM_CONDITIONAL(BUILD_WITH_KSTAT, test "x$with_kstat" = "xyes")
262
263 AC_ARG_WITH(libstatgrab, AC_HELP_STRING([--with-libstatgrab@<:@=PFX@:>@], [Path to libstatgrab.]),
264 [
265         if test "x$withval" != "xno" && test "x$withval" != "xyes"
266         then
267                 LDFLAGS="$LDFLAGS -L$withval/lib"
268                 CPPFLAGS="$CPPFLAGS -I$withval/include"
269                 with_libstatgrab="yes"
270         fi
271 ],
272 [
273         if test "x$ac_system" == "xunknown"
274         then
275                 with_libstatgrab="yes"
276         else
277                 with_libstatgrab="no"
278         fi
279 ])
280 if test "x$with_libstatgrab" = "xyes"
281 then
282         AC_CHECK_LIB(devstat, getdevs)
283         AC_CHECK_LIB(kvm, kvm_getargv)
284         AC_CHECK_LIB(statgrab, sg_init,, [with_libstatgrab="no (libstatgrab not found)"])
285         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
286 fi
287 if test "x$with_libstatgrab" = "xyes"
288 then
289         collect_libstatgrab=1
290 else
291         collect_libstatgrab=0
292 fi
293 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
294         [Wether or not to use statgrab library])
295 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
296
297 AC_ARG_WITH(lm-sensors, AC_HELP_STRING([--with-lm-sensors@<:@=PFX@:>@], [Path to lm_sensors.]),
298 [
299         if test "x$withval" != "xno" && test "x$withval" != "xyes"
300         then
301                 LDFLAGS="$LDFLAGS -L$withval/lib"
302                 CPPFLAGS="$CPPFLAGS -I$withval/include"
303                 with_lm_sensors="yes"
304         fi
305 ],
306 [
307         if test "x$ac_system" = "xLinux"
308         then
309                 with_lm_sensors="yes"
310         else
311                 with_lm_sensors="no"
312         fi
313 ])
314 if test "x$with_lm_sensors" = "xyes"
315 then
316         AC_CHECK_LIB(sensors, sensors_init,
317         [
318                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
319         ],
320         [with_lm_sensors="no (libsensors not found)"])
321         AC_CHECK_HEADERS(sensors/sensors.h,
322         [
323                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
324         ],
325         [with_lm_sensors="no (sensors/sensors.h not found)"])
326 fi
327 if test "x$with_lm_sensors" = "xyes"
328 then
329         collect_lm_sensors=1
330 else
331         collect_lm_sensors=0
332 fi
333 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
334         [Wether or not to use sensors library])
335 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
336
337
338
339 #
340 # Check for enabled/disabled features
341 #
342 m4_divert_once([HELP_ENABLE], [
343 collectd features:])
344 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
345         [Enable debugging (disabled by default)]),
346         [], [enable_debug="no"])
347 if test "x$enable_debug" = "xno"
348 then
349         collect_debug=0
350 else
351         if test "x$enable_debug" = "xyes"
352         then
353                 collect_debug=1
354         else
355                 AC_MSG_NOTICE([Please specify either --enable-debug or --disable-debug; Enabling debugging.])
356                 collect_debug=1
357                 enable_debug="yes"
358         fi
359 fi
360 AC_DEFINE_UNQUOTED(COLLECT_DEBUG, [$collect_debug],
361         [Wether or not to enable debugging])
362 AM_CONDITIONAL(BUILD_DEBUG, test "x$enable_debug" = "xyes")
363
364 AC_ARG_ENABLE(daemon, AC_HELP_STRING([--disable-daemon],
365         [Disable daemon mode (enabled by default)]),
366         [], [enable_daemon="yes"])
367 if test "x$enable_daemon" = "xno"
368 then
369         collect_daemon=0
370 else
371         if test "x$enable_daemon" = "xyes"
372         then
373                 collect_daemon=1
374         else
375                 AC_MSG_NOTICE([Please specify either --enable-daemon or --disable-daemon; Enabling daemon mode.])
376                 collect_daemon=1
377                 enable_daemon="yes"
378         fi
379 fi
380 AC_DEFINE_UNQUOTED(COLLECT_DAEMON, [$collect_daemon],
381         [Wether or not to enable daemon mode])
382 AM_CONDITIONAL(BUILD_DAEMON, test "x$enable_daemon" = "xyes")
383
384 m4_divert_once([HELP_ENABLE], [
385 collectd modules:])
386 AC_ARG_ENABLE(cpu, AC_HELP_STRING([--disable-cpu], [Disable CPU usage statistics]),, [enable_cpu="yes"])
387 if test "x$enable_cpu" != "xno"
388 then
389         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$have_sysctlbyname" = "xyes"
390         then
391                 enable_cpu="yes"
392         else
393                 enable_cpu="no"
394         fi
395 fi
396 if test "x$enable_cpu" = "xno"
397 then
398         AC_DEFINE(COLLECT_CPU, 0, [Wether or not to collect CPU usage statistics])
399 fi
400 AM_CONDITIONAL(BUILD_MODULE_CPU, test "x$enable_cpu" = "xyes")
401
402 AC_ARG_ENABLE(cpufreq, AC_HELP_STRING([--disable-cpufreq], [Disable system cpu frequency statistics]),, [enable_cpufreq="yes"])
403 if test "x$enable_cpufreq" != "xno"
404 then
405         if test "x$ac_system" = "xLinux"
406         then
407                 enable_cpufreq="yes"
408         else
409                 enable_cpufreq="no"
410         fi
411 fi
412 if test "x$enable_cpufreq" = "xno"
413 then
414         AC_DEFINE(COLLECT_CPUFREQ, 0, [Wether or not to collect cpu frequency statistics])
415 fi
416 AM_CONDITIONAL(BUILD_MODULE_CPUFREQ, test "x$enable_cpufreq" = "xyes")
417
418 AC_ARG_ENABLE(disk, AC_HELP_STRING([--disable-disk], [Disable disk/partition statistics]),, [enable_disk="yes"])
419 if test "x$enable_disk" != "xno"
420 then
421         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes"
422         then
423                 enable_disk="yes"
424         else
425                 enable_disk="no"
426         fi
427 fi
428 if test "x$enable_disk" = "xno"
429 then
430         AC_DEFINE(COLLECT_DISK, 0, [Wether or not to collect diskstats])
431 fi
432 AM_CONDITIONAL(BUILD_MODULE_DISK, test "x$enable_disk" = "xyes")
433
434 AC_ARG_ENABLE(hddtemp, AC_HELP_STRING([--disable-hddtemp], [Disable hdd temperature statistics]),, [enable_hddtemp="yes"])
435 if test "x$enable_hddtemp" = "xno"
436 then
437         AC_DEFINE(COLLECT_HDDTEMP, 0, [Wether or not to collect hdd temperature statistics])
438 fi
439 AM_CONDITIONAL(BUILD_MODULE_HDDTEMP, test "x$enable_hddtemp" = "xyes")
440
441 AC_ARG_ENABLE(load, AC_HELP_STRING([--disable-load], [Disable system load statistics]),, [enable_load="yes"])
442 if test "x$enable_load" != "xno"
443 then
444         if test "x$have_getloadavg" = "xyes" -o "x$ac_system" = "xLinux" -o "x$with_libstatgrab" = "xyes"
445         then
446                 enable_load="yes"
447         else
448                 enable_load="no"
449         fi
450 fi
451 if test "x$enable_load" = "xno"
452 then
453         AC_DEFINE(COLLECT_LOAD, 0, [Wether or not to collect system load statistics])
454 fi
455 AM_CONDITIONAL(BUILD_MODULE_LOAD, test "x$enable_load" = "xyes")
456
457 AC_ARG_ENABLE(memory, AC_HELP_STRING([--disable-memory], [Disable memory statistics]),, [enable_memory="yes"])
458 if test "x$enable_memory" != "xno"
459 then
460         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
461         then
462                 enable_memory="yes"
463         else
464                 enable_memory="no"
465         fi
466 fi
467 if test "x$enable_memory" = "xno"
468 then
469         AC_DEFINE(COLLECT_MEMORY, 0, [Wether or not to collect memory statistics])
470 fi
471 AM_CONDITIONAL(BUILD_MODULE_MEMORY, test "x$enable_memory" = "xyes")
472
473 AC_ARG_ENABLE(nfs, AC_HELP_STRING([--disable-nfs], [Disable nfs statistics]),, [enable_nfs="yes"])
474 if test "x$enable_nfs" != "xno"
475 then
476         if test "x$ac_system" = "xLinux"
477         then
478                 enable_nfs="yes"
479         else
480                 enable_nfs="no"
481         fi
482 fi
483 if test "x$enable_nfs" = "xno"
484 then
485         AC_DEFINE(COLLECT_NFS, 0, [Wether or not to collect nfs statistics])
486 fi
487 AM_CONDITIONAL(BUILD_MODULE_NFS, test "x$enable_nfs" = "xyes")
488
489 AC_ARG_ENABLE(ping, AC_HELP_STRING([--disable-ping], [Disable ping statistics]),, [enable_ping="yes"])
490 if test "x$enable_ping" != "xno"
491 then
492         enable_ping="yes"
493 fi
494 if test "x$enable_ping" = "xno"
495 then
496         AC_DEFINE(COLLECT_PING, 0, [Wether or not to collect ping statistics])
497 fi
498 AM_CONDITIONAL(BUILD_MODULE_PING, test "x$enable_ping" = "xyes")
499
500 AC_ARG_ENABLE(processes, AC_HELP_STRING([--disable-processes], [Disable processes statistics]),, [enable_processes="yes"])
501 if test "x$enable_processes" != "xno"
502 then
503         if test "x$ac_system" = "xLinux" 
504         then
505                 enable_processes="yes"
506         else
507                 enable_processes="no"
508         fi
509 fi
510 if test "x$enable_processes" = "xno"
511 then
512         AC_DEFINE(COLLECT_PROCESSES, 0, [Wether or not to collect processes statistics])
513 fi
514 AM_CONDITIONAL(BUILD_MODULE_PROCESSES, test "x$enable_processes" = "xyes")
515
516 #AC_ARG_ENABLE(quota, AC_HELP_STRING([--enable-quota],
517 #       [Enable quota statistics (experimental, disabled by default)]),
518 #       [], [enable_quota="no"])
519 #if test "x$enable_quota" = "xno"
520 #then
521 #       collect_quota=0
522 #else
523 #       if test "x$enable_quota" = "xyes"
524 #       then
525 #               collect_quota=1
526 #       else
527 #               AC_MSG_NOTICE([Please specify either --enable-quota or --disable-quota; Enabling quota statistics.])
528 #               collect_quota=1
529 #               enable_quota="yes"
530 #       fi
531 #fi
532 #AC_DEFINE_UNQUOTED(COLLECT_QUOTA, [$collect_quota],
533 #       [Wether or not to collect quota statistics])
534 #AM_CONDITIONAL(BUILD_MODULE_QUOTA, test "x$enable_quota" = "xyes")
535
536 AC_ARG_ENABLE(sensors, AC_HELP_STRING([--disable-sensors], [Disable lm_sensors statistics]),, [enable_sensors=$with_lm_sensors])
537 if test "x$enable_sensors" != "xno"
538 then
539         if test "x$with_lm_sensors" = "xyes"
540         then
541                 enable_sensors="yes"
542         else
543                 enable_sensors="no"
544         fi
545 fi
546 if test "x$enable_sensors" = "xno"
547 then
548         AC_DEFINE(COLLECT_SENSORS, 0, [Wether or not to collect lm_sensors statistics])
549 fi
550 AM_CONDITIONAL(BUILD_MODULE_SENSORS, test "x$enable_sensors" = "xyes")
551
552 AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [Disable serial statistics]),, [enable_serial="yes"])
553 if test "x$enable_serial" != "xno"
554 then
555         if test "x$ac_system" = "xLinux"
556         then
557                 enable_serial="yes"
558         else
559                 enable_serial="no"
560         fi
561 fi
562 if test "x$enable_serial" = "xno"
563 then
564         AC_DEFINE(COLLECT_SERIAL, 0, [Wether or not to collect serial statistics])
565 fi
566 AM_CONDITIONAL(BUILD_MODULE_SERIAL, test "x$enable_serial" = "xyes")
567
568 AC_ARG_ENABLE(swap, AC_HELP_STRING([--disable-swap], [Disable swap statistics]),, [enable_swap="yes"])
569 if test "x$enable_swap" != "xno"
570 then
571         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
572         then
573                 enable_swap="yes"
574         else
575                 enable_swap="no"
576         fi
577 fi
578 if test "x$enable_swap" = "xno"
579 then
580         AC_DEFINE(COLLECT_SWAP, 0, [Wether or not to collect swap statistics])
581 fi
582 AM_CONDITIONAL(BUILD_MODULE_SWAP, test "x$enable_swap" = "xyes")
583
584 AC_ARG_ENABLE(tape, AC_HELP_STRING([--disable-tape], [Disable tape statistics]),, [enable_tape="yes"])
585 if test "x$enable_tape" != "xno"
586 then
587         if test "x$with_kstat" = "xyes"
588         then
589                 enable_tape="yes"
590         else
591                 enable_tape="no"
592         fi
593 fi
594 if test "x$enable_tape" = "xno"
595 then
596         AC_DEFINE(COLLECT_TAPE, 0, [Wether or not to collect tape statistics])
597 fi
598 AM_CONDITIONAL(BUILD_MODULE_TAPE, test "x$enable_tape" = "xyes")
599
600 AC_ARG_ENABLE(traffic, AC_HELP_STRING([--disable-traffic], [Disable system traffic statistics]),, [enable_traffic="yes"])
601 if test "x$enable_traffic" != "xno"
602 then
603         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
604         then
605                 enable_traffic="yes"
606         else
607                 enable_traffic="no"
608         fi
609 fi
610 if test "x$enable_traffic" = "xno"
611 then
612         AC_DEFINE(COLLECT_TRAFFIC, 0, [Wether or not to collect network traffic statistics])
613 fi
614 AM_CONDITIONAL(BUILD_MODULE_TRAFFIC, test "x$enable_traffic" = "xyes")
615
616 AC_ARG_ENABLE(users, AC_HELP_STRING([--disable-users], [Disable user count statistics]),, [enable_users="yes"])
617 if test "x$enable_users" != "xno"
618 then
619        if test "x$have_getutent" = "xyes"
620        then
621                enable_users="yes"
622        else
623                enable_users="no"
624        fi
625 fi
626 if test "x$enable_users" = "xno"
627 then
628        AC_DEFINE(COLLECT_USERS, 0, [Wether or not to collect user count statistics])
629 fi
630 AM_CONDITIONAL(BUILD_MODULE_USERS, test "x$enable_users" = "xyes")
631
632 AC_OUTPUT(Makefile src/libping/Makefile src/Makefile)
633
634 cat <<EOF;
635
636 Configuration:
637   Libraries:
638     librrd  . . . . . . $with_rrdtool
639     lm_sensors  . . . . $with_lm_sensors
640     libstatgrab . . . . $with_libstatgrab
641     libkstat  . . . . . $with_kstat
642
643   Features:
644     debug . . . . . . . $enable_debug
645     daemon mode . . . . $enable_daemon
646
647   Modules:
648     cpu . . . . . . . . $enable_cpu
649     cpufreq . . . . . . $enable_cpufreq
650     disk  . . . . . . . $enable_disk
651     hddtemp . . . . . . $enable_hddtemp
652     load  . . . . . . . $enable_load
653     memory  . . . . . . $enable_memory
654     nfs . . . . . . . . $enable_nfs
655     ping  . . . . . . . $enable_ping
656     processes . . . . . $enable_processes
657     sensors . . . . . . $enable_sensors
658     serial  . . . . . . $enable_serial
659     swap  . . . . . . . $enable_swap
660     tape  . . . . . . . $enable_tape
661     traffic . . . . . . $enable_traffic
662     users . . . . . . . $enable_users
663
664 EOF