Merged branch configfile to trunk
[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 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(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_TYPE_UID_T
93 AC_HEADER_TIME
94
95 #
96 # Checks for library functions.
97 #
98 AC_PROG_GCC_TRADITIONAL
99 AC_CHECK_FUNCS(gettimeofday select strdup strtol)
100 AC_CHECK_FUNCS(socket, , AC_CHECK_LIB(socket, socket))
101 AC_CHECK_FUNCS(gethostbyname, , AC_CHECK_LIB(nsl, gethostbyname))
102 AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
103 AC_CHECK_FUNCS(strncasecmp strcasecmp)
104 AC_CHECK_FUNCS(openlog syslog closelog)
105
106 # For cpu module
107 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
108
109 # For load module
110 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
111
112 # For users module
113 AC_CHECK_FUNCS(getutent getutxent)
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 m4_divert_once([HELP_WITH], [
190 collectd additional packages:])
191
192 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
193 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
194 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
195         then
196                 LDFLAGS="$LDFLAGS -L$withval/lib"
197                 CPPFLAGS="$CPPFLAGS -I$withval/include"
198                 with_rrdtool="yes"
199         fi
200 ], [with_rrdtool="yes"])
201 if test "x$with_rrdtool" = "xyes"
202 then
203         AC_CHECK_LIB(rrd, rrd_update,, [with_rrdtool="no (librrd not found)"], [-lm])
204 fi
205 if test "x$with_rrdtool" = "xyes"
206 then
207         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
208 fi
209 if test "x$with_rrdtool" = "xyes"
210 then
211         collect_rrdtool=1
212 else
213         collect_rrdtool=0
214 fi
215 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
216         [Wether or not to use rrdtool library])
217 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
218
219 #AC_ARG_WITH(pth, [AS_HELP_STRING([--with-pth=@<:@=PREFIX@:>@], [Path to pth (experimental).]),
220 #[      if test "x$withval" != "xno" && test "x$withval" != "xyes"
221 #       then
222 #               LDFLAGS="$LDFLAGS -L$withval/lib"
223 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
224 #               with_pth="yes"
225 #       fi
226 #], [with_pth="no"])
227 #if test "x$with_pth" = "xyes"
228 #then
229 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no (libpth not found)"], [])
230 #fi
231 #if test "x$with_pth" = "xyes"
232 #then
233 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no (pth.h not found)"])
234 #fi
235 #if test "x$with_pth" = "xyes"
236 #then
237 #       collect_pth=1
238 #else
239 #       collect_pth=0
240 #fi
241 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
242 #       [Wether or not to use pth (portable threads) library])
243 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
244
245 if test "$ac_system" = "Solaris"
246 then
247         with_kstat="yes"
248 else
249         with_kstat="no (Solaris only)"
250 fi
251 if test "x$with_kstat" = "xyes"
252 then
253         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
254 fi
255 if test "x$with_kstat" = "xyes"
256 then
257         AC_CHECK_LIB(devinfo, di_init)
258         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
259 fi
260 if test "x$with_kstat" = "xyes"
261 then
262         collect_kstat=1
263 else
264         collect_kstat=0
265 fi
266 AC_DEFINE_UNQUOTED(COLLECT_KSTAT, [$collect_kstat],
267         [Wether or not to use kstat library (Solaris)])
268 AM_CONDITIONAL(BUILD_WITH_KSTAT, test "x$with_kstat" = "xyes")
269
270 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
271 [
272         if test "x$withval" != "xno" && test "x$withval" != "xyes"
273         then
274                 LDFLAGS="$LDFLAGS -L$withval/lib"
275                 CPPFLAGS="$CPPFLAGS -I$withval/include"
276                 with_libstatgrab="yes"
277         fi
278 ],
279 [
280         if test "x$ac_system" == "xunknown"
281         then
282                 with_libstatgrab="yes"
283         else
284                 with_libstatgrab="no"
285         fi
286 ])
287 if test "x$with_libstatgrab" = "xyes"
288 then
289         AC_CHECK_LIB(devstat, getdevs)
290         AC_CHECK_LIB(kvm, kvm_getargv)
291         AC_CHECK_LIB(statgrab, sg_init,, [with_libstatgrab="no (libstatgrab not found)"])
292 fi
293 if test "x$with_libstatgrab" = "xyes"
294 then
295         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
296 fi
297 if test "x$with_libstatgrab" = "xyes"
298 then
299         collect_libstatgrab=1
300 else
301         collect_libstatgrab=0
302 fi
303 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
304         [Wether or not to use statgrab library])
305 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
306
307 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
308 [
309         if test "x$withval" != "xno" && test "x$withval" != "xyes"
310         then
311                 LDFLAGS="$LDFLAGS -L$withval/lib"
312                 CPPFLAGS="$CPPFLAGS -I$withval/include"
313                 with_lm_sensors="yes"
314         fi
315 ],
316 [
317         if test "x$ac_system" = "xLinux"
318         then
319                 with_lm_sensors="yes"
320         else
321                 with_lm_sensors="no"
322         fi
323 ])
324 if test "x$with_lm_sensors" = "xyes"
325 then
326         AC_CHECK_LIB(sensors, sensors_init,
327         [
328                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
329         ],
330         [with_lm_sensors="no (libsensors not found)"])
331 fi
332 if test "x$with_lm_sensors" = "xyes"
333 then
334         AC_CHECK_HEADERS(sensors/sensors.h,
335         [
336                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
337         ],
338         [with_lm_sensors="no (sensors/sensors.h not found)"])
339 fi
340 if test "x$with_lm_sensors" = "xyes"
341 then
342         collect_lm_sensors=1
343 else
344         collect_lm_sensors=0
345 fi
346 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
347         [Wether or not to use sensors library])
348 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
349
350
351
352 #
353 # Check for enabled/disabled features
354 #
355
356 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
357 # ------------------------------------------------------------
358 dnl
359 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
360 dnl
361 AC_DEFUN(
362         [AC_COLLECTD],
363         [
364         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
365         m4_if(
366                 [$2],
367                 [enable],
368                 [dnl
369                 m4_define([EnDis],[disabled])dnl
370                 m4_define([YesNo],[no])dnl
371                 ],dnl
372                 [m4_if(
373                         [$2],
374                         [disable],
375                         [dnl
376                         m4_define([EnDis],[enabled])dnl
377                         m4_define([YesNo],[yes])dnl
378                         ],
379                         [dnl
380                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
381                         ]dnl
382                 )]dnl
383         )dnl
384         m4_if([$3], [feature], [],
385                 [m4_if(
386                         [$3], [module], [],
387                         [dnl
388                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
389                         ]dnl
390                 )]dnl
391         )dnl
392         AC_ARG_ENABLE(
393                 [$1],
394                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
395                 [],
396                 enable_$1='[YesNo]'dnl
397         )# AC_ARG_ENABLE
398 if test "x$enable_$1" = "xno"
399 then
400         collectd_$1=0
401 else
402         if test "x$enable_$1" = "xyes"
403         then
404                 collectd_$1=1
405         else
406                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
407                 collectd_$1=1
408                 enable_$1='yes'
409         fi
410 fi
411         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
412         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
413         ]dnl
414 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
415
416
417
418 #m4_divert_once([HELP_ENABLE], [
419 #collectd modules:])
420 #AC_COLLECTD([cpu],       [disable], [module], [cpu usage statistics])
421 #AC_COLLECTD([cpufreq],   [disable], [module], [system cpu frequency statistics])
422 #AC_COLLECTD([disk],      [disable], [module], [disk/partition statistics])
423 #AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
424 #AC_COLLECTD([hddtemp],   [disable], [module], [hdd temperature statistics])
425 #AC_COLLECTD([load],      [disable], [module], [system load statistics])
426 #AC_COLLECTD([memory],    [disable], [module], [memory statistics])
427 #AC_COLLECTD([nfs],       [disable], [module], [nfs statistics])
428 #AC_COLLECTD([ping],      [disable], [module], [ping statistics])
429 #AC_COLLECTD([processes], [disable], [module], [processes statistics])
430 #AC_COLLECTD([sensors],   [disable], [module], [lm_sensors statistics])
431 #AC_COLLECTD([serial],    [disable], [module], [serial statistics])
432 #AC_COLLECTD([swap],      [disable], [module], [swap statistics])
433 #AC_COLLECTD([tape],      [disable], [module], [tape statistics])
434 #AC_COLLECTD([traffic],   [disable], [module], [system traffic statistics])
435 #AC_COLLECTD([users],     [disable], [module], [user count statistics])
436
437
438
439 m4_divert_once([HELP_ENABLE], [
440 collectd features:])
441
442 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
443 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
444
445 m4_divert_once([HELP_ENABLE], [
446 collectd modules:])
447 AC_ARG_ENABLE(cpu, AC_HELP_STRING([--disable-cpu], [Disable CPU usage statistics]),, [enable_cpu="yes"])
448 if test "x$enable_cpu" != "xno"
449 then
450         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$have_sysctlbyname" = "xyes"
451         then
452                 enable_cpu="yes"
453         else
454                 enable_cpu="no"
455         fi
456 fi
457 if test "x$enable_cpu" = "xno"
458 then
459         AC_DEFINE(COLLECT_CPU, 0, [Wether or not to collect CPU usage statistics])
460 fi
461 AM_CONDITIONAL(BUILD_MODULE_CPU, test "x$enable_cpu" = "xyes")
462
463 AC_ARG_ENABLE(cpufreq, AC_HELP_STRING([--disable-cpufreq], [Disable system cpu frequency statistics]),, [enable_cpufreq="yes"])
464 if test "x$enable_cpufreq" != "xno"
465 then
466         if test "x$ac_system" = "xLinux"
467         then
468                 enable_cpufreq="yes"
469         else
470                 enable_cpufreq="no"
471         fi
472 fi
473 if test "x$enable_cpufreq" = "xno"
474 then
475         AC_DEFINE(COLLECT_CPUFREQ, 0, [Wether or not to collect cpu frequency statistics])
476 fi
477 AM_CONDITIONAL(BUILD_MODULE_CPUFREQ, test "x$enable_cpufreq" = "xyes")
478
479 AC_ARG_ENABLE(disk, AC_HELP_STRING([--disable-disk], [Disable disk/partition statistics]),, [enable_disk="yes"])
480 if test "x$enable_disk" != "xno"
481 then
482         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes"
483         then
484                 enable_disk="yes"
485         else
486                 enable_disk="no"
487         fi
488 fi
489 if test "x$enable_disk" = "xno"
490 then
491         AC_DEFINE(COLLECT_DISK, 0, [Wether or not to collect diskstats])
492 fi
493 AM_CONDITIONAL(BUILD_MODULE_DISK, test "x$enable_disk" = "xyes")
494
495 AC_ARG_ENABLE(hddtemp, AC_HELP_STRING([--disable-hddtemp], [Disable hdd temperature statistics]),, [enable_hddtemp="yes"])
496 if test "x$enable_hddtemp" = "xno"
497 then
498         AC_DEFINE(COLLECT_HDDTEMP, 0, [Wether or not to collect hdd temperature statistics])
499 fi
500 AM_CONDITIONAL(BUILD_MODULE_HDDTEMP, test "x$enable_hddtemp" = "xyes")
501
502 AC_ARG_ENABLE(load, AC_HELP_STRING([--disable-load], [Disable system load statistics]),, [enable_load="yes"])
503 if test "x$enable_load" != "xno"
504 then
505         if test "x$have_getloadavg" = "xyes" -o "x$ac_system" = "xLinux" -o "x$with_libstatgrab" = "xyes"
506         then
507                 enable_load="yes"
508         else
509                 enable_load="no"
510         fi
511 fi
512 if test "x$enable_load" = "xno"
513 then
514         AC_DEFINE(COLLECT_LOAD, 0, [Wether or not to collect system load statistics])
515 fi
516 AM_CONDITIONAL(BUILD_MODULE_LOAD, test "x$enable_load" = "xyes")
517
518 AC_ARG_ENABLE(memory, AC_HELP_STRING([--disable-memory], [Disable memory statistics]),, [enable_memory="yes"])
519 if test "x$enable_memory" != "xno"
520 then
521         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
522         then
523                 enable_memory="yes"
524         else
525                 enable_memory="no"
526         fi
527 fi
528 if test "x$enable_memory" = "xno"
529 then
530         AC_DEFINE(COLLECT_MEMORY, 0, [Wether or not to collect memory statistics])
531 fi
532 AM_CONDITIONAL(BUILD_MODULE_MEMORY, test "x$enable_memory" = "xyes")
533
534 AC_ARG_ENABLE(nfs, AC_HELP_STRING([--disable-nfs], [Disable nfs statistics]),, [enable_nfs="yes"])
535 if test "x$enable_nfs" != "xno"
536 then
537         if test "x$ac_system" = "xLinux"
538         then
539                 enable_nfs="yes"
540         else
541                 enable_nfs="no"
542         fi
543 fi
544 if test "x$enable_nfs" = "xno"
545 then
546         AC_DEFINE(COLLECT_NFS, 0, [Wether or not to collect nfs statistics])
547 fi
548 AM_CONDITIONAL(BUILD_MODULE_NFS, test "x$enable_nfs" = "xyes")
549
550 AC_ARG_ENABLE(ping, AC_HELP_STRING([--disable-ping], [Disable ping statistics]),, [enable_ping="yes"])
551 if test "x$enable_ping" != "xno"
552 then
553         enable_ping="yes"
554 fi
555 if test "x$enable_ping" = "xno"
556 then
557         AC_DEFINE(COLLECT_PING, 0, [Wether or not to collect ping statistics])
558 fi
559 AM_CONDITIONAL(BUILD_MODULE_PING, test "x$enable_ping" = "xyes")
560
561 AC_ARG_ENABLE(processes, AC_HELP_STRING([--disable-processes], [Disable processes statistics]),, [enable_processes="yes"])
562 if test "x$enable_processes" != "xno"
563 then
564         if test "x$ac_system" = "xLinux" 
565         then
566                 enable_processes="yes"
567         else
568                 enable_processes="no"
569         fi
570 fi
571 if test "x$enable_processes" = "xno"
572 then
573         AC_DEFINE(COLLECT_PROCESSES, 0, [Wether or not to collect processes statistics])
574 fi
575 AM_CONDITIONAL(BUILD_MODULE_PROCESSES, test "x$enable_processes" = "xyes")
576
577 #AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
578
579 AC_ARG_ENABLE(sensors, AC_HELP_STRING([--disable-sensors], [Disable lm_sensors statistics]),, [enable_sensors=$with_lm_sensors])
580 if test "x$enable_sensors" != "xno"
581 then
582         if test "x$with_lm_sensors" = "xyes"
583         then
584                 enable_sensors="yes"
585         else
586                 enable_sensors="no"
587         fi
588 fi
589 if test "x$enable_sensors" = "xno"
590 then
591         AC_DEFINE(COLLECT_SENSORS, 0, [Wether or not to collect lm_sensors statistics])
592 fi
593 AM_CONDITIONAL(BUILD_MODULE_SENSORS, test "x$enable_sensors" = "xyes")
594
595 AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [Disable serial statistics]),, [enable_serial="yes"])
596 if test "x$enable_serial" != "xno"
597 then
598         if test "x$ac_system" = "xLinux"
599         then
600                 enable_serial="yes"
601         else
602                 enable_serial="no"
603         fi
604 fi
605 if test "x$enable_serial" = "xno"
606 then
607         AC_DEFINE(COLLECT_SERIAL, 0, [Wether or not to collect serial statistics])
608 fi
609 AM_CONDITIONAL(BUILD_MODULE_SERIAL, test "x$enable_serial" = "xyes")
610
611 AC_ARG_ENABLE(swap, AC_HELP_STRING([--disable-swap], [Disable swap statistics]),, [enable_swap="yes"])
612 if test "x$enable_swap" != "xno"
613 then
614         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
615         then
616                 enable_swap="yes"
617         else
618                 enable_swap="no"
619         fi
620 fi
621 if test "x$enable_swap" = "xno"
622 then
623         AC_DEFINE(COLLECT_SWAP, 0, [Wether or not to collect swap statistics])
624 fi
625 AM_CONDITIONAL(BUILD_MODULE_SWAP, test "x$enable_swap" = "xyes")
626
627 AC_ARG_ENABLE(tape, AC_HELP_STRING([--disable-tape], [Disable tape statistics]),, [enable_tape="yes"])
628 if test "x$enable_tape" != "xno"
629 then
630         if test "x$with_kstat" = "xyes"
631         then
632                 enable_tape="yes"
633         else
634                 enable_tape="no"
635         fi
636 fi
637 if test "x$enable_tape" = "xno"
638 then
639         AC_DEFINE(COLLECT_TAPE, 0, [Wether or not to collect tape statistics])
640 fi
641 AM_CONDITIONAL(BUILD_MODULE_TAPE, test "x$enable_tape" = "xyes")
642
643 AC_ARG_ENABLE(traffic, AC_HELP_STRING([--disable-traffic], [Disable system traffic statistics]),, [enable_traffic="yes"])
644 if test "x$enable_traffic" != "xno"
645 then
646         if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
647         then
648                 enable_traffic="yes"
649         else
650                 enable_traffic="no"
651         fi
652 fi
653 if test "x$enable_traffic" = "xno"
654 then
655         AC_DEFINE(COLLECT_TRAFFIC, 0, [Wether or not to collect network traffic statistics])
656 fi
657 AM_CONDITIONAL(BUILD_MODULE_TRAFFIC, test "x$enable_traffic" = "xyes")
658
659 AC_COLLECTD([users],     [disable], [module], [user count statistics])
660
661 AC_OUTPUT(Makefile src/libconfig/Makefile src/libping/Makefile src/Makefile)
662
663 cat <<EOF;
664
665 Configuration:
666   Libraries:
667     librrd  . . . . . . $with_rrdtool
668     lm_sensors  . . . . $with_lm_sensors
669     libstatgrab . . . . $with_libstatgrab
670     libkstat  . . . . . $with_kstat
671
672   Features:
673     debug . . . . . . . $enable_debug
674     daemon mode . . . . $enable_daemon
675
676   Modules:
677     cpu . . . . . . . . $enable_cpu
678     cpufreq . . . . . . $enable_cpufreq
679     disk  . . . . . . . $enable_disk
680     hddtemp . . . . . . $enable_hddtemp
681     load  . . . . . . . $enable_load
682     memory  . . . . . . $enable_memory
683     nfs . . . . . . . . $enable_nfs
684     ping  . . . . . . . $enable_ping
685     processes . . . . . $enable_processes
686     sensors . . . . . . $enable_sensors
687     serial  . . . . . . $enable_serial
688     swap  . . . . . . . $enable_swap
689     tape  . . . . . . . $enable_tape
690     traffic . . . . . . $enable_traffic
691     users . . . . . . . $enable_users
692
693 EOF