syslog and sys/param.h check
[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 have_getutent="no"
113 AC_CHECK_FUNCS(getutent getutxent, [have_getutent="yes"])
114
115 # For quota module
116 AC_CHECK_FUNCS(quotactl)
117 AC_CHECK_FUNCS(getgrgid getpwuid)
118
119 # For mount interface
120 AC_CHECK_FUNCS(getfsent getvfsent listmntent)
121 AC_FUNC_GETMNTENT
122 if test "x$ac_cv_func_getmntent" = 'xyes'; then
123         saveCFLAGS="$CFLAGS"
124         CFLAGS="-Wall -Werror $CFLAGS"
125         AC_CACHE_CHECK([whether getmntent takes one argument],
126                 [fu_cv_getmntent1],
127                 AC_COMPILE_IFELSE(
128                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
129 #include "$srcdir/src/utils_mount.h"]],
130                                 [[(void)getmntent((FILE *)NULL);]]
131                         ),
132                         [fu_cv_getmntent1=yes],
133                         [fu_cv_getmntent1=no]
134                 )
135         )
136         if test "x$fu_cv_getmntent1" = 'xno'; then
137                 AC_CACHE_CHECK([whether getmntent takes two arguments],
138                         [fu_cv_getmntent2],
139                         AC_COMPILE_IFELSE(
140                                 AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
141 #include "$srcdir/src/utils_mount.h"]],
142                                         [[(void)getmntent((FILE *)NULL,
143                                                 (struct mnttab *)NULL);]]
144                                 ),
145                                 [fu_cv_getmntent2=yes],
146                                 [fu_cv_getmntent2=no]
147                         )
148                 )
149         fi
150         CFLAGS="$saveCFLAGS"
151 fi
152 if test "x$fu_cv_getmntent1" = 'xyes'; then
153         AC_DEFINE(HAVE_GETMNTENT1,
154                 1,
155                 [Define if there is a function named getmntent
156                         for reading the list of mounted filesystems, and
157                         that function takes a single argument. (4.3BSD,
158                         SunOS, HP-UX, Dynix, Irix, Linux)]
159                 )
160 fi
161 if test "x$fu_cv_getmntent2" = 'xyes'; then
162         AC_DEFINE(HAVE_GETMNTENT2,
163                 1,
164                 [Define if there is a function named getmntent
165                         for reading the list of mounted filesystems, and
166                         that function takes two arguments. (SVR4)]
167                 )
168 fi
169
170 AC_MSG_CHECKING([for kernel type ($host_os)])
171 case $host_os in
172         *linux*)
173         AC_DEFINE([KERNEL_LINUX], [], [True if program is to be compiled for a Linux kernel])
174         ac_system="Linux"
175         ;;
176         *solaris*)
177         AC_DEFINE([KERNEL_SOLARIS], [], [True if program is to be compiled for a Solaris kernel])
178         ac_system="Solaris"
179         ;;
180         *)
181         ac_system="unknown"
182 esac
183 AC_MSG_RESULT([$ac_system])
184
185 dnl Checks for libraries.
186 AC_CHECK_LIB(socket, socket)
187 AC_CHECK_LIB(resolv, res_search)
188
189 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
190 AC_ARG_WITH(rrdtool, AC_HELP_STRING([--with-rrdtool=PFX], [Path to rrdtool.]),
191 [       if test "x$withval" != "xno" -a "x$withval" != "xyes"
192         then
193                 LDFLAGS="$LDFLAGS -L$withval/lib"
194                 CPPFLAGS="$CPPFLAGS -I$withval/include"
195                 with_rrdtool="yes"
196         fi
197 ], [with_rrdtool="yes"])
198 if test "x$with_rrdtool" = "xyes"
199 then
200         AC_CHECK_LIB(rrd, rrd_update,, [with_rrdtool="no"], [-lm])
201 fi
202 if test "x$with_rrdtool" = "xyes"
203 then
204         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no"])
205 fi
206 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
207
208 #AC_ARG_WITH(pth, AC_HELP_STRING([--with-pth=PFX], [Path to pth (experimental).]),
209 #[      if test "x$withval" != "xno" -a "x$withval" != "xyes"
210 #       then
211 #               LDFLAGS="$LDFLAGS -L$withval/lib"
212 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
213 #               with_pth="yes"
214 #       fi
215 #], [with_pth="no"])
216 #if test "x$with_pth" = "xyes"
217 #then
218 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no"], [])
219 #fi
220 #if test "x$with_pth" = "xyes"
221 #then
222 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no"])
223 #fi
224 #if test "x$with_pth" = "xyes"
225 #then
226 #       collect_pth=1
227 #else
228 #       collect_pth=0
229 #fi
230 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
231 #       [Wether or not to use pth (portable threads) library])
232 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
233
234 if test "$ac_system" = "Solaris"
235 then
236         with_kstat="yes"
237         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (not found)"])
238         AC_CHECK_LIB(devinfo, di_init)
239         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
240 else
241         with_kstat="no (Solaris only)"
242 fi
243
244 AC_ARG_WITH(libstatgrab, AC_HELP_STRING([--with-libstatgrab@<:@=PFX@:>@], [Path to libstatgrab.]),
245 [
246         # given..
247         if test "x$withval" != "xno"
248         then
249                 if test "x$withval" != "xyes"
250                 then
251                         LDFLAGS="$LDFLAGS -L$withval/lib"
252                         CPPFLAGS="$CPPFLAGS -I$withval/include"
253                         with_libstatgrab="yes"
254                 fi
255         fi
256 ],
257 [
258         # not given..
259         if test "x$ac_system" != "xunknown"
260         then
261                 with_libstatgrab="no"
262         else
263                 with_libstatgrab="yes"
264         fi
265 ])
266 if test "x$with_libstatgrab" = "xyes"
267 then
268         AC_CHECK_LIB(devstat, getdevs)
269         AC_CHECK_LIB(kvm, kvm_getargv)
270         AC_CHECK_LIB(statgrab, sg_init,, [with_libstatgrab="no (not found)"])
271         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (not found)"])
272 fi
273
274 AC_ARG_WITH(lm-sensors, AC_HELP_STRING([--with-lm-sensors@<:@=PFX@:>@], [Path to lm_sensors.]),
275 [
276         # given..
277         if test "x$withval" != "xno"
278         then
279                 if test "x$withval" != "xyes"
280                 then
281                         LDFLAGS="$LDFLAGS -L$withval/lib"
282                         CPPFLAGS="$CPPFLAGS -I$withval/include"
283                         with_lm_sensors="yes"
284                 fi
285         fi
286 ],
287 [
288         # not given..
289         if test "x$ac_system" = "xLinux"
290         then
291                 with_lm_sensors="yes"
292         else
293                 with_lm_sensors="no"
294         fi
295 ])
296 if test "x$with_lm_sensors" = "xyes"
297 then
298         AC_CHECK_LIB(sensors, sensors_init,
299         [
300                 with_lm_sensors="yes"
301                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
302         ],
303         [with_lm_sensors="no (not found)"])
304         AC_CHECK_HEADERS(sensors/sensors.h,
305         [
306                 with_lm_sensors="yes"
307                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
308         ],
309         [with_lm_sensors="no (not found)"])
310 fi
311
312
313
314 #
315 # Check for enabled/disabled features
316 #
317 m4_divert_once([HELP_ENABLE], [
318 collectd features:])
319 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
320         [Enable debugging (disabled by default)]),
321         [], [enable_debug="no"])
322 if test "x$enable_debug" = "xno"
323 then
324         collect_debug=0
325 else
326         if test "x$enable_debug" = "xyes"
327         then
328                 collect_debug=1
329         else
330                 AC_MSG_NOTICE([Please specify either --enable-debug or --disable-debug; Enabling debugging.])
331                 collect_debug=1
332                 enable_debug="yes"
333         fi
334 fi
335 AC_DEFINE_UNQUOTED(COLLECT_DEBUG, [$collect_debug],
336         [Wether or not to enable debugging])
337 AM_CONDITIONAL(BUILD_DEBUG, test "x$enable_debug" = "xyes")
338
339 AC_ARG_ENABLE(daemon, AC_HELP_STRING([--disable-daemon],
340         [Disable daemon mode (enabled by default)]),
341         [], [enable_daemon="yes"])
342 if test "x$enable_daemon" = "xno"
343 then
344         collect_daemon=0
345 else
346         if test "x$enable_daemon" = "xyes"
347         then
348                 collect_daemon=1
349         else
350                 AC_MSG_NOTICE([Please specify either --enable-daemon or --disable-daemon; Enabling daemon mode.])
351                 collect_daemon=1
352                 enable_daemon="yes"
353         fi
354 fi
355 AC_DEFINE_UNQUOTED(COLLECT_DAEMON, [$collect_daemon],
356         [Wether or not to enable daemon mode])
357 AM_CONDITIONAL(BUILD_DAEMON, test "x$enable_daemon" = "xyes")
358
359 m4_divert_once([HELP_ENABLE], [
360 collectd modules:])
361 AC_ARG_ENABLE(cpu, AC_HELP_STRING([--disable-cpu], [Disable CPU usage statistics]),, [enable_cpu="yes"])
362 if test "x$enable_cpu" != "xno"
363 then
364         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$have_sysctlbyname" = "xyes"
365         then
366                 enable_cpu="yes"
367         else
368                 enable_cpu="no"
369         fi
370 fi
371 if test "x$enable_cpu" = "xno"
372 then
373         AC_DEFINE(COLLECT_CPU, 0, [Wether or not to collect CPU usage statistics])
374 fi
375 AM_CONDITIONAL(BUILD_MODULE_CPU, test "x$enable_cpu" = "xyes")
376
377 AC_ARG_ENABLE(cpufreq, AC_HELP_STRING([--disable-cpufreq], [Disable system cpu frequency statistics]),, [enable_cpufreq="yes"])
378 if test "x$enable_cpufreq" != "xno"
379 then
380         if test "x$ac_system" = "xLinux"
381         then
382                 enable_cpufreq="yes"
383         else
384                 enable_cpufreq="no"
385         fi
386 fi
387 if test "x$enable_cpufreq" = "xno"
388 then
389         AC_DEFINE(COLLECT_CPUFREQ, 0, [Wether or not to collect cpu frequency statistics])
390 fi
391 AM_CONDITIONAL(BUILD_MODULE_CPUFREQ, test "x$enable_cpufreq" = "xyes")
392
393 AC_ARG_ENABLE(disk, AC_HELP_STRING([--disable-disk], [Disable disk/partition statistics]),, [enable_disk="yes"])
394 if test "x$enable_disk" != "xno"
395 then
396         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes"
397         then
398                 enable_disk="yes"
399         else
400                 enable_disk="no"
401         fi
402 fi
403 if test "x$enable_disk" = "xno"
404 then
405         AC_DEFINE(COLLECT_DISK, 0, [Wether or not to collect diskstats])
406 fi
407 AM_CONDITIONAL(BUILD_MODULE_DISK, test "x$enable_disk" = "xyes")
408
409 AC_ARG_ENABLE(hddtemp, AC_HELP_STRING([--disable-hddtemp], [Disable hdd temperature statistics]),, [enable_hddtemp="yes"])
410 if test "x$enable_hddtemp" = "xno"
411 then
412         AC_DEFINE(COLLECT_HDDTEMP, 0, [Wether or not to collect hdd temperature statistics])
413 fi
414 AM_CONDITIONAL(BUILD_MODULE_HDDTEMP, test "x$enable_hddtemp" = "xyes")
415
416 AC_ARG_ENABLE(load, AC_HELP_STRING([--disable-load], [Disable system load statistics]),, [enable_load="yes"])
417 if test "x$enable_load" != "xno"
418 then
419         if test "x$have_getloadavg" = "xyes" -o "x$ac_system" = "xLinux" -o "x$with_libstatgrab" = "xyes"
420         then
421                 enable_load="yes"
422         else
423                 enable_load="no"
424         fi
425 fi
426 if test "x$enable_load" = "xno"
427 then
428         AC_DEFINE(COLLECT_LOAD, 0, [Wether or not to collect system load statistics])
429 fi
430 AM_CONDITIONAL(BUILD_MODULE_LOAD, test "x$enable_load" = "xyes")
431
432 AC_ARG_ENABLE(memory, AC_HELP_STRING([--disable-memory], [Disable memory statistics]),, [enable_memory="yes"])
433 if test "x$enable_memory" != "xno"
434 then
435         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
436         then
437                 enable_memory="yes"
438         else
439                 enable_memory="no"
440         fi
441 fi
442 if test "x$enable_memory" = "xno"
443 then
444         AC_DEFINE(COLLECT_MEMORY, 0, [Wether or not to collect memory statistics])
445 fi
446 AM_CONDITIONAL(BUILD_MODULE_MEMORY, test "x$enable_memory" = "xyes")
447
448 AC_ARG_ENABLE(nfs, AC_HELP_STRING([--disable-nfs], [Disable nfs statistics]),, [enable_nfs="yes"])
449 if test "x$enable_nfs" != "xno"
450 then
451         if test "x$ac_system" = "xLinux"
452         then
453                 enable_nfs="yes"
454         else
455                 enable_nfs="no"
456         fi
457 fi
458 if test "x$enable_nfs" = "xno"
459 then
460         AC_DEFINE(COLLECT_NFS, 0, [Wether or not to collect nfs statistics])
461 fi
462 AM_CONDITIONAL(BUILD_MODULE_NFS, test "x$enable_nfs" = "xyes")
463
464 AC_ARG_ENABLE(ping, AC_HELP_STRING([--disable-ping], [Disable ping statistics]),, [enable_ping="yes"])
465 if test "x$enable_ping" != "xno"
466 then
467         enable_ping="yes"
468 fi
469 if test "x$enable_ping" = "xno"
470 then
471         AC_DEFINE(COLLECT_PING, 0, [Wether or not to collect ping statistics])
472 fi
473 AM_CONDITIONAL(BUILD_MODULE_PING, test "x$enable_ping" = "xyes")
474
475 AC_ARG_ENABLE(processes, AC_HELP_STRING([--disable-processes], [Disable processes statistics]),, [enable_processes="yes"])
476 if test "x$enable_processes" != "xno"
477 then
478         if test "x$ac_system" = "xLinux" 
479         then
480                 enable_processes="yes"
481         else
482                 enable_processes="no"
483         fi
484 fi
485 if test "x$enable_processes" = "xno"
486 then
487         AC_DEFINE(COLLECT_PROCESSES, 0, [Wether or not to collect processes statistics])
488 fi
489 AM_CONDITIONAL(BUILD_MODULE_PROCESSES, test "x$enable_processes" = "xyes")
490
491 #AC_ARG_ENABLE(quota, AC_HELP_STRING([--enable-quota],
492 #       [Enable quota statistics (experimental, disabled by default)]),
493 #       [], [enable_quota="no"])
494 #if test "x$enable_quota" = "xno"
495 #then
496 #       collect_quota=0
497 #else
498 #       if test "x$enable_quota" = "xyes"
499 #       then
500 #               collect_quota=1
501 #       else
502 #               AC_MSG_NOTICE([Please specify either --enable-quota or --disable-quota; Enabling quota statistics.])
503 #               collect_quota=1
504 #               enable_quota="yes"
505 #       fi
506 #fi
507 #AC_DEFINE_UNQUOTED(COLLECT_QUOTA, [$collect_quota],
508 #       [Wether or not to collect quota statistics])
509 #AM_CONDITIONAL(BUILD_MODULE_QUOTA, test "x$enable_quota" = "xyes")
510
511 AC_ARG_ENABLE(sensors, AC_HELP_STRING([--disable-sensors], [Disable lm_sensors statistics]),, [enable_sensors=$with_lm_sensors])
512 if test "x$enable_sensors" != "xno"
513 then
514         if test "x$with_lm_sensors" = "xyes"
515         then
516                 enable_sensors="yes"
517         else
518                 enable_sensors="no"
519         fi
520 fi
521 if test "x$enable_sensors" = "xno"
522 then
523         AC_DEFINE(COLLECT_SENSORS, 0, [Wether or not to collect lm_sensors statistics])
524 fi
525 AM_CONDITIONAL(BUILD_MODULE_SENSORS, test "x$enable_sensors" = "xyes")
526
527 AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [Disable serial statistics]),, [enable_serial="yes"])
528 if test "x$enable_serial" != "xno"
529 then
530         if test "x$ac_system" = "xLinux"
531         then
532                 enable_serial="yes"
533         else
534                 enable_serial="no"
535         fi
536 fi
537 if test "x$enable_serial" = "xno"
538 then
539         AC_DEFINE(COLLECT_SERIAL, 0, [Wether or not to collect serial statistics])
540 fi
541 AM_CONDITIONAL(BUILD_MODULE_SERIAL, test "x$enable_serial" = "xyes")
542
543 AC_ARG_ENABLE(swap, AC_HELP_STRING([--disable-swap], [Disable swap statistics]),, [enable_swap="yes"])
544 if test "x$enable_swap" != "xno"
545 then
546         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
547         then
548                 enable_swap="yes"
549         else
550                 enable_swap="no"
551         fi
552 fi
553 if test "x$enable_swap" = "xno"
554 then
555         AC_DEFINE(COLLECT_SWAP, 0, [Wether or not to collect swap statistics])
556 fi
557 AM_CONDITIONAL(BUILD_MODULE_SWAP, test "x$enable_swap" = "xyes")
558
559 AC_ARG_ENABLE(tape, AC_HELP_STRING([--disable-tape], [Disable tape statistics]),, [enable_tape="yes"])
560 if test "x$enable_tape" != "xno"
561 then
562         if test "x$with_kstat" = "xyes"
563         then
564                 enable_tape="yes"
565         else
566                 enable_tape="no"
567         fi
568 fi
569 if test "x$enable_tape" = "xno"
570 then
571         AC_DEFINE(COLLECT_TAPE, 0, [Wether or not to collect tape statistics])
572 fi
573 AM_CONDITIONAL(BUILD_MODULE_TAPE, test "x$enable_tape" = "xyes")
574
575 AC_ARG_ENABLE(traffic, AC_HELP_STRING([--disable-traffic], [Disable system traffic statistics]),, [enable_traffic="yes"])
576 if test "x$enable_traffic" != "xno"
577 then
578         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
579         then
580                 enable_traffic="yes"
581         else
582                 enable_traffic="no"
583         fi
584 fi
585 if test "x$enable_traffic" = "xno"
586 then
587         AC_DEFINE(COLLECT_TRAFFIC, 0, [Wether or not to collect network traffic statistics])
588 fi
589 AM_CONDITIONAL(BUILD_MODULE_TRAFFIC, test "x$enable_traffic" = "xyes")
590
591 AC_ARG_ENABLE(users, AC_HELP_STRING([--disable-users], [Disable user count statistics]),, [enable_users="yes"])
592 if test "x$enable_users" != "xno"
593 then
594        if test "x$have_getutent" = "xyes"
595        then
596                enable_users="yes"
597        else
598                enable_users="no"
599        fi
600 fi
601 if test "x$enable_users" = "xno"
602 then
603        AC_DEFINE(COLLECT_USERS, 0, [Wether or not to collect user count statistics])
604 fi
605 AM_CONDITIONAL(BUILD_MODULE_USERS, test "x$enable_users" = "xyes")
606
607 AC_OUTPUT(Makefile src/libping/Makefile src/Makefile)
608
609 cat <<EOF;
610
611 Configuration:
612   Libraries:
613     librrd  . . . . . . $with_rrdtool
614     lm_sensors  . . . . $with_lm_sensors
615     libstatgrab . . . . $with_libstatgrab
616     libkstat  . . . . . $with_kstat
617
618   Features:
619     debug . . . . . . . $enable_debug
620     daemon mode . . . . $enable_daemon
621
622   Modules:
623     cpu . . . . . . . . $enable_cpu
624     cpufreq . . . . . . $enable_cpufreq
625     disk  . . . . . . . $enable_disk
626     hddtemp . . . . . . $enable_hddtemp
627     load  . . . . . . . $enable_load
628     memory  . . . . . . $enable_memory
629     nfs . . . . . . . . $enable_nfs
630     ping  . . . . . . . $enable_ping
631     processes . . . . . $enable_processes
632     sensors . . . . . . $enable_sensors
633     serial  . . . . . . $enable_serial
634     swap  . . . . . . . $enable_swap
635     tape  . . . . . . . $enable_tape
636     traffic . . . . . . $enable_traffic
637     users . . . . . . . $enable_users
638
639 EOF