The configfile-branch now compiles.
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, 3.5.alpha2)
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 src/libconfig)
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(errno.h)
41 AC_CHECK_HEADERS(syslog.h)
42
43 # For cpu modules
44 AC_CHECK_HEADERS(sys/sysctl.h sys/dkstat.h)
45
46 # For load module
47 AC_CHECK_HEADERS(sys/loadavg.h)
48
49 # For ping module
50 AC_CHECK_HEADERS(arpa/inet.h)
51 AC_CHECK_HEADERS(netinet/in.h)
52
53 # For users module
54 AC_CHECK_HEADERS(utmp.h)
55 AC_CHECK_HEADERS(utmpx.h)
56
57 # For quota module
58 AC_CHECK_HEADERS(grp.h pwd.h sys/ucred.h)
59 AC_CHECK_HEADERS(ctype.h)
60 AC_CHECK_HEADERS(limits.h)
61 AC_CHECK_HEADERS(sys/quota.h)
62 AC_CHECK_HEADERS(xfs/xqm.h)
63
64 # For mount interface
65 AC_CHECK_HEADERS(fs_info.h)
66 AC_CHECK_HEADERS(fshelp.h)
67 AC_CHECK_HEADERS(paths.h)
68 AC_CHECK_HEADERS(mntent.h)
69 AC_CHECK_HEADERS(mnttab.h)
70 AC_CHECK_HEADERS(sys/fstyp.h)
71 AC_CHECK_HEADERS(sys/fs_types.h)
72 AC_CHECK_HEADERS(sys/mntent.h)
73 AC_CHECK_HEADERS(sys/mnttab.h)
74 AC_CHECK_HEADERS(sys/mount.h)
75 AC_CHECK_HEADERS(sys/statfs.h)
76 AC_CHECK_HEADERS(sys/vfs.h)
77 AC_CHECK_HEADERS(sys/vfstab.h)
78
79 # For debugging interface (variable number of arguments)
80 AC_CHECK_HEADERS(stdarg.h)
81
82 dnl Checking for libraries
83 AC_CHECK_LIB(m, ext)
84
85 #
86 # Checks for typedefs, structures, and compiler characteristics.
87 #
88 AC_C_CONST
89 AC_TYPE_PID_T
90 AC_TYPE_SIZE_T
91 AC_TYPE_UID_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
104 # For cpu module
105 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
106
107 # For load module
108 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
109
110 # For users module
111 have_getutent="no"
112 AC_CHECK_FUNCS(getutent getutxent, [have_getutent="yes"])
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 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
189 AC_ARG_WITH(rrdtool, AC_HELP_STRING([--with-rrdtool=PFX], [Path to rrdtool.]),
190 [       if test "x$withval" != "xno" -a "x$withval" != "xyes"
191         then
192                 LDFLAGS="$LDFLAGS -L$withval/lib"
193                 CPPFLAGS="$CPPFLAGS -I$withval/include"
194                 with_rrdtool="yes"
195         fi
196 ], [with_rrdtool="yes"])
197 if test "x$with_rrdtool" = "xyes"
198 then
199         AC_CHECK_LIB(rrd, rrd_update,, [with_rrdtool="no"], [-lm])
200 fi
201 if test "x$with_rrdtool" = "xyes"
202 then
203         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no"])
204 fi
205 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
206
207 #AC_ARG_WITH(pth, AC_HELP_STRING([--with-pth=PFX], [Path to pth (experimental).]),
208 #[      if test "x$withval" != "xno" -a "x$withval" != "xyes"
209 #       then
210 #               LDFLAGS="$LDFLAGS -L$withval/lib"
211 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
212 #               with_pth="yes"
213 #       fi
214 #], [with_pth="no"])
215 #if test "x$with_pth" = "xyes"
216 #then
217 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no"], [])
218 #fi
219 #if test "x$with_pth" = "xyes"
220 #then
221 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no"])
222 #fi
223 #if test "x$with_pth" = "xyes"
224 #then
225 #       collect_pth=1
226 #else
227 #       collect_pth=0
228 #fi
229 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
230 #       [Wether or not to use pth (portable threads) library])
231 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
232
233 if test "$ac_system" = "Solaris"
234 then
235         with_kstat="yes"
236         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (not found)"])
237         AC_CHECK_LIB(devinfo, di_init)
238         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
239 else
240         with_kstat="no (Solaris only)"
241 fi
242
243 AC_ARG_WITH(libstatgrab, AC_HELP_STRING([--with-libstatgrab@<:@=PFX@:>@], [Path to libstatgrab.]),
244 [
245         # given..
246         if test "x$withval" != "xno"
247         then
248                 if test "x$withval" != "xyes"
249                 then
250                         LDFLAGS="$LDFLAGS -L$withval/lib"
251                         CPPFLAGS="$CPPFLAGS -I$withval/include"
252                         with_libstatgrab="yes"
253                 fi
254         fi
255 ],
256 [
257         # not given..
258         if test "x$ac_system" != "xunknown"
259         then
260                 with_libstatgrab="no"
261         else
262                 with_libstatgrab="yes"
263         fi
264 ])
265 if test "x$with_libstatgrab" = "xyes"
266 then
267         AC_CHECK_LIB(devstat, getdevs)
268         AC_CHECK_LIB(kvm, kvm_getargv)
269         AC_CHECK_LIB(statgrab, sg_init,, [with_libstatgrab="no (not found)"])
270         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (not found)"])
271 fi
272
273 AC_ARG_WITH(lm-sensors, AC_HELP_STRING([--with-lm-sensors@<:@=PFX@:>@], [Path to lm_sensors.]),
274 [
275         # given..
276         if test "x$withval" != "xno"
277         then
278                 if test "x$withval" != "xyes"
279                 then
280                         LDFLAGS="$LDFLAGS -L$withval/lib"
281                         CPPFLAGS="$CPPFLAGS -I$withval/include"
282                         with_lm_sensors="yes"
283                 fi
284         fi
285 ],
286 [
287         # not given..
288         if test "x$ac_system" = "xLinux"
289         then
290                 with_lm_sensors="yes"
291         else
292                 with_lm_sensors="no"
293         fi
294 ])
295 if test "x$with_lm_sensors" = "xyes"
296 then
297         AC_CHECK_LIB(sensors, sensors_init,
298         [
299                 with_lm_sensors="yes"
300                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
301         ],
302         [with_lm_sensors="no (not found)"])
303         AC_CHECK_HEADERS(sensors/sensors.h,
304         [
305                 with_lm_sensors="yes"
306                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
307         ],
308         [with_lm_sensors="no (not found)"])
309 fi
310
311
312
313 #
314 # Check for enabled/disabled features
315 #
316 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
317         [Enable debugging (disabled by default)]),
318         [], [enable_debug="no"])
319 if test "x$enable_debug" = "xno"
320 then
321         collect_debug=0
322 else
323         if test "x$enable_debug" = "xyes"
324         then
325                 collect_debug=1
326         else
327                 AC_MSG_NOTICE([Please specify either --enable-debug or --disable-debug; Enabling debugging.])
328                 collect_debug=1
329                 enable_debug="yes"
330         fi
331 fi
332 AC_DEFINE_UNQUOTED(COLLECT_DEBUG, [$collect_debug],
333         [Wether or not to enable debugging])
334 AM_CONDITIONAL(BUILD_DEBUG, test "x$enable_debug" = "xyes")
335
336 AC_ARG_ENABLE(daemon, AC_HELP_STRING([--disable-daemon],
337         [Disable daemon mode (enabled by default)]),
338         [], [enable_daemon="yes"])
339 if test "x$enable_daemon" = "xno"
340 then
341         collect_daemon=0
342 else
343         if test "x$enable_daemon" = "xyes"
344         then
345                 collect_daemon=1
346         else
347                 AC_MSG_NOTICE([Please specify either --enable-daemon or --disable-daemon; Enabling daemon mode.])
348                 collect_daemon=1
349                 enable_daemon="yes"
350         fi
351 fi
352 AC_DEFINE_UNQUOTED(COLLECT_DAEMON, [$collect_daemon],
353         [Wether or not to enable daemon mode])
354 AM_CONDITIONAL(BUILD_DAEMON, test "x$enable_daemon" = "xyes")
355
356 AC_ARG_ENABLE(cpu, AC_HELP_STRING([--disable-cpu], [Disable CPU usage statistics]),, [enable_cpu="yes"])
357 if test "x$enable_cpu" != "xno"
358 then
359         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$have_sysctlbyname" = "xyes"
360         then
361                 enable_cpu="yes"
362         else
363                 enable_cpu="no"
364         fi
365 fi
366 if test "x$enable_cpu" = "xno"
367 then
368         AC_DEFINE(COLLECT_CPU, 0, [Wether or not to collect CPU usage statistics])
369 fi
370 AM_CONDITIONAL(BUILD_MODULE_CPU, test "x$enable_cpu" = "xyes")
371
372 AC_ARG_ENABLE(cpufreq, AC_HELP_STRING([--disable-cpufreq], [Disable system cpu frequency statistics]),, [enable_cpufreq="yes"])
373 if test "x$enable_cpufreq" != "xno"
374 then
375         if test "x$ac_system" = "xLinux"
376         then
377                 enable_cpufreq="yes"
378         else
379                 enable_cpufreq="no"
380         fi
381 fi
382 if test "x$enable_cpufreq" = "xno"
383 then
384         AC_DEFINE(COLLECT_CPUFREQ, 0, [Wether or not to collect cpu frequency statistics])
385 fi
386 AM_CONDITIONAL(BUILD_MODULE_CPUFREQ, test "x$enable_cpufreq" = "xyes")
387
388 AC_ARG_ENABLE(disk, AC_HELP_STRING([--disable-disk], [Disable disk/partition statistics]),, [enable_disk="yes"])
389 if test "x$enable_disk" != "xno"
390 then
391         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes"
392         then
393                 enable_disk="yes"
394         else
395                 enable_disk="no"
396         fi
397 fi
398 if test "x$enable_disk" = "xno"
399 then
400         AC_DEFINE(COLLECT_DISK, 0, [Wether or not to collect diskstats])
401 fi
402 AM_CONDITIONAL(BUILD_MODULE_DISK, test "x$enable_disk" = "xyes")
403
404 AC_ARG_ENABLE(hddtemp, AC_HELP_STRING([--disable-hddtemp], [Disable hdd temperature statistics]),, [enable_hddtemp="yes"])
405 if test "x$enable_hddtemp" = "xno"
406 then
407         AC_DEFINE(COLLECT_HDDTEMP, 0, [Wether or not to collect hdd temperature statistics])
408 fi
409 AM_CONDITIONAL(BUILD_MODULE_HDDTEMP, test "x$enable_hddtemp" = "xyes")
410
411 AC_ARG_ENABLE(load, AC_HELP_STRING([--disable-load], [Disable system load statistics]),, [enable_load="yes"])
412 if test "x$enable_load" != "xno"
413 then
414         if test "x$have_getloadavg" = "xyes" -o "x$ac_system" = "xLinux" -o "x$with_libstatgrab" = "xyes"
415         then
416                 enable_load="yes"
417         else
418                 enable_load="no"
419         fi
420 fi
421 if test "x$enable_load" = "xno"
422 then
423         AC_DEFINE(COLLECT_LOAD, 0, [Wether or not to collect system load statistics])
424 fi
425 AM_CONDITIONAL(BUILD_MODULE_LOAD, test "x$enable_load" = "xyes")
426
427 AC_ARG_ENABLE(memory, AC_HELP_STRING([--disable-memory], [Disable memory statistics]),, [enable_memory="yes"])
428 if test "x$enable_memory" != "xno"
429 then
430         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
431         then
432                 enable_memory="yes"
433         else
434                 enable_memory="no"
435         fi
436 fi
437 if test "x$enable_memory" = "xno"
438 then
439         AC_DEFINE(COLLECT_MEMORY, 0, [Wether or not to collect memory statistics])
440 fi
441 AM_CONDITIONAL(BUILD_MODULE_MEMORY, test "x$enable_memory" = "xyes")
442
443 AC_ARG_ENABLE(nfs, AC_HELP_STRING([--disable-nfs], [Disable nfs statistics]),, [enable_nfs="yes"])
444 if test "x$enable_nfs" != "xno"
445 then
446         if test "x$ac_system" = "xLinux"
447         then
448                 enable_nfs="yes"
449         else
450                 enable_nfs="no"
451         fi
452 fi
453 if test "x$enable_nfs" = "xno"
454 then
455         AC_DEFINE(COLLECT_NFS, 0, [Wether or not to collect nfs statistics])
456 fi
457 AM_CONDITIONAL(BUILD_MODULE_NFS, test "x$enable_nfs" = "xyes")
458
459 AC_ARG_ENABLE(ping, AC_HELP_STRING([--disable-ping], [Disable ping statistics]),, [enable_ping="yes"])
460 if test "x$enable_ping" != "xno"
461 then
462         enable_ping="yes"
463 fi
464 if test "x$enable_ping" = "xno"
465 then
466         AC_DEFINE(COLLECT_PING, 0, [Wether or not to collect ping statistics])
467 fi
468 AM_CONDITIONAL(BUILD_MODULE_PING, test "x$enable_ping" = "xyes")
469
470 AC_ARG_ENABLE(processes, AC_HELP_STRING([--disable-processes], [Disable processes statistics]),, [enable_processes="yes"])
471 if test "x$enable_processes" != "xno"
472 then
473         if test "x$ac_system" = "xLinux" 
474         then
475                 enable_processes="yes"
476         else
477                 enable_processes="no"
478         fi
479 fi
480 if test "x$enable_processes" = "xno"
481 then
482         AC_DEFINE(COLLECT_PROCESSES, 0, [Wether or not to collect processes statistics])
483 fi
484 AM_CONDITIONAL(BUILD_MODULE_PROCESSES, test "x$enable_processes" = "xyes")
485
486 #AC_ARG_ENABLE(quota, AC_HELP_STRING([--enable-quota],
487 #       [Enable quota statistics (experimental, disabled by default)]),
488 #       [], [enable_quota="no"])
489 #if test "x$enable_quota" = "xno"
490 #then
491 #       collect_quota=0
492 #else
493 #       if test "x$enable_quota" = "xyes"
494 #       then
495 #               collect_quota=1
496 #       else
497 #               AC_MSG_NOTICE([Please specify either --enable-quota or --disable-quota; Enabling quota statistics.])
498 #               collect_quota=1
499 #               enable_quota="yes"
500 #       fi
501 #fi
502 #AC_DEFINE_UNQUOTED(COLLECT_QUOTA, [$collect_quota],
503 #       [Wether or not to collect quota statistics])
504 #AM_CONDITIONAL(BUILD_MODULE_QUOTA, test "x$enable_quota" = "xyes")
505
506 AC_ARG_ENABLE(sensors, AC_HELP_STRING([--disable-sensors], [Disable lm_sensors statistics]),, [enable_sensors=$with_lm_sensors])
507 if test "x$enable_sensors" != "xno"
508 then
509         if test "x$with_lm_sensors" = "xyes"
510         then
511                 enable_sensors="yes"
512         else
513                 enable_sensors="no"
514         fi
515 fi
516 if test "x$enable_sensors" = "xno"
517 then
518         AC_DEFINE(COLLECT_SENSORS, 0, [Wether or not to collect lm_sensors statistics])
519 fi
520 AM_CONDITIONAL(BUILD_MODULE_SENSORS, test "x$enable_sensors" = "xyes")
521
522 AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [Disable serial statistics]),, [enable_serial="yes"])
523 if test "x$enable_serial" != "xno"
524 then
525         if test "x$ac_system" = "xLinux"
526         then
527                 enable_serial="yes"
528         else
529                 enable_serial="no"
530         fi
531 fi
532 if test "x$enable_serial" = "xno"
533 then
534         AC_DEFINE(COLLECT_SERIAL, 0, [Wether or not to collect serial statistics])
535 fi
536 AM_CONDITIONAL(BUILD_MODULE_SERIAL, test "x$enable_serial" = "xyes")
537
538 AC_ARG_ENABLE(swap, AC_HELP_STRING([--disable-swap], [Disable swap statistics]),, [enable_swap="yes"])
539 if test "x$enable_swap" != "xno"
540 then
541         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
542         then
543                 enable_swap="yes"
544         else
545                 enable_swap="no"
546         fi
547 fi
548 if test "x$enable_swap" = "xno"
549 then
550         AC_DEFINE(COLLECT_SWAP, 0, [Wether or not to collect swap statistics])
551 fi
552 AM_CONDITIONAL(BUILD_MODULE_SWAP, test "x$enable_swap" = "xyes")
553
554 AC_ARG_ENABLE(tape, AC_HELP_STRING([--disable-tape], [Disable tape statistics]),, [enable_tape="yes"])
555 if test "x$enable_tape" != "xno"
556 then
557         if test "x$with_kstat" = "xyes"
558         then
559                 enable_tape="yes"
560         else
561                 enable_tape="no"
562         fi
563 fi
564 if test "x$enable_tape" = "xno"
565 then
566         AC_DEFINE(COLLECT_TAPE, 0, [Wether or not to collect tape statistics])
567 fi
568 AM_CONDITIONAL(BUILD_MODULE_TAPE, test "x$enable_tape" = "xyes")
569
570 AC_ARG_ENABLE(traffic, AC_HELP_STRING([--disable-traffic], [Disable system traffic statistics]),, [enable_traffic="yes"])
571 if test "x$enable_traffic" != "xno"
572 then
573         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
574         then
575                 enable_traffic="yes"
576         else
577                 enable_traffic="no"
578         fi
579 fi
580 if test "x$enable_traffic" = "xno"
581 then
582         AC_DEFINE(COLLECT_TRAFFIC, 0, [Wether or not to collect network traffic statistics])
583 fi
584 AM_CONDITIONAL(BUILD_MODULE_TRAFFIC, test "x$enable_traffic" = "xyes")
585
586 AC_ARG_ENABLE(users, AC_HELP_STRING([--disable-users], [Disable user count statistics]),, [enable_users="yes"])
587 if test "x$enable_users" != "xno"
588 then
589        if test "x$have_getutent" = "xyes"
590        then
591                enable_users="yes"
592        else
593                enable_users="no"
594        fi
595 fi
596 if test "x$enable_users" = "xno"
597 then
598        AC_DEFINE(COLLECT_USERS, 0, [Wether or not to collect user count statistics])
599 fi
600 AM_CONDITIONAL(BUILD_MODULE_USERS, test "x$enable_users" = "xyes")
601
602 AC_OUTPUT(Makefile src/libconfig/Makefile src/libping/Makefile src/Makefile)
603
604 cat <<EOF;
605
606 Configuration:
607   Libraries:
608     librrd  . . . . . . $with_rrdtool
609     lm_sensors  . . . . $with_lm_sensors
610     libstatgrab . . . . $with_libstatgrab
611     libkstat  . . . . . $with_kstat
612
613   Features:
614     debug . . . . . . . $enable_debug
615     daemon mode . . . . $enable_daemon
616
617   Modules:
618     cpu . . . . . . . . $enable_cpu
619     cpufreq . . . . . . $enable_cpufreq
620     disk  . . . . . . . $enable_disk
621     hddtemp . . . . . . $enable_hddtemp
622     load  . . . . . . . $enable_load
623     memory  . . . . . . $enable_memory
624     nfs . . . . . . . . $enable_nfs
625     ping  . . . . . . . $enable_ping
626     processes . . . . . $enable_processes
627     sensors . . . . . . $enable_sensors
628     serial  . . . . . . $enable_serial
629     swap  . . . . . . . $enable_swap
630     tape  . . . . . . . $enable_tape
631     traffic . . . . . . $enable_traffic
632     users . . . . . . . $enable_users
633
634 EOF