Changed version to 3.6.0
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, 3.6.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/statvfs.h)
78 AC_CHECK_HEADERS(sys/vfs.h)
79 AC_CHECK_HEADERS(sys/vfstab.h)
80
81 # For debugging interface (variable number of arguments)
82 AC_CHECK_HEADERS(stdarg.h)
83
84 dnl Checking for libraries
85 AC_CHECK_LIB(m, ext)
86
87 #
88 # Checks for typedefs, structures, and compiler characteristics.
89 #
90 AC_C_CONST
91 AC_TYPE_PID_T
92 AC_TYPE_SIZE_T
93 AC_TYPE_UID_T
94 AC_HEADER_TIME
95
96 #
97 # Checks for library functions.
98 #
99 AC_PROG_GCC_TRADITIONAL
100 AC_CHECK_FUNCS(gettimeofday select strdup strtol)
101 AC_CHECK_FUNCS(socket, , AC_CHECK_LIB(socket, socket))
102 AC_CHECK_FUNCS(gethostbyname, , AC_CHECK_LIB(nsl, gethostbyname))
103 AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
104 AC_CHECK_FUNCS(strncasecmp strcasecmp)
105 AC_CHECK_FUNCS(openlog syslog closelog)
106
107 # For cpu module
108 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
109
110 # For df module
111 AC_CHECK_FUNCS(statfs statvfs)
112
113 # For load module
114 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
115
116 # For users module
117 AC_CHECK_FUNCS(getutent getutxent)
118
119 # For quota module
120 AC_CHECK_FUNCS(quotactl)
121 AC_CHECK_FUNCS(getgrgid getpwuid)
122
123 # For mount interface
124 AC_CHECK_FUNCS(getfsent getvfsent listmntent)
125 AC_FUNC_GETMNTENT
126 if test "x$ac_cv_func_getmntent" = "xyes"; then
127         saveCFLAGS="$CFLAGS"
128         CFLAGS="-Wall -Werror $CFLAGS"
129         AC_CACHE_CHECK([whether getmntent takes one argument],
130                 [fu_cv_getmntent1],
131                 AC_COMPILE_IFELSE(
132                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
133 #include "$srcdir/src/utils_mount.h"]],
134                                 [[(void)getmntent((FILE *)NULL);]]
135                         ),
136                         [fu_cv_getmntent1=yes],
137                         [fu_cv_getmntent1=no]
138                 )
139         )
140         if test "x$fu_cv_getmntent1" = "xno"; then
141                 AC_CACHE_CHECK([whether getmntent takes two arguments],
142                         [fu_cv_getmntent2],
143                         AC_COMPILE_IFELSE(
144                                 AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
145 #include "$srcdir/src/utils_mount.h"]],
146                                         [[(void)getmntent((FILE *)NULL,
147                                                 (struct mnttab *)NULL);]]
148                                 ),
149                                 [fu_cv_getmntent2=yes],
150                                 [fu_cv_getmntent2=no]
151                         )
152                 )
153         fi
154         CFLAGS="$saveCFLAGS"
155 fi
156 if test "x$fu_cv_getmntent1" = "xyes"; then
157         AC_DEFINE(HAVE_GETMNTENT1,
158                 1,
159                 [Define if there is a function named getmntent
160                         for reading the list of mounted filesystems, and
161                         that function takes a single argument. (4.3BSD,
162                         SunOS, HP-UX, Dynix, Irix, Linux)]
163                 )
164 fi
165 if test "x$fu_cv_getmntent2" = "xyes"; then
166         AC_DEFINE(HAVE_GETMNTENT2,
167                 1,
168                 [Define if there is a function named getmntent
169                         for reading the list of mounted filesystems, and
170                         that function takes two arguments. (SVR4)]
171                 )
172 fi
173
174 AC_MSG_CHECKING([for kernel type ($host_os)])
175 case $host_os in
176         *linux*)
177         AC_DEFINE([KERNEL_LINUX], [], [True if program is to be compiled for a Linux kernel])
178         ac_system="Linux"
179         ;;
180         *solaris*)
181         AC_DEFINE([KERNEL_SOLARIS], [], [True if program is to be compiled for a Solaris kernel])
182         ac_system="Solaris"
183         ;;
184         *)
185         ac_system="unknown"
186 esac
187 AC_MSG_RESULT([$ac_system])
188
189 dnl Checks for libraries.
190 AC_CHECK_LIB(socket, socket)
191 AC_CHECK_LIB(resolv, res_search)
192
193 m4_divert_once([HELP_WITH], [
194 collectd additional packages:])
195
196 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
197 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
198 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
199         then
200                 LDFLAGS="$LDFLAGS -L$withval/lib"
201                 CPPFLAGS="$CPPFLAGS -I$withval/include"
202                 with_rrdtool="yes"
203         fi
204 ], [with_rrdtool="yes"])
205 if test "x$with_rrdtool" = "xyes"
206 then
207         AC_CHECK_LIB(rrd, rrd_update,, [with_rrdtool="no (librrd not found)"], [-lm])
208 fi
209 if test "x$with_rrdtool" = "xyes"
210 then
211         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
212 fi
213 if test "x$with_rrdtool" = "xyes"
214 then
215         collect_rrdtool=1
216 else
217         collect_rrdtool=0
218 fi
219 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
220         [Wether or not to use rrdtool library])
221 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
222
223 #AC_ARG_WITH(pth, [AS_HELP_STRING([--with-pth=@<:@=PREFIX@:>@], [Path to pth (experimental).]),
224 #[      if test "x$withval" != "xno" && test "x$withval" != "xyes"
225 #       then
226 #               LDFLAGS="$LDFLAGS -L$withval/lib"
227 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
228 #               with_pth="yes"
229 #       fi
230 #], [with_pth="no"])
231 #if test "x$with_pth" = "xyes"
232 #then
233 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no (libpth not found)"], [])
234 #fi
235 #if test "x$with_pth" = "xyes"
236 #then
237 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no (pth.h not found)"])
238 #fi
239 #if test "x$with_pth" = "xyes"
240 #then
241 #       collect_pth=1
242 #else
243 #       collect_pth=0
244 #fi
245 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
246 #       [Wether or not to use pth (portable threads) library])
247 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
248
249 if test "$ac_system" = "Solaris"
250 then
251         with_kstat="yes"
252 else
253         with_kstat="no (Solaris only)"
254 fi
255 if test "x$with_kstat" = "xyes"
256 then
257         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
258 fi
259 if test "x$with_kstat" = "xyes"
260 then
261         AC_CHECK_LIB(devinfo, di_init)
262         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
263 fi
264 if test "x$with_kstat" = "xyes"
265 then
266         collect_kstat=1
267 else
268         collect_kstat=0
269 fi
270 AC_DEFINE_UNQUOTED(COLLECT_KSTAT, [$collect_kstat],
271         [Wether or not to use kstat library (Solaris)])
272 AM_CONDITIONAL(BUILD_WITH_KSTAT, test "x$with_kstat" = "xyes")
273
274 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
275 [
276         if test "x$withval" != "xno" && test "x$withval" != "xyes"
277         then
278                 LDFLAGS="$LDFLAGS -L$withval/lib"
279                 CPPFLAGS="$CPPFLAGS -I$withval/include"
280                 with_libstatgrab="yes"
281         fi
282 ],
283 [
284         if test "x$ac_system" == "xunknown"
285         then
286                 with_libstatgrab="yes"
287         else
288                 with_libstatgrab="no"
289         fi
290 ])
291 if test "x$with_libstatgrab" = "xyes"
292 then
293         AC_CHECK_LIB(devstat, getdevs)
294         AC_CHECK_LIB(kvm, kvm_getargv)
295         AC_CHECK_LIB(statgrab, sg_init,, [with_libstatgrab="no (libstatgrab not found)"])
296 fi
297 if test "x$with_libstatgrab" = "xyes"
298 then
299         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
300 fi
301 if test "x$with_libstatgrab" = "xyes"
302 then
303         collect_libstatgrab=1
304 else
305         collect_libstatgrab=0
306 fi
307 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
308         [Wether or not to use statgrab library])
309 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
310
311 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
312 [
313         if test "x$withval" != "xno" && test "x$withval" != "xyes"
314         then
315                 LDFLAGS="$LDFLAGS -L$withval/lib"
316                 CPPFLAGS="$CPPFLAGS -I$withval/include"
317                 with_lm_sensors="yes"
318         fi
319 ],
320 [
321         if test "x$ac_system" = "xLinux"
322         then
323                 with_lm_sensors="yes"
324         else
325                 with_lm_sensors="no"
326         fi
327 ])
328 if test "x$with_lm_sensors" = "xyes"
329 then
330         AC_CHECK_LIB(sensors, sensors_init,
331         [
332                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
333         ],
334         [with_lm_sensors="no (libsensors not found)"])
335 fi
336 if test "x$with_lm_sensors" = "xyes"
337 then
338         AC_CHECK_HEADERS(sensors/sensors.h,
339         [
340                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
341         ],
342         [with_lm_sensors="no (sensors/sensors.h not found)"])
343 fi
344 if test "x$with_lm_sensors" = "xyes"
345 then
346         collect_lm_sensors=1
347 else
348         collect_lm_sensors=0
349 fi
350 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
351         [Wether or not to use sensors library])
352 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
353
354 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
355 [
356         if test "x$withval" != "xno" && test "x$withval" != "xyes"
357         then
358                 LDFLAGS="$LDFLAGS -L$withval/lib"
359                 CPPFLAGS="$CPPFLAGS -I$withval/include"
360                 with_libmysql="yes"
361         fi
362 ],
363 [
364         with_libmysql="yes"
365 ])
366 if test "x$with_libmysql" = "xyes"
367 then
368         AC_CHECK_LIB(mysqlclient, mysql_init,, [with_libmysql="no (libmysql not found)"])
369 fi
370 if test "x$with_libmysql" = "xyes"
371 then
372         AC_CHECK_HEADERS(mysql/mysql.h,, [with_libmysql="no (mysql/mysql.h not found)"])
373 fi
374 if test "x$with_libmysql" = "xyes"
375 then
376         collect_libmysql=1
377 else
378         collect_libmysql=0
379 fi
380 AC_DEFINE_UNQUOTED(COLLECT_LIBMYSQL, [$collect_libmysql],
381         [Wether or not to use mysql library])
382 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
383
384 #
385 # Check for enabled/disabled features
386 #
387
388 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
389 # ------------------------------------------------------------
390 dnl
391 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
392 dnl
393 AC_DEFUN(
394         [AC_COLLECTD],
395         [
396         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
397         m4_if(
398                 [$2],
399                 [enable],
400                 [dnl
401                 m4_define([EnDis],[disabled])dnl
402                 m4_define([YesNo],[no])dnl
403                 ],dnl
404                 [m4_if(
405                         [$2],
406                         [disable],
407                         [dnl
408                         m4_define([EnDis],[enabled])dnl
409                         m4_define([YesNo],[yes])dnl
410                         ],
411                         [dnl
412                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
413                         ]dnl
414                 )]dnl
415         )dnl
416         m4_if([$3], [feature], [],
417                 [m4_if(
418                         [$3], [module], [],
419                         [dnl
420                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
421                         ]dnl
422                 )]dnl
423         )dnl
424         AC_ARG_ENABLE(
425                 [$1],
426                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
427                 [],
428                 enable_$1='[YesNo]'dnl
429         )# AC_ARG_ENABLE
430 if test "x$enable_$1" = "xno"
431 then
432         collectd_$1=0
433 else
434         if test "x$enable_$1" = "xyes"
435         then
436                 collectd_$1=1
437         else
438                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
439                 collectd_$1=1
440                 enable_$1='yes'
441         fi
442 fi
443         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
444         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
445         ]dnl
446 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
447
448 m4_divert_once([HELP_ENABLE], [
449 collectd features:])
450 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
451 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
452
453 m4_divert_once([HELP_ENABLE], [
454 collectd modules:])
455 AC_COLLECTD([cpu],       [disable], [module], [cpu usage statistics])
456 AC_COLLECTD([cpufreq],   [disable], [module], [system cpu frequency statistics])
457 AC_COLLECTD([disk],      [disable], [module], [disk/partition statistics])
458 AC_COLLECTD([df],        [disable], [module], [df statistics])
459 AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
460 AC_COLLECTD([hddtemp],   [disable], [module], [hdd temperature statistics])
461 AC_COLLECTD([load],      [disable], [module], [system load statistics])
462 AC_COLLECTD([memory],    [disable], [module], [memory statistics])
463 AC_COLLECTD([mysql],     [disable], [module], [mysql statistics])
464 AC_COLLECTD([nfs],       [disable], [module], [nfs statistics])
465 AC_COLLECTD([ping],      [disable], [module], [ping statistics])
466 AC_COLLECTD([processes], [disable], [module], [processes statistics])
467 AC_COLLECTD([sensors],   [disable], [module], [lm_sensors statistics])
468 AC_COLLECTD([serial],    [disable], [module], [serial statistics])
469 AC_COLLECTD([swap],      [disable], [module], [swap statistics])
470 AC_COLLECTD([tape],      [disable], [module], [tape statistics])
471 AC_COLLECTD([traffic],   [disable], [module], [system traffic statistics])
472 AC_COLLECTD([users],     [disable], [module], [user count statistics])
473
474 #m4_divert_once([HELP_ENABLE], [
475 #collectd modules:])
476 #AC_ARG_ENABLE(cpu, AC_HELP_STRING([--disable-cpu], [Disable CPU usage statistics]),, [enable_cpu="yes"])
477 #if test "x$enable_cpu" != "xno"
478 #then
479 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$have_sysctlbyname" = "xyes"
480 #       then
481 #               enable_cpu="yes"
482 #       else
483 #               enable_cpu="no"
484 #       fi
485 #fi
486 #if test "x$enable_cpu" = "xno"
487 #then
488 #       AC_DEFINE(COLLECT_CPU, 0, [Wether or not to collect CPU usage statistics])
489 #fi
490 #AM_CONDITIONAL(BUILD_MODULE_CPU, test "x$enable_cpu" = "xyes")
491
492 #AC_ARG_ENABLE(cpufreq, AC_HELP_STRING([--disable-cpufreq], [Disable system cpu frequency statistics]),, [enable_cpufreq="yes"])
493 #if test "x$enable_cpufreq" != "xno"
494 #then
495 #       if test "x$ac_system" = "xLinux"
496 #       then
497 #               enable_cpufreq="yes"
498 #       else
499 #               enable_cpufreq="no"
500 #       fi
501 #fi
502 #if test "x$enable_cpufreq" = "xno"
503 #then
504 #       AC_DEFINE(COLLECT_CPUFREQ, 0, [Wether or not to collect cpu frequency statistics])
505 #fi
506 #AM_CONDITIONAL(BUILD_MODULE_CPUFREQ, test "x$enable_cpufreq" = "xyes")
507
508 #AC_ARG_ENABLE(disk, AC_HELP_STRING([--disable-disk], [Disable disk/partition statistics]),, [enable_disk="yes"])
509 #if test "x$enable_disk" != "xno"
510 #then
511 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes"
512 #       then
513 #               enable_disk="yes"
514 #       else
515 #               enable_disk="no"
516 #       fi
517 #fi
518 #if test "x$enable_disk" = "xno"
519 #then
520 #       AC_DEFINE(COLLECT_DISK, 0, [Wether or not to collect diskstats])
521 #fi
522 #AM_CONDITIONAL(BUILD_MODULE_DISK, test "x$enable_disk" = "xyes")
523
524 #AC_ARG_ENABLE(hddtemp, AC_HELP_STRING([--disable-hddtemp], [Disable hdd temperature statistics]),, [enable_hddtemp="yes"])
525 #if test "x$enable_hddtemp" = "xno"
526 #then
527 #       AC_DEFINE(COLLECT_HDDTEMP, 0, [Wether or not to collect hdd temperature statistics])
528 #fi
529 #AM_CONDITIONAL(BUILD_MODULE_HDDTEMP, test "x$enable_hddtemp" = "xyes")
530
531 #AC_ARG_ENABLE(load, AC_HELP_STRING([--disable-load], [Disable system load statistics]),, [enable_load="yes"])
532 #if test "x$enable_load" != "xno"
533 #then
534 #       if test "x$have_getloadavg" = "xyes" -o "x$ac_system" = "xLinux" -o "x$with_libstatgrab" = "xyes"
535 #       then
536 #               enable_load="yes"
537 #       else
538 #               enable_load="no"
539 #       fi
540 #fi
541 #if test "x$enable_load" = "xno"
542 #then
543 #       AC_DEFINE(COLLECT_LOAD, 0, [Wether or not to collect system load statistics])
544 #fi
545 #AM_CONDITIONAL(BUILD_MODULE_LOAD, test "x$enable_load" = "xyes")
546
547 #AC_ARG_ENABLE(memory, AC_HELP_STRING([--disable-memory], [Disable memory statistics]),, [enable_memory="yes"])
548 #if test "x$enable_memory" != "xno"
549 #then
550 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
551 #       then
552 #               enable_memory="yes"
553 #       else
554 #               enable_memory="no"
555 #       fi
556 #fi
557 #if test "x$enable_memory" = "xno"
558 #then
559 #       AC_DEFINE(COLLECT_MEMORY, 0, [Wether or not to collect memory statistics])
560 #fi
561 #AM_CONDITIONAL(BUILD_MODULE_MEMORY, test "x$enable_memory" = "xyes")
562
563 #AC_ARG_ENABLE(nfs, AC_HELP_STRING([--disable-nfs], [Disable nfs statistics]),, [enable_nfs="yes"])
564 #if test "x$enable_nfs" != "xno"
565 #then
566 #       if test "x$ac_system" = "xLinux"
567 #       then
568 #               enable_nfs="yes"
569 #       else
570 #               enable_nfs="no"
571 #       fi
572 #fi
573 #if test "x$enable_nfs" = "xno"
574 #then
575 #       AC_DEFINE(COLLECT_NFS, 0, [Wether or not to collect nfs statistics])
576 #fi
577 #AM_CONDITIONAL(BUILD_MODULE_NFS, test "x$enable_nfs" = "xyes")
578
579 #AC_ARG_ENABLE(ping, AC_HELP_STRING([--disable-ping], [Disable ping statistics]),, [enable_ping="yes"])
580 #if test "x$enable_ping" != "xno"
581 #then
582 #       enable_ping="yes"
583 #fi
584 #if test "x$enable_ping" = "xno"
585 #then
586 #       AC_DEFINE(COLLECT_PING, 0, [Wether or not to collect ping statistics])
587 #fi
588 #AM_CONDITIONAL(BUILD_MODULE_PING, test "x$enable_ping" = "xyes")
589
590 #AC_ARG_ENABLE(processes, AC_HELP_STRING([--disable-processes], [Disable processes statistics]),, [enable_processes="yes"])
591 #if test "x$enable_processes" != "xno"
592 #then
593 #       if test "x$ac_system" = "xLinux" 
594 #       then
595 #               enable_processes="yes"
596 #       else
597 #               enable_processes="no"
598 #       fi
599 #fi
600 #if test "x$enable_processes" = "xno"
601 #then
602 #       AC_DEFINE(COLLECT_PROCESSES, 0, [Wether or not to collect processes statistics])
603 #fi
604 #AM_CONDITIONAL(BUILD_MODULE_PROCESSES, test "x$enable_processes" = "xyes")
605
606 ##AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
607
608 #AC_ARG_ENABLE(sensors, AC_HELP_STRING([--disable-sensors], [Disable lm_sensors statistics]),, [enable_sensors=$with_lm_sensors])
609 #if test "x$enable_sensors" != "xno"
610 #then
611 #       if test "x$with_lm_sensors" = "xyes"
612 #       then
613 #               enable_sensors="yes"
614 #       else
615 #               enable_sensors="no"
616 #       fi
617 #fi
618 #if test "x$enable_sensors" = "xno"
619 #then
620 #       AC_DEFINE(COLLECT_SENSORS, 0, [Wether or not to collect lm_sensors statistics])
621 #fi
622 #AM_CONDITIONAL(BUILD_MODULE_SENSORS, test "x$enable_sensors" = "xyes")
623
624 #AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [Disable serial statistics]),, [enable_serial="yes"])
625 #if test "x$enable_serial" != "xno"
626 #then
627 #       if test "x$ac_system" = "xLinux"
628 #       then
629 #               enable_serial="yes"
630 #       else
631 #               enable_serial="no"
632 #       fi
633 #fi
634 #if test "x$enable_serial" = "xno"
635 #then
636 #       AC_DEFINE(COLLECT_SERIAL, 0, [Wether or not to collect serial statistics])
637 #fi
638 #AM_CONDITIONAL(BUILD_MODULE_SERIAL, test "x$enable_serial" = "xyes")
639
640 #AC_ARG_ENABLE(swap, AC_HELP_STRING([--disable-swap], [Disable swap statistics]),, [enable_swap="yes"])
641 #if test "x$enable_swap" != "xno"
642 #then
643 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
644 #       then
645 #               enable_swap="yes"
646 #       else
647 #               enable_swap="no"
648 #       fi
649 #fi
650 #if test "x$enable_swap" = "xno"
651 #then
652 #       AC_DEFINE(COLLECT_SWAP, 0, [Wether or not to collect swap statistics])
653 #fi
654 #AM_CONDITIONAL(BUILD_MODULE_SWAP, test "x$enable_swap" = "xyes")
655
656 #AC_ARG_ENABLE(tape, AC_HELP_STRING([--disable-tape], [Disable tape statistics]),, [enable_tape="yes"])
657 #if test "x$enable_tape" != "xno"
658 #then
659 #       if test "x$with_kstat" = "xyes"
660 #       then
661 #               enable_tape="yes"
662 #       else
663 #               enable_tape="no"
664 #       fi
665 #fi
666 #if test "x$enable_tape" = "xno"
667 #then
668 #       AC_DEFINE(COLLECT_TAPE, 0, [Wether or not to collect tape statistics])
669 #fi
670 #AM_CONDITIONAL(BUILD_MODULE_TAPE, test "x$enable_tape" = "xyes")
671
672 #AC_ARG_ENABLE(traffic, AC_HELP_STRING([--disable-traffic], [Disable system traffic statistics]),, [enable_traffic="yes"])
673 #if test "x$enable_traffic" != "xno"
674 #then
675 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
676 #       then
677 #               enable_traffic="yes"
678 #       else
679 #               enable_traffic="no"
680 #       fi
681 #fi
682 #if test "x$enable_traffic" = "xno"
683 #then
684 #       AC_DEFINE(COLLECT_TRAFFIC, 0, [Wether or not to collect network traffic statistics])
685 #fi
686 #AM_CONDITIONAL(BUILD_MODULE_TRAFFIC, test "x$enable_traffic" = "xyes")
687
688 #AC_COLLECTD([users],     [disable], [module], [user count statistics])
689
690 AC_OUTPUT(Makefile src/libconfig/Makefile src/libping/Makefile src/Makefile)
691
692 cat <<EOF;
693
694 Configuration:
695   Libraries:
696     librrd  . . . . . . $with_rrdtool
697     lm_sensors  . . . . $with_lm_sensors
698     libstatgrab . . . . $with_libstatgrab
699     libkstat  . . . . . $with_kstat
700     libmysql  . . . . . $with_libmysql
701
702   Features:
703     debug . . . . . . . $enable_debug
704     daemon mode . . . . $enable_daemon
705
706   Modules:
707     cpu . . . . . . . . $enable_cpu
708     cpufreq . . . . . . $enable_cpufreq
709     df  . . . . . . . . $enable_df
710     disk  . . . . . . . $enable_disk
711     hddtemp . . . . . . $enable_hddtemp
712     load  . . . . . . . $enable_load
713     memory  . . . . . . $enable_memory
714     mysql . . . . . . . $enable_mysql
715     nfs . . . . . . . . $enable_nfs
716     ping  . . . . . . . $enable_ping
717     processes . . . . . $enable_processes
718     sensors . . . . . . $enable_sensors
719     serial  . . . . . . $enable_serial
720     swap  . . . . . . . $enable_swap
721     tape  . . . . . . . $enable_tape
722     traffic . . . . . . $enable_traffic
723     users . . . . . . . $enable_users
724
725 EOF