Code

Simplified the `submit' and `write' functions of the `apcups' plugin. Also changed...
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, 3.9.2)
3 AC_CONFIG_SRCDIR(src/collectd.c)
4 AC_CONFIG_HEADERS(src/config.h)
5 AM_INIT_AUTOMAKE(dist-bzip2)
6 AC_LANG(C)
8 AC_PREFIX_DEFAULT("/opt/collectd")
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")
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)
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(stdio.h)
38 AC_CHECK_HEADERS(errno.h)
39 AC_CHECK_HEADERS(math.h)
40 AC_CHECK_HEADERS(syslog.h)
41 AC_CHECK_HEADERS(fcntl.h)
42 AC_CHECK_HEADERS(signal.h)
43 AC_CHECK_HEADERS(assert.h)
44 AC_CHECK_HEADERS(sys/types.h)
45 AC_CHECK_HEADERS(sys/socket.h)
46 AC_CHECK_HEADERS(sys/select.h)
47 AC_CHECK_HEADERS(netdb.h)
48 AC_CHECK_HEADERS(arpa/inet.h)
49 AC_CHECK_HEADERS(sys/resource.h)
50 AC_CHECK_HEADERS(sys/param.h)
52 # For ping library
53 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
54 [#if HAVE_STDINT_H
55 # include <stdint.h>
56 #endif
57 ])
58 AC_CHECK_HEADERS(netinet/in.h, [], [],
59 [#if HAVE_STDINT_H
60 # include <stdint.h>
61 #endif
62 #if HAVE_NETINET_IN_SYSTM_H
63 # include <netinet/in_systm.h>
64 #endif
65 ])
66 AC_CHECK_HEADERS(netinet/ip.h, [], [],
67 [#if HAVE_STDINT_H
68 # include <stdint.h>
69 #endif
70 #if HAVE_NETINET_IN_SYSTM_H
71 # include <netinet/in_systm.h>
72 #endif
73 #if HAVE_NETINET_IN_H
74 # include <netinet/in.h>
75 #endif
76 ])
77 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
78 [#if HAVE_STDINT_H
79 # include <stdint.h>
80 #endif
81 #if HAVE_NETINET_IN_SYSTM_H
82 # include <netinet/in_systm.h>
83 #endif
84 #if HAVE_NETINET_IN_H
85 # include <netinet/in.h>
86 #endif
87 #if HAVE_NETINET_IP_H
88 # include <netinet/ip.h>
89 #endif
90 ])
91 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
92 [#if HAVE_STDINT_H
93 # include <stdint.h>
94 #endif
95 #if HAVE_NETINET_IN_SYSTM_H
96 # include <netinet/in_systm.h>
97 #endif
98 #if HAVE_NETINET_IN_H
99 # include <netinet/in.h>
100 #endif
101 #if HAVE_NETINET_IP_H
102 # include <netinet/ip.h>
103 #endif
104 ])
105 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
106 [#if HAVE_STDINT_H
107 # include <stdint.h>
108 #endif
109 #if HAVE_SYS_TYPES_H
110 # include <sys/types.h>
111 #endif
112 #if HAVE_NETINET_IN_SYSTM_H
113 # include <netinet/in_systm.h>
114 #endif
115 #if HAVE_NETINET_IN_H
116 # include <netinet/in.h>
117 #endif
118 ])
119 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
120 [#if HAVE_STDINT_H
121 # include <stdint.h>
122 #endif
123 #if HAVE_SYS_TYPES_H
124 # include <sys/types.h>
125 #endif
126 #if HAVE_NETINET_IN_SYSTM_H
127 # include <netinet/in_systm.h>
128 #endif
129 #if HAVE_NETINET_IN_H
130 # include <netinet/in.h>
131 #endif
132 #if HAVE_NETINET_IP6_H
133 # include <netinet/ip6.h>
134 #endif
135 ])
137 # For cpu modules
138 AC_CHECK_HEADERS(sys/sysctl.h sys/dkstat.h)
139 AC_CHECK_HEADERS(mach/mach_init.h)
140 AC_CHECK_HEADERS(mach/host_priv.h)
141 AC_CHECK_HEADERS(mach/mach_error.h)
142 AC_CHECK_HEADERS(mach/mach_host.h)
143 AC_CHECK_HEADERS(mach/mach_port.h)
144 AC_CHECK_HEADERS(mach/mach_types.h)
145 AC_CHECK_HEADERS(mach/message.h)
146 AC_CHECK_HEADERS(mach/processor_set.h)
147 AC_CHECK_HEADERS(mach/processor.h)
148 AC_CHECK_HEADERS(mach/processor_info.h)
149 AC_CHECK_HEADERS(mach/task.h)
150 AC_CHECK_HEADERS(mach/thread_act.h)
151 AC_CHECK_HEADERS(mach/vm_region.h)
152 AC_CHECK_HEADERS(mach/vm_map.h)
153 AC_CHECK_HEADERS(mach/vm_prot.h)
154 AC_CHECK_HEADERS(mach/vm_statistics.h)
155 AC_CHECK_HEADERS(mach/kern_return.h)
157 # For hddtemp module
158 AC_CHECK_HEADERS(linux/major.h)
160 # For the apple_sensors module
161 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h)
162 AC_CHECK_HEADERS(IOKit/IOKitLib.h)
163 AC_CHECK_HEADERS(IOKit/IOTypes.h)
165 # For the battery plugin
166 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
168 #if HAVE_IOKIT_IOKITLIB_H
169 #  include <IOKit/IOKitLib.h>
170 #endif
171 #if HAVE_IOKIT_IOTYPES_H
172 #  include <IOKit/IOTypes.h>
173 #endif
174 ])
175 AC_CHECK_HEADERS(IOKit/ps/IOPSKeys.h)
177 # For the `disk' plugin
178 AC_CHECK_HEADERS(IOKit/IOBSD.h)
179 AC_CHECK_HEADERS(IOKit/storage/IOBlockStorageDriver.h)
181 # For load module
182 AC_CHECK_HEADERS(sys/loadavg.h)
184 # For the swap module
185 AC_CHECK_HEADERS(sys/swap.h)
187 # For users module
188 AC_CHECK_HEADERS(utmp.h)
189 AC_CHECK_HEADERS(utmpx.h)
191 # For traffic plugin
192 AC_CHECK_HEADERS(ifaddrs.h)
193 AC_CHECK_HEADERS(net/if.h, [], [],
195 #if HAVE_SYS_TYPES_H
196 #  include <sys/types.h>
197 #endif
198 #if HAVE_SYS_SOCKET_H
199 #  include <sys/socket.h>
200 #endif
201 ])
202 AC_CHECK_HEADERS(linux/if.h, [], [],
204 #if HAVE_SYS_TYPES_H
205 #  include <sys/types.h>
206 #endif
207 #if HAVE_SYS_SOCKET_H
208 #  include <sys/socket.h>
209 #endif
210 ])
211 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
213 #if HAVE_SYS_TYPES_H
214 #  include <sys/types.h>
215 #endif
216 #if HAVE_SYS_SOCKET_H
217 #  include <sys/socket.h>
218 #endif
219 #if HAVE_LINUX_IF_H
220 # include <linux/if.h>
221 #endif
222 ])
224 # For apache plugin
225 AC_CHECK_HEADERS(curl/curl.h)
227 # For quota module
228 AC_CHECK_HEADERS(grp.h pwd.h sys/ucred.h)
229 AC_CHECK_HEADERS(ctype.h)
230 AC_CHECK_HEADERS(limits.h)
231 AC_CHECK_HEADERS(sys/quota.h)
232 AC_CHECK_HEADERS(xfs/xqm.h)
234 # For mount interface
235 AC_CHECK_HEADERS(fs_info.h)
236 AC_CHECK_HEADERS(fshelp.h)
237 AC_CHECK_HEADERS(paths.h)
238 AC_CHECK_HEADERS(mntent.h)
239 AC_CHECK_HEADERS(mnttab.h)
240 AC_CHECK_HEADERS(sys/fstyp.h)
241 AC_CHECK_HEADERS(sys/fs_types.h)
242 AC_CHECK_HEADERS(sys/mntent.h)
243 AC_CHECK_HEADERS(sys/mnttab.h)
244 AC_CHECK_HEADERS(sys/mount.h)
245 AC_CHECK_HEADERS(sys/statfs.h)
246 AC_CHECK_HEADERS(sys/statvfs.h)
247 AC_CHECK_HEADERS(sys/vfs.h)
248 AC_CHECK_HEADERS(sys/vfstab.h)
250 # For debugging interface (variable number of arguments)
251 AC_CHECK_HEADERS(stdarg.h)
253 dnl Checking for libraries
254 AC_CHECK_LIB(m, ext)
257 # Checks for typedefs, structures, and compiler characteristics.
259 AC_C_CONST
260 AC_TYPE_PID_T
261 AC_TYPE_SIZE_T
262 AC_TYPE_UID_T
263 AC_HEADER_TIME
266 # Checks for library functions.
268 AC_PROG_GCC_TRADITIONAL
269 AC_CHECK_FUNCS(gettimeofday select strdup strtol)
270 AC_CHECK_FUNCS(getaddrinfo getnameinfo)
271 AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
272 AC_CHECK_FUNCS(strncasecmp strcasecmp)
273 AC_CHECK_FUNCS(openlog syslog closelog)
275 socket_needs_socket="no"
276 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
277 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
279 nanosleep_needs_rt="no"
280 AC_CHECK_FUNCS(nanosleep, [], AC_CHECK_LIB(rt, nanosleep, [nanosleep_needs_rt="yes"], AC_MSG_ERROR(cannot find nanosleep)))
281 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
283 # For cpu module
284 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
286 # For df module
287 AC_CHECK_FUNCS(statfs statvfs)
289 # For load module
290 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
292 # For the `processes' plugin
293 AC_CHECK_FUNCS(thread_info)
295 # For users module
296 AC_CHECK_FUNCS(getutent getutxent)
298 # For quota module
299 AC_CHECK_FUNCS(quotactl)
300 AC_CHECK_FUNCS(getgrgid getpwuid)
302 # For traffic module
303 AC_CHECK_FUNCS(getifaddrs)
305 # For mount interface
306 AC_CHECK_FUNCS(getfsent getvfsent listmntent)
307 AC_CHECK_FUNCS(getfsstat)
309 # Check for different versions of `getmntent' here..
310 AC_FUNC_GETMNTENT
311 if test "x$ac_cv_lib_sun_getmntent" = "xyes"
312 then
313         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
314                   [Define if the function getmntent exists. It's the version from libsun.])
315 fi
316 if test "x$ac_cv_lib_seq_getmntent" = "xyes"
317 then
318         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
319                   [Define if the function getmntent exists. It's the version from libseq.])
320 fi
321 if test "x$ac_cv_lib_gen_getmntent" = "xyes"
322 then
323         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
324                   [Define if the function getmntent exists. It's the version from libgen.])
325 fi
327 if test "x$ac_cv_func_getmntent" = "xyes"; then
328         saveCFLAGS="$CFLAGS"
329         CFLAGS="-Wall -Werror $CFLAGS"
330         AC_CACHE_CHECK([whether getmntent takes one argument],
331                 [fu_cv_getmntent1],
332                 AC_COMPILE_IFELSE(
333                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
334 #include "$srcdir/src/utils_mount.h"]],
335                                 [[(void)getmntent((FILE *)NULL);]]
336                         ),
337                         [fu_cv_getmntent1=yes],
338                         [fu_cv_getmntent1=no]
339                 )
340         )
341         if test "x$fu_cv_getmntent1" = "xno"; then
342                 AC_CACHE_CHECK([whether getmntent takes two arguments],
343                         [fu_cv_getmntent2],
344                         AC_COMPILE_IFELSE(
345                                 AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
346 #include "$srcdir/src/utils_mount.h"]],
347                                         [[(void)getmntent((FILE *)NULL,
348                                                 (struct mnttab *)NULL);]]
349                                 ),
350                                 [fu_cv_getmntent2=yes],
351                                 [fu_cv_getmntent2=no]
352                         )
353                 )
354         fi
355         CFLAGS="$saveCFLAGS"
356 fi
357 if test "x$fu_cv_getmntent1" = "xyes"; then
358         AC_DEFINE(HAVE_GETMNTENT1,
359                 1,
360                 [Define if there is a function named getmntent
361                         for reading the list of mounted filesystems, and
362                         that function takes a single argument. (4.3BSD,
363                         SunOS, HP-UX, Dynix, Irix, Linux)]
364                 )
365 fi
366 if test "x$fu_cv_getmntent2" = "xyes"; then
367         AC_DEFINE(HAVE_GETMNTENT2,
368                 1,
369                 [Define if there is a function named getmntent
370                         for reading the list of mounted filesystems, and
371                         that function takes two arguments. (SVR4)]
372                 )
373 fi
375 # Check for structures
376 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
377         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
378         [],
379         [
380         #include <sys/types.h>
381         #include <sys/socket.h>
382         #include <net/if.h>
383         ])
384 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
385         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
386         [],
387         [
388         #include <sys/types.h>
389         #include <sys/socket.h>
390         #include <linux/if.h>
391         #include <linux/netdevice.h>
392         ])
394 AC_MSG_CHECKING([for kernel type ($host_os)])
395 case $host_os in
396         *linux*)
397         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
398         ac_system="Linux"
399         ;;
400         *solaris*)
401         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
402         ac_system="Solaris"
403         ;;
404         *)
405         ac_system="unknown"
406 esac
407 AC_MSG_RESULT([$ac_system])
409 with_libresolv="yes"
410 AC_CHECK_LIB(resolv, res_search,
412         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
413 ],
414 [with_libresolv="no"])
415 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
418 m4_divert_once([HELP_WITH], [
419 collectd additional packages:])
421 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
422 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
423 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
424         then
425                 LDFLAGS="$LDFLAGS -L$withval/lib"
426                 CPPFLAGS="$CPPFLAGS -I$withval/include"
427                 with_rrdtool="yes"
428         fi
429 ], [with_rrdtool="yes"])
430 if test "x$with_rrdtool" = "xyes"
431 then
432         AC_CHECK_LIB(rrd, rrd_update,
433         [
434                 AC_DEFINE(HAVE_LIBRRD, 1, [Define to 1 if you have the rrd library (-lrrd).])
435         ],
436         [with_rrdtool="no (librrd not found)"], [-lm])
437 fi
438 if test "x$with_rrdtool" = "xyes"
439 then
440         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
441 fi
442 if test "x$with_rrdtool" = "xyes"
443 then
444         collect_rrdtool=1
445 else
446         collect_rrdtool=0
447 fi
448 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
449         [Wether or not to use rrdtool library])
450 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
452 #AC_ARG_WITH(pth, [AS_HELP_STRING([--with-pth=@<:@=PREFIX@:>@], [Path to pth (experimental).]),
453 #[      if test "x$withval" != "xno" && test "x$withval" != "xyes"
454 #       then
455 #               LDFLAGS="$LDFLAGS -L$withval/lib"
456 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
457 #               with_pth="yes"
458 #       fi
459 #], [with_pth="no"])
460 #if test "x$with_pth" = "xyes"
461 #then
462 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no (libpth not found)"], [])
463 #fi
464 #if test "x$with_pth" = "xyes"
465 #then
466 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no (pth.h not found)"])
467 #fi
468 #if test "x$with_pth" = "xyes"
469 #then
470 #       collect_pth=1
471 #else
472 #       collect_pth=0
473 #fi
474 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
475 #       [Wether or not to use pth (portable threads) library])
476 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
478 if test "$ac_system" = "Solaris"
479 then
480         with_kstat="yes"
481         with_devinfo="yes"
482 else
483         with_kstat="no (Solaris only)"
484         with_devinfo="no (Solaris only)"
485 fi
487 if test "x$with_kstat" = "xyes"
488 then
489         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
490 fi
491 if test "x$with_kstat" = "xyes"
492 then
493         AC_CHECK_LIB(devinfo, di_init,, [with_devinfo="no (not found)"])
494         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
495 fi
496 if test "x$with_kstat" = "xyes"
497 then
498         collect_kstat=1
499 else
500         collect_kstat=0
501 fi
502 AC_DEFINE_UNQUOTED(COLLECT_KSTAT, [$collect_kstat],
503         [Wether or not to use kstat library (Solaris)])
504 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
505 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
507 ### BEGIN of check for libcurl ###
508 with_curl_config="curl-config"
509 with_curl_prefix=0
510 with_curl_libs=""
511 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
513         if test "x$withval" != "xno" -a "x$withval" != "xyes"
514         then
515                 if test -x "$withval/bin/curl-config"
516                 then
517                         with_curl_config="$withval/bin/curl-config"
518                         with_curl_prefix=1
519                 fi
520         fi
521         if test "x$withval" = "xno"
522         then
523                 with_libcurl="no"
524         else
525                 with_libcurl="yes"
526         fi
527 ],
529         with_libcurl="yes"
530 ])
531 if test "x$with_libcurl" = "xyes"
532 then
533         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
534         curl_config_status=$?
536         if test $curl_config_status -ne 0
537         then
538                 with_libcurl="no"
539         else
540                 AC_CHECK_LIB(curl, curl_easy_init,
541                 [
542                         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
543                         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
544                 ],
545                 [
546                         with_libcurl="no"
547                 ],
548                 [$with_curl_libs])
549         fi
550 fi
551 if test "x$with_libcurl" = "xyes" -a $with_curl_prefix -ne 0
552 then
553         with_curl_prefix=`$with_curl_config --libs 2>/dev/null`
554         curl_config_status=$?
556         if test $curl_config_status -ne 0
557         then
558                 with_libcurl="no"
559         else
560                 if test -d "$with_curl_prefix/include"
561                 then
562                         CPPFLAGS="$CPPFLAGS -I$with_curl_prefix/include"
563                 fi
564         fi
565 fi
567 with_libcurl_numeric=0
568 if test "x$with_libcurl" = "xyes"
569 then
570         with_libcurl_numeric=1
571 fi
572 AC_DEFINE_UNQUOTED(HAVE_LIBCURL, [$with_libcurl_numeric], [Define to 1 if you have the 'curl' library (-lcurl).])
573 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
574 ### END of check for libcurl ###
576 with_libiokit="no"
577 collectd_libiokit=0
578 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
580         with_libiokit="yes"
581         collectd_libiokit=1
582 ], 
584         with_libiokit="no"
585         collectd_libiokit=0
586 ])
587 AC_DEFINE_UNQUOTED(COLLECT_LIBIOKIT, [$collect_libiokit], [Wether or not to use the IOKit library])
588 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
590 with_libstatgrab="yes"
591 with_libdevstat="no"
592 with_libkvm="no"
593 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
595         if test "x$withval" != "xno" -a "x$withval" != "xyes"
596         then
597                 LDFLAGS="$LDFLAGS -L$withval/lib"
598                 CPPFLAGS="$CPPFLAGS -I$withval/include"
599                 with_libstatgrab="yes"
600         fi
601 ],
603         if test "x$ac_system" == "xunknown"
604         then
605                 with_libstatgrab="yes"
606         else
607                 with_libstatgrab="no"
608         fi
609 ])
610 if test "x$with_libstatgrab" = "xyes"
611 then
612         AC_CHECK_LIB(statgrab, sg_init, [with_libstatgrab="yes"], [with_libstatgrab="no (libstatgrab not found)"])
613 fi
614 if test "x$with_libstatgrab" = "xyes"
615 then
616         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
617 fi
618 if test "x$with_libstatgrab" = "xyes"
619 then
620         AC_CHECK_LIB(devstat, getdevs, [with_libdevstat="yes"], [with_libdevstat="no"])
621         AC_CHECK_LIB(kvm, kvm_getargv, [with_libkvm="yes"],     [with_libkvm="no"])
622 fi
623 if test "x$with_libstatgrab" = "xyes"
624 then
625         collect_libstatgrab=1
626 else
627         collect_libstatgrab=0
628 fi
629 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
630         [Wether or not to use statgrab library])
631 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
632 AM_CONDITIONAL(BUILD_WITH_LIBDEVSTAT,  test "x$with_libdevstat"  = "xyes")
633 AM_CONDITIONAL(BUILD_WITH_LIBKVM,      test "x$with_libkvm"      = "xyes")
635 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
637         if test "x$withval" != "xno" && test "x$withval" != "xyes"
638         then
639                 LDFLAGS="$LDFLAGS -L$withval/lib"
640                 CPPFLAGS="$CPPFLAGS -I$withval/include"
641                 with_lm_sensors="yes"
642         fi
643 ],
645         if test "x$ac_system" = "xLinux"
646         then
647                 with_lm_sensors="yes"
648         else
649                 with_lm_sensors="no"
650         fi
651 ])
652 if test "x$with_lm_sensors" = "xyes"
653 then
654         AC_CHECK_LIB(sensors, sensors_init,
655         [
656                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
657         ],
658         [with_lm_sensors="no (libsensors not found)"])
659 fi
660 if test "x$with_lm_sensors" = "xyes"
661 then
662         AC_CHECK_HEADERS(sensors/sensors.h,
663         [
664                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
665         ],
666         [with_lm_sensors="no (sensors/sensors.h not found)"])
667 fi
668 if test "x$with_lm_sensors" = "xyes"
669 then
670         collect_lm_sensors=1
671 else
672         collect_lm_sensors=0
673 fi
674 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
675         [Wether or not to use sensors library])
676 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
678 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
680         if test "x$withval" != "xno" && test "x$withval" != "xyes"
681         then
682                 LDFLAGS="$LDFLAGS -L$withval/lib"
683                 CPPFLAGS="$CPPFLAGS -I$withval/include"
684                 with_libmysql="yes"
685         fi
686 ],
688         with_libmysql="yes"
689 ])
690 if test "x$with_libmysql" = "xyes"
691 then
692         AC_CHECK_LIB(mysqlclient, mysql_init,
693         [
694                 AC_DEFINE(HAVE_LIBMYSQLCLIENT, 1, [Define to 1 if you have the mysqlclient library (-lmysqlclient).])
695         ], [with_libmysql="no (libmysql not found)"])
696 fi
697 if test "x$with_libmysql" = "xyes"
698 then
699         AC_CHECK_HEADERS(mysql/mysql.h,
700         [
701                 AC_DEFINE(HAVE_MYSQL_MYSQL_H, 1, [Define to 1 if you have the <mysql/mysql.h> header file.])
702         ], [with_libmysql="no (mysql/mysql.h not found)"])
703 fi
704 if test "x$with_libmysql" = "xyes"
705 then
706         collect_libmysql=1
707 else
708         collect_libmysql=0
709 fi
710 AC_DEFINE_UNQUOTED(COLLECT_LIBMYSQL, [$collect_libmysql],
711         [Wether or not to use mysql library])
712 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
714 # Define `step' and `hearbeat' values..
715 declare -i collectd_step=10
716 declare -i collectd_heartbeat=25
717 AC_ARG_WITH(step, [AS_HELP_STRING([--with-step=SECONDS], [Interval in which plugins are queried.])],
719         if test "x$withval" != "xno" -a "x$withval" != "xyes"
720         then
721                 declare -i tmp_collectd_step="$withval"
722                 if test $tmp_collectd_step -gt 0
723                 then
724                         collectd_step=$tmp_collectd_step
725                         let "collectd_heartbeat=$collectd_step*2"
726                 fi
727         fi
728 ], [])
729 AC_ARG_WITH(heartbeat, [AS_HELP_STRING([--with-heartbeat=SECONDS], [Heartbeat of the DS in generated RRD files.])],
731         if test "x$withval" != "xno" -a "x$withval" != "xyes"
732         then
733                 declare -i tmp_collectd_heartbeat="$withval"
734                 if test $tmp_collectd_heartbeat -gt 0
735                 then
736                         collectd_heartbeat=$tmp_collectd_heartbeat
737                 fi
738         fi
739 ], [])
741 if test $collectd_step -ne 10
742 then
743         AC_DEFINE_UNQUOTED(COLLECTD_STEP, "$collectd_step", [Interval in which plugins are queried.])
744 fi
745 if test $collectd_heartbeat -ne 25
746 then
747         AC_DEFINE_UNQUOTED(COLLECTD_HEARTBEAT, "$collectd_heartbeat", [Interval in which plugins are queried.])
748 fi
751 # Check for enabled/disabled features
754 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
755 # ------------------------------------------------------------
756 dnl
757 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
758 dnl
759 AC_DEFUN(
760         [AC_COLLECTD],
761         [
762         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
763         m4_if(
764                 [$2],
765                 [enable],
766                 [dnl
767                 m4_define([EnDis],[disabled])dnl
768                 m4_define([YesNo],[no])dnl
769                 ],dnl
770                 [m4_if(
771                         [$2],
772                         [disable],
773                         [dnl
774                         m4_define([EnDis],[enabled])dnl
775                         m4_define([YesNo],[yes])dnl
776                         ],
777                         [dnl
778                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
779                         ]dnl
780                 )]dnl
781         )dnl
782         m4_if([$3], [feature], [],
783                 [m4_if(
784                         [$3], [module], [],
785                         [dnl
786                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
787                         ]dnl
788                 )]dnl
789         )dnl
790         AC_ARG_ENABLE(
791                 [$1],
792                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
793                 [],
794                 enable_$1='[YesNo]'dnl
795         )# AC_ARG_ENABLE
796 if test "x$enable_$1" = "xno"
797 then
798         collectd_$1=0
799 else
800         if test "x$enable_$1" = "xyes"
801         then
802                 collectd_$1=1
803         else
804                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
805                 collectd_$1=1
806                 enable_$1='yes'
807         fi
808 fi
809         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
810         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
811         ]dnl
812 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
814 m4_divert_once([HELP_ENABLE], [
815 collectd features:])
816 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
817 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
819 m4_divert_once([HELP_ENABLE], [
820 collectd modules:])
821 AC_COLLECTD([apache],    [disable], [module], [Apache httpd statistics])
822 AC_COLLECTD([apcups],    [disable], [module], [Statistics of UPSes by APC])
823 AC_COLLECTD([apple_sensors], [disable], [module], [Apple's hardware sensors])
824 AC_COLLECTD([battery],   [disable], [module], [battery statistics])
825 AC_COLLECTD([cpu],       [disable], [module], [cpu usage statistics])
826 AC_COLLECTD([cpufreq],   [disable], [module], [system cpu frequency statistics])
827 AC_COLLECTD([disk],      [disable], [module], [disk/partition statistics])
828 AC_COLLECTD([df],        [disable], [module], [df statistics])
829 AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
830 AC_COLLECTD([hddtemp],   [disable], [module], [hdd temperature statistics])
831 AC_COLLECTD([load],      [disable], [module], [system load statistics])
832 AC_COLLECTD([memory],    [disable], [module], [memory statistics])
833 AC_COLLECTD([mysql],     [disable], [module], [mysql statistics])
834 AC_COLLECTD([nfs],       [disable], [module], [nfs statistics])
835 AC_COLLECTD([ping],      [disable], [module], [ping statistics])
836 AC_COLLECTD([processes], [disable], [module], [processes statistics])
837 AC_COLLECTD([sensors],   [disable], [module], [lm_sensors statistics])
838 AC_COLLECTD([serial],    [disable], [module], [serial statistics])
839 AC_COLLECTD([swap],      [disable], [module], [swap statistics])
840 AC_COLLECTD([tape],      [disable], [module], [tape statistics])
841 AC_COLLECTD([traffic],   [disable], [module], [system traffic statistics])
842 AC_COLLECTD([users],     [disable], [module], [user count statistics])
843 AC_COLLECTD([vserver],   [disable], [module], [vserver statistics])
844 AC_COLLECTD([wireless],  [disable], [module], [wireless link statistics])
846 #m4_divert_once([HELP_ENABLE], [
847 #collectd modules:])
848 #AC_ARG_ENABLE(cpu, AC_HELP_STRING([--disable-cpu], [Disable CPU usage statistics]),, [enable_cpu="yes"])
849 #if test "x$enable_cpu" != "xno"
850 #then
851 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$have_sysctlbyname" = "xyes"
852 #       then
853 #               enable_cpu="yes"
854 #       else
855 #               enable_cpu="no"
856 #       fi
857 #fi
858 #if test "x$enable_cpu" = "xno"
859 #then
860 #       AC_DEFINE(COLLECT_CPU, 0, [Wether or not to collect CPU usage statistics])
861 #fi
862 #AM_CONDITIONAL(BUILD_MODULE_CPU, test "x$enable_cpu" = "xyes")
864 #AC_ARG_ENABLE(cpufreq, AC_HELP_STRING([--disable-cpufreq], [Disable system cpu frequency statistics]),, [enable_cpufreq="yes"])
865 #if test "x$enable_cpufreq" != "xno"
866 #then
867 #       if test "x$ac_system" = "xLinux"
868 #       then
869 #               enable_cpufreq="yes"
870 #       else
871 #               enable_cpufreq="no"
872 #       fi
873 #fi
874 #if test "x$enable_cpufreq" = "xno"
875 #then
876 #       AC_DEFINE(COLLECT_CPUFREQ, 0, [Wether or not to collect cpu frequency statistics])
877 #fi
878 #AM_CONDITIONAL(BUILD_MODULE_CPUFREQ, test "x$enable_cpufreq" = "xyes")
880 #AC_ARG_ENABLE(disk, AC_HELP_STRING([--disable-disk], [Disable disk/partition statistics]),, [enable_disk="yes"])
881 #if test "x$enable_disk" != "xno"
882 #then
883 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes"
884 #       then
885 #               enable_disk="yes"
886 #       else
887 #               enable_disk="no"
888 #       fi
889 #fi
890 #if test "x$enable_disk" = "xno"
891 #then
892 #       AC_DEFINE(COLLECT_DISK, 0, [Wether or not to collect diskstats])
893 #fi
894 #AM_CONDITIONAL(BUILD_MODULE_DISK, test "x$enable_disk" = "xyes")
896 #AC_ARG_ENABLE(hddtemp, AC_HELP_STRING([--disable-hddtemp], [Disable hdd temperature statistics]),, [enable_hddtemp="yes"])
897 #if test "x$enable_hddtemp" = "xno"
898 #then
899 #       AC_DEFINE(COLLECT_HDDTEMP, 0, [Wether or not to collect hdd temperature statistics])
900 #fi
901 #AM_CONDITIONAL(BUILD_MODULE_HDDTEMP, test "x$enable_hddtemp" = "xyes")
903 #AC_ARG_ENABLE(load, AC_HELP_STRING([--disable-load], [Disable system load statistics]),, [enable_load="yes"])
904 #if test "x$enable_load" != "xno"
905 #then
906 #       if test "x$have_getloadavg" = "xyes" -o "x$ac_system" = "xLinux" -o "x$with_libstatgrab" = "xyes"
907 #       then
908 #               enable_load="yes"
909 #       else
910 #               enable_load="no"
911 #       fi
912 #fi
913 #if test "x$enable_load" = "xno"
914 #then
915 #       AC_DEFINE(COLLECT_LOAD, 0, [Wether or not to collect system load statistics])
916 #fi
917 #AM_CONDITIONAL(BUILD_MODULE_LOAD, test "x$enable_load" = "xyes")
919 #AC_ARG_ENABLE(memory, AC_HELP_STRING([--disable-memory], [Disable memory statistics]),, [enable_memory="yes"])
920 #if test "x$enable_memory" != "xno"
921 #then
922 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
923 #       then
924 #               enable_memory="yes"
925 #       else
926 #               enable_memory="no"
927 #       fi
928 #fi
929 #if test "x$enable_memory" = "xno"
930 #then
931 #       AC_DEFINE(COLLECT_MEMORY, 0, [Wether or not to collect memory statistics])
932 #fi
933 #AM_CONDITIONAL(BUILD_MODULE_MEMORY, test "x$enable_memory" = "xyes")
935 #AC_ARG_ENABLE(nfs, AC_HELP_STRING([--disable-nfs], [Disable nfs statistics]),, [enable_nfs="yes"])
936 #if test "x$enable_nfs" != "xno"
937 #then
938 #       if test "x$ac_system" = "xLinux"
939 #       then
940 #               enable_nfs="yes"
941 #       else
942 #               enable_nfs="no"
943 #       fi
944 #fi
945 #if test "x$enable_nfs" = "xno"
946 #then
947 #       AC_DEFINE(COLLECT_NFS, 0, [Wether or not to collect nfs statistics])
948 #fi
949 #AM_CONDITIONAL(BUILD_MODULE_NFS, test "x$enable_nfs" = "xyes")
951 #AC_ARG_ENABLE(ping, AC_HELP_STRING([--disable-ping], [Disable ping statistics]),, [enable_ping="yes"])
952 #if test "x$enable_ping" != "xno"
953 #then
954 #       enable_ping="yes"
955 #fi
956 #if test "x$enable_ping" = "xno"
957 #then
958 #       AC_DEFINE(COLLECT_PING, 0, [Wether or not to collect ping statistics])
959 #fi
960 #AM_CONDITIONAL(BUILD_MODULE_PING, test "x$enable_ping" = "xyes")
962 #AC_ARG_ENABLE(processes, AC_HELP_STRING([--disable-processes], [Disable processes statistics]),, [enable_processes="yes"])
963 #if test "x$enable_processes" != "xno"
964 #then
965 #       if test "x$ac_system" = "xLinux" 
966 #       then
967 #               enable_processes="yes"
968 #       else
969 #               enable_processes="no"
970 #       fi
971 #fi
972 #if test "x$enable_processes" = "xno"
973 #then
974 #       AC_DEFINE(COLLECT_PROCESSES, 0, [Wether or not to collect processes statistics])
975 #fi
976 #AM_CONDITIONAL(BUILD_MODULE_PROCESSES, test "x$enable_processes" = "xyes")
978 ##AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
980 #AC_ARG_ENABLE(sensors, AC_HELP_STRING([--disable-sensors], [Disable lm_sensors statistics]),, [enable_sensors=$with_lm_sensors])
981 #if test "x$enable_sensors" != "xno"
982 #then
983 #       if test "x$with_lm_sensors" = "xyes"
984 #       then
985 #               enable_sensors="yes"
986 #       else
987 #               enable_sensors="no"
988 #       fi
989 #fi
990 #if test "x$enable_sensors" = "xno"
991 #then
992 #       AC_DEFINE(COLLECT_SENSORS, 0, [Wether or not to collect lm_sensors statistics])
993 #fi
994 #AM_CONDITIONAL(BUILD_MODULE_SENSORS, test "x$enable_sensors" = "xyes")
996 #AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [Disable serial statistics]),, [enable_serial="yes"])
997 #if test "x$enable_serial" != "xno"
998 #then
999 #       if test "x$ac_system" = "xLinux"
1000 #       then
1001 #               enable_serial="yes"
1002 #       else
1003 #               enable_serial="no"
1004 #       fi
1005 #fi
1006 #if test "x$enable_serial" = "xno"
1007 #then
1008 #       AC_DEFINE(COLLECT_SERIAL, 0, [Wether or not to collect serial statistics])
1009 #fi
1010 #AM_CONDITIONAL(BUILD_MODULE_SERIAL, test "x$enable_serial" = "xyes")
1012 #AC_ARG_ENABLE(swap, AC_HELP_STRING([--disable-swap], [Disable swap statistics]),, [enable_swap="yes"])
1013 #if test "x$enable_swap" != "xno"
1014 #then
1015 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
1016 #       then
1017 #               enable_swap="yes"
1018 #       else
1019 #               enable_swap="no"
1020 #       fi
1021 #fi
1022 #if test "x$enable_swap" = "xno"
1023 #then
1024 #       AC_DEFINE(COLLECT_SWAP, 0, [Wether or not to collect swap statistics])
1025 #fi
1026 #AM_CONDITIONAL(BUILD_MODULE_SWAP, test "x$enable_swap" = "xyes")
1028 #AC_ARG_ENABLE(tape, AC_HELP_STRING([--disable-tape], [Disable tape statistics]),, [enable_tape="yes"])
1029 #if test "x$enable_tape" != "xno"
1030 #then
1031 #       if test "x$with_kstat" = "xyes"
1032 #       then
1033 #               enable_tape="yes"
1034 #       else
1035 #               enable_tape="no"
1036 #       fi
1037 #fi
1038 #if test "x$enable_tape" = "xno"
1039 #then
1040 #       AC_DEFINE(COLLECT_TAPE, 0, [Wether or not to collect tape statistics])
1041 #fi
1042 #AM_CONDITIONAL(BUILD_MODULE_TAPE, test "x$enable_tape" = "xyes")
1044 #AC_ARG_ENABLE(traffic, AC_HELP_STRING([--disable-traffic], [Disable system traffic statistics]),, [enable_traffic="yes"])
1045 #if test "x$enable_traffic" != "xno"
1046 #then
1047 #       if test "x$ac_system" = "xLinux" -o "x$with_kstat" = "xyes" -o "x$with_libstatgrab" = "xyes"
1048 #       then
1049 #               enable_traffic="yes"
1050 #       else
1051 #               enable_traffic="no"
1052 #       fi
1053 #fi
1054 #if test "x$enable_traffic" = "xno"
1055 #then
1056 #       AC_DEFINE(COLLECT_TRAFFIC, 0, [Wether or not to collect network traffic statistics])
1057 #fi
1058 #AM_CONDITIONAL(BUILD_MODULE_TRAFFIC, test "x$enable_traffic" = "xyes")
1060 #AC_COLLECTD([users],     [disable], [module], [user count statistics])
1062 AC_OUTPUT(Makefile src/libconfig/Makefile src/liboping/Makefile src/Makefile)
1064 cat <<EOF;
1066 Configuration:
1067   Libraries:
1068     libcurl . . . . . . $with_libcurl
1069     libiokit  . . . . . $with_libiokit
1070     librrd  . . . . . . $with_rrdtool
1071     lm_sensors  . . . . $with_lm_sensors
1072     libstatgrab . . . . $with_libstatgrab
1073     libkstat  . . . . . $with_kstat
1074     libmysql  . . . . . $with_libmysql
1076   Features:
1077     debug . . . . . . . $enable_debug
1078     daemon mode . . . . $enable_daemon
1079     step  . . . . . . . $collectd_step seconds
1080     heartbeat . . . . . $collectd_heartbeat seconds
1082   Modules:
1083     apache  . . . . . . $enable_apache
1084     apcups  . . . . . . $enable_apcups
1085     apple_sensors . . . $enable_apple_sensors
1086     battery . . . . . . $enable_battery
1087     cpu . . . . . . . . $enable_cpu
1088     cpufreq . . . . . . $enable_cpufreq
1089     df  . . . . . . . . $enable_df
1090     disk  . . . . . . . $enable_disk
1091     hddtemp . . . . . . $enable_hddtemp
1092     load  . . . . . . . $enable_load
1093     memory  . . . . . . $enable_memory
1094     mysql . . . . . . . $enable_mysql
1095     nfs . . . . . . . . $enable_nfs
1096     ping  . . . . . . . $enable_ping
1097     processes . . . . . $enable_processes
1098     sensors . . . . . . $enable_sensors
1099     serial  . . . . . . $enable_serial
1100     swap  . . . . . . . $enable_swap
1101     tape  . . . . . . . $enable_tape
1102     traffic . . . . . . $enable_traffic
1103     users . . . . . . . $enable_users
1104     vserver . . . . . . $enable_vserver
1105     wireless  . . . . . $enable_wireless
1107 EOF