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