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