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