Bumped version to 3.8.4
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, 3.8.4)
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 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
19
20 dnl configure libtool
21 AC_DISABLE_STATIC
22 AC_LIBLTDL_CONVENIENCE
23 AC_SUBST(LTDLINCL)
24 AC_SUBST(LIBLTDL)
25 AC_LIBTOOL_DLOPEN
26 AC_PROG_LIBTOOL
27 #AC_PROG_RANLIB
28 AC_CONFIG_SUBDIRS(libltdl src/libconfig)
29
30 #
31 # Checks for header files.
32 #
33 AC_HEADER_STDC
34 AC_HEADER_SYS_WAIT
35 AC_HEADER_DIRENT
36 AC_CHECK_HEADERS(stdint.h)
37 AC_CHECK_HEADERS(errno.h)
38 AC_CHECK_HEADERS(syslog.h)
39 AC_CHECK_HEADERS(fcntl.h)
40 AC_CHECK_HEADERS(signal.h)
41 AC_CHECK_HEADERS(assert.h)
42 AC_CHECK_HEADERS(sys/types.h)
43 AC_CHECK_HEADERS(sys/socket.h)
44 AC_CHECK_HEADERS(sys/select.h)
45 AC_CHECK_HEADERS(netdb.h)
46 AC_CHECK_HEADERS(arpa/inet.h)
47 AC_CHECK_HEADERS(sys/resource.h)
48 AC_CHECK_HEADERS(sys/param.h)
49
50 # For ping library
51 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
52 [#if HAVE_STDINT_H
53 # include <stdint.h>
54 #endif
55 ])
56 AC_CHECK_HEADERS(netinet/in.h, [], [],
57 [#if HAVE_STDINT_H
58 # include <stdint.h>
59 #endif
60 #if HAVE_NETINET_IN_SYSTM_H
61 # include <netinet/in_systm.h>
62 #endif
63 ])
64 AC_CHECK_HEADERS(netinet/ip.h, [], [],
65 [#if HAVE_STDINT_H
66 # include <stdint.h>
67 #endif
68 #if HAVE_NETINET_IN_SYSTM_H
69 # include <netinet/in_systm.h>
70 #endif
71 #if HAVE_NETINET_IN_H
72 # include <netinet/in.h>
73 #endif
74 ])
75 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
76 [#if HAVE_STDINT_H
77 # include <stdint.h>
78 #endif
79 #if HAVE_NETINET_IN_SYSTM_H
80 # include <netinet/in_systm.h>
81 #endif
82 #if HAVE_NETINET_IN_H
83 # include <netinet/in.h>
84 #endif
85 #if HAVE_NETINET_IP_H
86 # include <netinet/ip.h>
87 #endif
88 ])
89 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
90 [#if HAVE_STDINT_H
91 # include <stdint.h>
92 #endif
93 #if HAVE_NETINET_IN_SYSTM_H
94 # include <netinet/in_systm.h>
95 #endif
96 #if HAVE_NETINET_IN_H
97 # include <netinet/in.h>
98 #endif
99 #if HAVE_NETINET_IP_H
100 # include <netinet/ip.h>
101 #endif
102 ])
103 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
104 [#if HAVE_STDINT_H
105 # include <stdint.h>
106 #endif
107 #if HAVE_SYS_TYPES_H
108 # include <sys/types.h>
109 #endif
110 #if HAVE_NETINET_IN_SYSTM_H
111 # include <netinet/in_systm.h>
112 #endif
113 #if HAVE_NETINET_IN_H
114 # include <netinet/in.h>
115 #endif
116 ])
117 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
118 [#if HAVE_STDINT_H
119 # include <stdint.h>
120 #endif
121 #if HAVE_SYS_TYPES_H
122 # include <sys/types.h>
123 #endif
124 #if HAVE_NETINET_IN_SYSTM_H
125 # include <netinet/in_systm.h>
126 #endif
127 #if HAVE_NETINET_IN_H
128 # include <netinet/in.h>
129 #endif
130 #if HAVE_NETINET_IP6_H
131 # include <netinet/ip6.h>
132 #endif
133 ])
134
135 # For cpu modules
136 AC_CHECK_HEADERS(sys/sysctl.h sys/dkstat.h)
137
138 # For hddtemp module
139 AC_CHECK_HEADERS(linux/major.h)
140
141 # For load module
142 AC_CHECK_HEADERS(sys/loadavg.h)
143
144 # For users module
145 AC_CHECK_HEADERS(utmp.h)
146 AC_CHECK_HEADERS(utmpx.h)
147
148 # For quota module
149 AC_CHECK_HEADERS(grp.h pwd.h sys/ucred.h)
150 AC_CHECK_HEADERS(ctype.h)
151 AC_CHECK_HEADERS(limits.h)
152 AC_CHECK_HEADERS(sys/quota.h)
153 AC_CHECK_HEADERS(xfs/xqm.h)
154
155 # For mount interface
156 AC_CHECK_HEADERS(fs_info.h)
157 AC_CHECK_HEADERS(fshelp.h)
158 AC_CHECK_HEADERS(paths.h)
159 AC_CHECK_HEADERS(mntent.h)
160 AC_CHECK_HEADERS(mnttab.h)
161 AC_CHECK_HEADERS(sys/fstyp.h)
162 AC_CHECK_HEADERS(sys/fs_types.h)
163 AC_CHECK_HEADERS(sys/mntent.h)
164 AC_CHECK_HEADERS(sys/mnttab.h)
165 AC_CHECK_HEADERS(sys/mount.h)
166 AC_CHECK_HEADERS(sys/statfs.h)
167 AC_CHECK_HEADERS(sys/statvfs.h)
168 AC_CHECK_HEADERS(sys/vfs.h)
169 AC_CHECK_HEADERS(sys/vfstab.h)
170
171 # For debugging interface (variable number of arguments)
172 AC_CHECK_HEADERS(stdarg.h)
173
174 dnl Checking for libraries
175 AC_CHECK_LIB(m, ext)
176
177 #
178 # Checks for typedefs, structures, and compiler characteristics.
179 #
180 AC_C_CONST
181 AC_TYPE_PID_T
182 AC_TYPE_SIZE_T
183 AC_TYPE_UID_T
184 AC_HEADER_TIME
185
186 #
187 # Checks for library functions.
188 #
189 AC_PROG_GCC_TRADITIONAL
190 AC_CHECK_FUNCS(gettimeofday select strdup strtol)
191 AC_CHECK_FUNCS(socket, , AC_CHECK_LIB(socket, socket))
192 AC_CHECK_FUNCS(getaddrinfo getnameinfo)
193 AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
194 AC_CHECK_FUNCS(strncasecmp strcasecmp)
195 AC_CHECK_FUNCS(openlog syslog closelog)
196
197 # For cpu module
198 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
199
200 # For df module
201 AC_CHECK_FUNCS(statfs statvfs)
202
203 # For load module
204 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
205
206 # For users module
207 AC_CHECK_FUNCS(getutent getutxent)
208
209 # For quota module
210 AC_CHECK_FUNCS(quotactl)
211 AC_CHECK_FUNCS(getgrgid getpwuid)
212
213 # For mount interface
214 AC_CHECK_FUNCS(getfsent getvfsent listmntent)
215 AC_CHECK_FUNCS(getfsstat)
216
217 # Check for different versions of `getmntent' here..
218 AC_FUNC_GETMNTENT
219 if test "x$ac_cv_lib_sun_getmntent" = "xyes"
220 then
221         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
222                   [Define if the function getmntent exists. It's the version from libsun.])
223 fi
224 if test "x$ac_cv_lib_seq_getmntent" = "xyes"
225 then
226         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
227                   [Define if the function getmntent exists. It's the version from libseq.])
228 fi
229 if test "x$ac_cv_lib_gen_getmntent" = "xyes"
230 then
231         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
232                   [Define if the function getmntent exists. It's the version from libgen.])
233 fi
234
235 if test "x$ac_cv_func_getmntent" = "xyes"; then
236         saveCFLAGS="$CFLAGS"
237         CFLAGS="-Wall -Werror $CFLAGS"
238         AC_CACHE_CHECK([whether getmntent takes one argument],
239                 [fu_cv_getmntent1],
240                 AC_COMPILE_IFELSE(
241                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
242 #include "$srcdir/src/utils_mount.h"]],
243                                 [[(void)getmntent((FILE *)NULL);]]
244                         ),
245                         [fu_cv_getmntent1=yes],
246                         [fu_cv_getmntent1=no]
247                 )
248         )
249         if test "x$fu_cv_getmntent1" = "xno"; then
250                 AC_CACHE_CHECK([whether getmntent takes two arguments],
251                         [fu_cv_getmntent2],
252                         AC_COMPILE_IFELSE(
253                                 AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
254 #include "$srcdir/src/utils_mount.h"]],
255                                         [[(void)getmntent((FILE *)NULL,
256                                                 (struct mnttab *)NULL);]]
257                                 ),
258                                 [fu_cv_getmntent2=yes],
259                                 [fu_cv_getmntent2=no]
260                         )
261                 )
262         fi
263         CFLAGS="$saveCFLAGS"
264 fi
265 if test "x$fu_cv_getmntent1" = "xyes"; then
266         AC_DEFINE(HAVE_GETMNTENT1,
267                 1,
268                 [Define if there is a function named getmntent
269                         for reading the list of mounted filesystems, and
270                         that function takes a single argument. (4.3BSD,
271                         SunOS, HP-UX, Dynix, Irix, Linux)]
272                 )
273 fi
274 if test "x$fu_cv_getmntent2" = "xyes"; then
275         AC_DEFINE(HAVE_GETMNTENT2,
276                 1,
277                 [Define if there is a function named getmntent
278                         for reading the list of mounted filesystems, and
279                         that function takes two arguments. (SVR4)]
280                 )
281 fi
282
283 AC_MSG_CHECKING([for kernel type ($host_os)])
284 case $host_os in
285         *linux*)
286         AC_DEFINE([KERNEL_LINUX], [], [True if program is to be compiled for a Linux kernel])
287         ac_system="Linux"
288         ;;
289         *solaris*)
290         AC_DEFINE([KERNEL_SOLARIS], [], [True if program is to be compiled for a Solaris kernel])
291         ac_system="Solaris"
292         ;;
293         *)
294         ac_system="unknown"
295 esac
296 AC_MSG_RESULT([$ac_system])
297
298 with_libsocket="yes"
299 AC_CHECK_LIB(socket, socket,
300 [
301         AC_DEFINE(HAVE_LIBSOCKET, 1, [Define to 1 if you have the 'socket' library (-lsocket).])
302 ],
303 [with_libsocket="no"])
304 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$with_libsocket" = "xyes")
305
306 with_libresolv="yes"
307 AC_CHECK_LIB(resolv, res_search,
308 [
309         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
310 ],
311 [with_libresolv="no"])
312 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
313
314 m4_divert_once([HELP_WITH], [
315 collectd additional packages:])
316
317 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
318 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
319 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
320         then
321                 LDFLAGS="$LDFLAGS -L$withval/lib"
322                 CPPFLAGS="$CPPFLAGS -I$withval/include"
323                 with_rrdtool="yes"
324         fi
325 ], [with_rrdtool="yes"])
326 if test "x$with_rrdtool" = "xyes"
327 then
328         AC_CHECK_LIB(rrd, rrd_update,
329         [
330                 AC_DEFINE(HAVE_LIBRRD, 1, [Define to 1 if you have the rrd library (-lrrd).])
331         ],
332         [with_rrdtool="no (librrd not found)"], [-lm])
333 fi
334 if test "x$with_rrdtool" = "xyes"
335 then
336         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
337 fi
338 if test "x$with_rrdtool" = "xyes"
339 then
340         collect_rrdtool=1
341 else
342         collect_rrdtool=0
343 fi
344 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
345         [Wether or not to use rrdtool library])
346 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
347
348 #AC_ARG_WITH(pth, [AS_HELP_STRING([--with-pth=@<:@=PREFIX@:>@], [Path to pth (experimental).]),
349 #[      if test "x$withval" != "xno" && test "x$withval" != "xyes"
350 #       then
351 #               LDFLAGS="$LDFLAGS -L$withval/lib"
352 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
353 #               with_pth="yes"
354 #       fi
355 #], [with_pth="no"])
356 #if test "x$with_pth" = "xyes"
357 #then
358 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no (libpth not found)"], [])
359 #fi
360 #if test "x$with_pth" = "xyes"
361 #then
362 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no (pth.h not found)"])
363 #fi
364 #if test "x$with_pth" = "xyes"
365 #then
366 #       collect_pth=1
367 #else
368 #       collect_pth=0
369 #fi
370 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
371 #       [Wether or not to use pth (portable threads) library])
372 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
373
374 if test "$ac_system" = "Solaris"
375 then
376         with_kstat="yes"
377 else
378         with_kstat="no (Solaris only)"
379 fi
380 if test "x$with_kstat" = "xyes"
381 then
382         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
383 fi
384 if test "x$with_kstat" = "xyes"
385 then
386         AC_CHECK_LIB(devinfo, di_init)
387         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
388 fi
389 if test "x$with_kstat" = "xyes"
390 then
391         collect_kstat=1
392 else
393         collect_kstat=0
394 fi
395 AC_DEFINE_UNQUOTED(COLLECT_KSTAT, [$collect_kstat],
396         [Wether or not to use kstat library (Solaris)])
397 AM_CONDITIONAL(BUILD_WITH_KSTAT, test "x$with_kstat" = "xyes")
398
399 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
400 [
401         if test "x$withval" != "xno" && test "x$withval" != "xyes"
402         then
403                 LDFLAGS="$LDFLAGS -L$withval/lib"
404                 CPPFLAGS="$CPPFLAGS -I$withval/include"
405                 with_libstatgrab="yes"
406         fi
407 ],
408 [
409         if test "x$ac_system" == "xunknown"
410         then
411                 with_libstatgrab="yes"
412         else
413                 with_libstatgrab="no"
414         fi
415 ])
416 if test "x$with_libstatgrab" = "xyes"
417 then
418         AC_CHECK_LIB(devstat, getdevs)
419         AC_CHECK_LIB(kvm, kvm_getargv)
420         AC_CHECK_LIB(statgrab, sg_init,, [with_libstatgrab="no (libstatgrab not found)"])
421 fi
422 if test "x$with_libstatgrab" = "xyes"
423 then
424         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
425 fi
426 if test "x$with_libstatgrab" = "xyes"
427 then
428         collect_libstatgrab=1
429 else
430         collect_libstatgrab=0
431 fi
432 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
433         [Wether or not to use statgrab library])
434 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
435
436 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
437 [
438         if test "x$withval" != "xno" && test "x$withval" != "xyes"
439         then
440                 LDFLAGS="$LDFLAGS -L$withval/lib"
441                 CPPFLAGS="$CPPFLAGS -I$withval/include"
442                 with_lm_sensors="yes"
443         fi
444 ],
445 [
446         if test "x$ac_system" = "xLinux"
447         then
448                 with_lm_sensors="yes"
449         else
450                 with_lm_sensors="no"
451         fi
452 ])
453 if test "x$with_lm_sensors" = "xyes"
454 then
455         AC_CHECK_LIB(sensors, sensors_init,
456         [
457                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
458         ],
459         [with_lm_sensors="no (libsensors not found)"])
460 fi
461 if test "x$with_lm_sensors" = "xyes"
462 then
463         AC_CHECK_HEADERS(sensors/sensors.h,
464         [
465                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
466         ],
467         [with_lm_sensors="no (sensors/sensors.h not found)"])
468 fi
469 if test "x$with_lm_sensors" = "xyes"
470 then
471         collect_lm_sensors=1
472 else
473         collect_lm_sensors=0
474 fi
475 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
476         [Wether or not to use sensors library])
477 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
478
479 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
480 [
481         if test "x$withval" != "xno" && test "x$withval" != "xyes"
482         then
483                 LDFLAGS="$LDFLAGS -L$withval/lib"
484                 CPPFLAGS="$CPPFLAGS -I$withval/include"
485                 with_libmysql="yes"
486         fi
487 ],
488 [
489         with_libmysql="yes"
490 ])
491 if test "x$with_libmysql" = "xyes"
492 then
493         AC_CHECK_LIB(mysqlclient, mysql_init,
494         [
495                 AC_DEFINE(HAVE_LIBMYSQLCLIENT, 1, [Define to 1 if you have the mysqlclient library (-lmysqlclient).])
496         ], [with_libmysql="no (libmysql not found)"])
497 fi
498 if test "x$with_libmysql" = "xyes"
499 then
500         AC_CHECK_HEADERS(mysql/mysql.h,
501         [
502                 AC_DEFINE(HAVE_MYSQL_MYSQL_H, 1, [Define to 1 if you have the <mysql/mysql.h> header file.])
503         ], [with_libmysql="no (mysql/mysql.h not found)"])
504 fi
505 if test "x$with_libmysql" = "xyes"
506 then
507         collect_libmysql=1
508 else
509         collect_libmysql=0
510 fi
511 AC_DEFINE_UNQUOTED(COLLECT_LIBMYSQL, [$collect_libmysql],
512         [Wether or not to use mysql library])
513 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
514
515 #
516 # Check for enabled/disabled features
517 #
518
519 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
520 # ------------------------------------------------------------
521 dnl
522 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
523 dnl
524 AC_DEFUN(
525         [AC_COLLECTD],
526         [
527         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
528         m4_if(
529                 [$2],
530                 [enable],
531                 [dnl
532                 m4_define([EnDis],[disabled])dnl
533                 m4_define([YesNo],[no])dnl
534                 ],dnl
535                 [m4_if(
536                         [$2],
537                         [disable],
538                         [dnl
539                         m4_define([EnDis],[enabled])dnl
540                         m4_define([YesNo],[yes])dnl
541                         ],
542                         [dnl
543                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
544                         ]dnl
545                 )]dnl
546         )dnl
547         m4_if([$3], [feature], [],
548                 [m4_if(
549                         [$3], [module], [],
550                         [dnl
551                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
552                         ]dnl
553                 )]dnl
554         )dnl
555         AC_ARG_ENABLE(
556                 [$1],
557                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
558                 [],
559                 enable_$1='[YesNo]'dnl
560         )# AC_ARG_ENABLE
561 if test "x$enable_$1" = "xno"
562 then
563         collectd_$1=0
564 else
565         if test "x$enable_$1" = "xyes"
566         then
567                 collectd_$1=1
568         else
569                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
570                 collectd_$1=1
571                 enable_$1='yes'
572         fi
573 fi
574         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
575         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
576         ]dnl
577 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
578
579 m4_divert_once([HELP_ENABLE], [
580 collectd features:])
581 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
582 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
583
584 m4_divert_once([HELP_ENABLE], [
585 collectd modules:])
586 AC_COLLECTD([battery],   [disable], [module], [battery statistics])
587 AC_COLLECTD([cpu],       [disable], [module], [cpu usage statistics])
588 AC_COLLECTD([cpufreq],   [disable], [module], [system cpu frequency statistics])
589 AC_COLLECTD([disk],      [disable], [module], [disk/partition statistics])
590 AC_COLLECTD([df],        [disable], [module], [df statistics])
591 AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
592 AC_COLLECTD([hddtemp],   [disable], [module], [hdd temperature statistics])
593 AC_COLLECTD([load],      [disable], [module], [system load statistics])
594 AC_COLLECTD([memory],    [disable], [module], [memory statistics])
595 AC_COLLECTD([mysql],     [disable], [module], [mysql statistics])
596 AC_COLLECTD([nfs],       [disable], [module], [nfs statistics])
597 AC_COLLECTD([ping],      [disable], [module], [ping statistics])
598 AC_COLLECTD([processes], [disable], [module], [processes statistics])
599 AC_COLLECTD([sensors],   [disable], [module], [lm_sensors statistics])
600 AC_COLLECTD([serial],    [disable], [module], [serial statistics])
601 AC_COLLECTD([swap],      [disable], [module], [swap statistics])
602 AC_COLLECTD([tape],      [disable], [module], [tape statistics])
603 AC_COLLECTD([traffic],   [disable], [module], [system traffic statistics])
604 AC_COLLECTD([users],     [disable], [module], [user count statistics])
605 AC_COLLECTD([wireless],  [disable], [module], [wireless link statistics])
606
607 #m4_divert_once([HELP_ENABLE], [
608 #collectd modules:])
609 #AC_ARG_ENABLE(cpu, AC_HELP_STRING([--disable-cpu], [Disable CPU usage statistics]),, [enable_cpu="yes"])
610 #if test "x$enable_cpu" != "xno"
611 #then
612 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$have_sysctlbyname" = "xyes"
613 #       then
614 #               enable_cpu="yes"
615 #       else
616 #               enable_cpu="no"
617 #       fi
618 #fi
619 #if test "x$enable_cpu" = "xno"
620 #then
621 #       AC_DEFINE(COLLECT_CPU, 0, [Wether or not to collect CPU usage statistics])
622 #fi
623 #AM_CONDITIONAL(BUILD_MODULE_CPU, test "x$enable_cpu" = "xyes")
624
625 #AC_ARG_ENABLE(cpufreq, AC_HELP_STRING([--disable-cpufreq], [Disable system cpu frequency statistics]),, [enable_cpufreq="yes"])
626 #if test "x$enable_cpufreq" != "xno"
627 #then
628 #       if test "x$ac_system" = "xLinux"
629 #       then
630 #               enable_cpufreq="yes"
631 #       else
632 #               enable_cpufreq="no"
633 #       fi
634 #fi
635 #if test "x$enable_cpufreq" = "xno"
636 #then
637 #       AC_DEFINE(COLLECT_CPUFREQ, 0, [Wether or not to collect cpu frequency statistics])
638 #fi
639 #AM_CONDITIONAL(BUILD_MODULE_CPUFREQ, test "x$enable_cpufreq" = "xyes")
640
641 #AC_ARG_ENABLE(disk, AC_HELP_STRING([--disable-disk], [Disable disk/partition statistics]),, [enable_disk="yes"])
642 #if test "x$enable_disk" != "xno"
643 #then
644 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes"
645 #       then
646 #               enable_disk="yes"
647 #       else
648 #               enable_disk="no"
649 #       fi
650 #fi
651 #if test "x$enable_disk" = "xno"
652 #then
653 #       AC_DEFINE(COLLECT_DISK, 0, [Wether or not to collect diskstats])
654 #fi
655 #AM_CONDITIONAL(BUILD_MODULE_DISK, test "x$enable_disk" = "xyes")
656
657 #AC_ARG_ENABLE(hddtemp, AC_HELP_STRING([--disable-hddtemp], [Disable hdd temperature statistics]),, [enable_hddtemp="yes"])
658 #if test "x$enable_hddtemp" = "xno"
659 #then
660 #       AC_DEFINE(COLLECT_HDDTEMP, 0, [Wether or not to collect hdd temperature statistics])
661 #fi
662 #AM_CONDITIONAL(BUILD_MODULE_HDDTEMP, test "x$enable_hddtemp" = "xyes")
663
664 #AC_ARG_ENABLE(load, AC_HELP_STRING([--disable-load], [Disable system load statistics]),, [enable_load="yes"])
665 #if test "x$enable_load" != "xno"
666 #then
667 #       if test "x$have_getloadavg" = "xyes" -o "x$ac_system" = "xLinux" -o "x$with_libstatgrab" = "xyes"
668 #       then
669 #               enable_load="yes"
670 #       else
671 #               enable_load="no"
672 #       fi
673 #fi
674 #if test "x$enable_load" = "xno"
675 #then
676 #       AC_DEFINE(COLLECT_LOAD, 0, [Wether or not to collect system load statistics])
677 #fi
678 #AM_CONDITIONAL(BUILD_MODULE_LOAD, test "x$enable_load" = "xyes")
679
680 #AC_ARG_ENABLE(memory, AC_HELP_STRING([--disable-memory], [Disable memory statistics]),, [enable_memory="yes"])
681 #if test "x$enable_memory" != "xno"
682 #then
683 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
684 #       then
685 #               enable_memory="yes"
686 #       else
687 #               enable_memory="no"
688 #       fi
689 #fi
690 #if test "x$enable_memory" = "xno"
691 #then
692 #       AC_DEFINE(COLLECT_MEMORY, 0, [Wether or not to collect memory statistics])
693 #fi
694 #AM_CONDITIONAL(BUILD_MODULE_MEMORY, test "x$enable_memory" = "xyes")
695
696 #AC_ARG_ENABLE(nfs, AC_HELP_STRING([--disable-nfs], [Disable nfs statistics]),, [enable_nfs="yes"])
697 #if test "x$enable_nfs" != "xno"
698 #then
699 #       if test "x$ac_system" = "xLinux"
700 #       then
701 #               enable_nfs="yes"
702 #       else
703 #               enable_nfs="no"
704 #       fi
705 #fi
706 #if test "x$enable_nfs" = "xno"
707 #then
708 #       AC_DEFINE(COLLECT_NFS, 0, [Wether or not to collect nfs statistics])
709 #fi
710 #AM_CONDITIONAL(BUILD_MODULE_NFS, test "x$enable_nfs" = "xyes")
711
712 #AC_ARG_ENABLE(ping, AC_HELP_STRING([--disable-ping], [Disable ping statistics]),, [enable_ping="yes"])
713 #if test "x$enable_ping" != "xno"
714 #then
715 #       enable_ping="yes"
716 #fi
717 #if test "x$enable_ping" = "xno"
718 #then
719 #       AC_DEFINE(COLLECT_PING, 0, [Wether or not to collect ping statistics])
720 #fi
721 #AM_CONDITIONAL(BUILD_MODULE_PING, test "x$enable_ping" = "xyes")
722
723 #AC_ARG_ENABLE(processes, AC_HELP_STRING([--disable-processes], [Disable processes statistics]),, [enable_processes="yes"])
724 #if test "x$enable_processes" != "xno"
725 #then
726 #       if test "x$ac_system" = "xLinux" 
727 #       then
728 #               enable_processes="yes"
729 #       else
730 #               enable_processes="no"
731 #       fi
732 #fi
733 #if test "x$enable_processes" = "xno"
734 #then
735 #       AC_DEFINE(COLLECT_PROCESSES, 0, [Wether or not to collect processes statistics])
736 #fi
737 #AM_CONDITIONAL(BUILD_MODULE_PROCESSES, test "x$enable_processes" = "xyes")
738
739 ##AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
740
741 #AC_ARG_ENABLE(sensors, AC_HELP_STRING([--disable-sensors], [Disable lm_sensors statistics]),, [enable_sensors=$with_lm_sensors])
742 #if test "x$enable_sensors" != "xno"
743 #then
744 #       if test "x$with_lm_sensors" = "xyes"
745 #       then
746 #               enable_sensors="yes"
747 #       else
748 #               enable_sensors="no"
749 #       fi
750 #fi
751 #if test "x$enable_sensors" = "xno"
752 #then
753 #       AC_DEFINE(COLLECT_SENSORS, 0, [Wether or not to collect lm_sensors statistics])
754 #fi
755 #AM_CONDITIONAL(BUILD_MODULE_SENSORS, test "x$enable_sensors" = "xyes")
756
757 #AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [Disable serial statistics]),, [enable_serial="yes"])
758 #if test "x$enable_serial" != "xno"
759 #then
760 #       if test "x$ac_system" = "xLinux"
761 #       then
762 #               enable_serial="yes"
763 #       else
764 #               enable_serial="no"
765 #       fi
766 #fi
767 #if test "x$enable_serial" = "xno"
768 #then
769 #       AC_DEFINE(COLLECT_SERIAL, 0, [Wether or not to collect serial statistics])
770 #fi
771 #AM_CONDITIONAL(BUILD_MODULE_SERIAL, test "x$enable_serial" = "xyes")
772
773 #AC_ARG_ENABLE(swap, AC_HELP_STRING([--disable-swap], [Disable swap statistics]),, [enable_swap="yes"])
774 #if test "x$enable_swap" != "xno"
775 #then
776 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
777 #       then
778 #               enable_swap="yes"
779 #       else
780 #               enable_swap="no"
781 #       fi
782 #fi
783 #if test "x$enable_swap" = "xno"
784 #then
785 #       AC_DEFINE(COLLECT_SWAP, 0, [Wether or not to collect swap statistics])
786 #fi
787 #AM_CONDITIONAL(BUILD_MODULE_SWAP, test "x$enable_swap" = "xyes")
788
789 #AC_ARG_ENABLE(tape, AC_HELP_STRING([--disable-tape], [Disable tape statistics]),, [enable_tape="yes"])
790 #if test "x$enable_tape" != "xno"
791 #then
792 #       if test "x$with_kstat" = "xyes"
793 #       then
794 #               enable_tape="yes"
795 #       else
796 #               enable_tape="no"
797 #       fi
798 #fi
799 #if test "x$enable_tape" = "xno"
800 #then
801 #       AC_DEFINE(COLLECT_TAPE, 0, [Wether or not to collect tape statistics])
802 #fi
803 #AM_CONDITIONAL(BUILD_MODULE_TAPE, test "x$enable_tape" = "xyes")
804
805 #AC_ARG_ENABLE(traffic, AC_HELP_STRING([--disable-traffic], [Disable system traffic statistics]),, [enable_traffic="yes"])
806 #if test "x$enable_traffic" != "xno"
807 #then
808 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
809 #       then
810 #               enable_traffic="yes"
811 #       else
812 #               enable_traffic="no"
813 #       fi
814 #fi
815 #if test "x$enable_traffic" = "xno"
816 #then
817 #       AC_DEFINE(COLLECT_TRAFFIC, 0, [Wether or not to collect network traffic statistics])
818 #fi
819 #AM_CONDITIONAL(BUILD_MODULE_TRAFFIC, test "x$enable_traffic" = "xyes")
820
821 #AC_COLLECTD([users],     [disable], [module], [user count statistics])
822
823 AC_OUTPUT(Makefile src/libconfig/Makefile src/liboping/Makefile src/Makefile)
824
825 cat <<EOF;
826
827 Configuration:
828   Libraries:
829     librrd  . . . . . . $with_rrdtool
830     lm_sensors  . . . . $with_lm_sensors
831     libstatgrab . . . . $with_libstatgrab
832     libkstat  . . . . . $with_kstat
833     libmysql  . . . . . $with_libmysql
834
835   Features:
836     debug . . . . . . . $enable_debug
837     daemon mode . . . . $enable_daemon
838
839   Modules:
840     battery . . . . . . $enable_battery
841     cpu . . . . . . . . $enable_cpu
842     cpufreq . . . . . . $enable_cpufreq
843     df  . . . . . . . . $enable_df
844     disk  . . . . . . . $enable_disk
845     hddtemp . . . . . . $enable_hddtemp
846     load  . . . . . . . $enable_load
847     memory  . . . . . . $enable_memory
848     mysql . . . . . . . $enable_mysql
849     nfs . . . . . . . . $enable_nfs
850     ping  . . . . . . . $enable_ping
851     processes . . . . . $enable_processes
852     sensors . . . . . . $enable_sensors
853     serial  . . . . . . $enable_serial
854     swap  . . . . . . . $enable_swap
855     tape  . . . . . . . $enable_tape
856     traffic . . . . . . $enable_traffic
857     users . . . . . . . $enable_users
858     wireless  . . . . . $enable_wireless
859
860 EOF