ChangeLog: Added a short note about the fix in the processes plugin.
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, 4.0.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_LEX
30 AC_PROG_YACC
31 AC_CONFIG_SUBDIRS(libltdl)
32
33 #
34 # Checks for header files.
35 #
36 AC_HEADER_STDC
37 AC_HEADER_SYS_WAIT
38 AC_HEADER_DIRENT
39 AC_CHECK_HEADERS(stdint.h)
40 AC_CHECK_HEADERS(stdio.h)
41 AC_CHECK_HEADERS(errno.h)
42 AC_CHECK_HEADERS(math.h)
43 AC_CHECK_HEADERS(syslog.h)
44 AC_CHECK_HEADERS(fcntl.h)
45 AC_CHECK_HEADERS(signal.h)
46 AC_CHECK_HEADERS(assert.h)
47 AC_CHECK_HEADERS(sys/types.h)
48 AC_CHECK_HEADERS(sys/socket.h)
49 AC_CHECK_HEADERS(sys/select.h)
50 AC_CHECK_HEADERS(poll.h)
51 AC_CHECK_HEADERS(netdb.h)
52 AC_CHECK_HEADERS(arpa/inet.h)
53 AC_CHECK_HEADERS(sys/resource.h)
54 AC_CHECK_HEADERS(sys/param.h)
55 AC_CHECK_HEADERS(kstat.h)
56
57 # For ping library
58 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
59 [#if HAVE_STDINT_H
60 # include <stdint.h>
61 #endif
62 #if HAVE_SYS_TYPES_H
63 # include <sys/types.h>
64 #endif
65 ])
66 AC_CHECK_HEADERS(netinet/in.h, [], [],
67 [#if HAVE_STDINT_H
68 # include <stdint.h>
69 #endif
70 #if HAVE_SYS_TYPES_H
71 # include <sys/types.h>
72 #endif
73 #if HAVE_NETINET_IN_SYSTM_H
74 # include <netinet/in_systm.h>
75 #endif
76 ])
77 AC_CHECK_HEADERS(netinet/ip.h, [], [],
78 [#if HAVE_STDINT_H
79 # include <stdint.h>
80 #endif
81 #if HAVE_SYS_TYPES_H
82 # include <sys/types.h>
83 #endif
84 #if HAVE_NETINET_IN_SYSTM_H
85 # include <netinet/in_systm.h>
86 #endif
87 #if HAVE_NETINET_IN_H
88 # include <netinet/in.h>
89 #endif
90 ])
91 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
92 [#if HAVE_STDINT_H
93 # include <stdint.h>
94 #endif
95 #if HAVE_SYS_TYPES_H
96 # include <sys/types.h>
97 #endif
98 #if HAVE_NETINET_IN_SYSTM_H
99 # include <netinet/in_systm.h>
100 #endif
101 #if HAVE_NETINET_IN_H
102 # include <netinet/in.h>
103 #endif
104 #if HAVE_NETINET_IP_H
105 # include <netinet/ip.h>
106 #endif
107 ])
108 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
109 [#if HAVE_STDINT_H
110 # include <stdint.h>
111 #endif
112 #if HAVE_SYS_TYPES_H
113 # include <sys/types.h>
114 #endif
115 #if HAVE_NETINET_IN_SYSTM_H
116 # include <netinet/in_systm.h>
117 #endif
118 #if HAVE_NETINET_IN_H
119 # include <netinet/in.h>
120 #endif
121 #if HAVE_NETINET_IP_H
122 # include <netinet/ip.h>
123 #endif
124 ])
125 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
126 [#if HAVE_STDINT_H
127 # include <stdint.h>
128 #endif
129 #if HAVE_SYS_TYPES_H
130 # include <sys/types.h>
131 #endif
132 #if HAVE_NETINET_IN_SYSTM_H
133 # include <netinet/in_systm.h>
134 #endif
135 #if HAVE_NETINET_IN_H
136 # include <netinet/in.h>
137 #endif
138 ])
139 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
140 [#if HAVE_STDINT_H
141 # include <stdint.h>
142 #endif
143 #if HAVE_SYS_TYPES_H
144 # include <sys/types.h>
145 #endif
146 #if HAVE_NETINET_IN_SYSTM_H
147 # include <netinet/in_systm.h>
148 #endif
149 #if HAVE_NETINET_IN_H
150 # include <netinet/in.h>
151 #endif
152 #if HAVE_NETINET_IP6_H
153 # include <netinet/ip6.h>
154 #endif
155 ])
156 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
157 [#if HAVE_STDINT_H
158 # include <stdint.h>
159 #endif
160 #if HAVE_SYS_TYPES_H
161 # include <sys/types.h>
162 #endif
163 #if HAVE_NETINET_IN_SYSTM_H
164 # include <netinet/in_systm.h>
165 #endif
166 #if HAVE_NETINET_IN_H
167 # include <netinet/in.h>
168 #endif
169 #if HAVE_NETINET_IP_H
170 # include <netinet/ip.h>
171 #endif
172 ])
173 AC_CHECK_HEADERS(netinet/udp.h, [], [],
174 [#if HAVE_STDINT_H
175 # include <stdint.h>
176 #endif
177 #if HAVE_SYS_TYPES_H
178 # include <sys/types.h>
179 #endif
180 #if HAVE_NETINET_IN_SYSTM_H
181 # include <netinet/in_systm.h>
182 #endif
183 #if HAVE_NETINET_IN_H
184 # include <netinet/in.h>
185 #endif
186 #if HAVE_NETINET_IP_H
187 # include <netinet/ip.h>
188 #endif
189 ])
190
191 # For cpu modules
192 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
193 [
194 #if HAVE_SYS_TYPES_H
195 #  include <sys/types.h>
196 #endif
197 #if HAVE_SYS_PARAM_H
198 # include <sys/param.h>
199 #endif
200 ])
201 AC_CHECK_HEADERS(sys/dkstat.h)
202 AC_CHECK_HEADERS(mach/mach_init.h)
203 AC_CHECK_HEADERS(mach/host_priv.h)
204 AC_CHECK_HEADERS(mach/mach_error.h)
205 AC_CHECK_HEADERS(mach/mach_host.h)
206 AC_CHECK_HEADERS(mach/mach_port.h)
207 AC_CHECK_HEADERS(mach/mach_types.h)
208 AC_CHECK_HEADERS(mach/message.h)
209 AC_CHECK_HEADERS(mach/processor_set.h)
210 AC_CHECK_HEADERS(mach/processor.h)
211 AC_CHECK_HEADERS(mach/processor_info.h)
212 AC_CHECK_HEADERS(mach/task.h)
213 AC_CHECK_HEADERS(mach/thread_act.h)
214 AC_CHECK_HEADERS(mach/vm_region.h)
215 AC_CHECK_HEADERS(mach/vm_map.h)
216 AC_CHECK_HEADERS(mach/vm_prot.h)
217 AC_CHECK_HEADERS(mach/vm_statistics.h)
218 AC_CHECK_HEADERS(mach/kern_return.h)
219
220 # For hddtemp module
221 AC_CHECK_HEADERS(linux/major.h)
222 AC_CHECK_HEADERS(libgen.h)
223
224 # For the apple_sensors module
225 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h)
226 AC_CHECK_HEADERS(IOKit/IOKitLib.h)
227 AC_CHECK_HEADERS(IOKit/IOTypes.h)
228
229 # For the battery plugin
230 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
231 [
232 #if HAVE_IOKIT_IOKITLIB_H
233 #  include <IOKit/IOKitLib.h>
234 #endif
235 #if HAVE_IOKIT_IOTYPES_H
236 #  include <IOKit/IOTypes.h>
237 #endif
238 ])
239 AC_CHECK_HEADERS(IOKit/ps/IOPSKeys.h)
240
241 # For the `disk' plugin
242 AC_CHECK_HEADERS(IOKit/IOBSD.h)
243 AC_CHECK_HEADERS(IOKit/storage/IOBlockStorageDriver.h)
244
245 # For load module
246 AC_CHECK_HEADERS(sys/loadavg.h)
247
248 # For the processes plugin
249 AC_CHECK_HEADERS(linux/config.h)
250
251 # For the swap module
252 AC_CHECK_HEADERS(sys/swap.h, [], [],
253 [
254 #if HAVE_SYS_TYPES_H
255 #  include <sys/types.h>
256 #endif
257 #if HAVE_SYS_PARAM_H
258 # include <sys/param.h>
259 #endif
260 ])
261
262 # For users module
263 AC_CHECK_HEADERS(utmp.h)
264 AC_CHECK_HEADERS(utmpx.h)
265
266 # For interface plugin
267 AC_CHECK_HEADERS(ifaddrs.h)
268 AC_CHECK_HEADERS(net/if.h, [], [],
269 [
270 #if HAVE_SYS_TYPES_H
271 #  include <sys/types.h>
272 #endif
273 #if HAVE_SYS_SOCKET_H
274 #  include <sys/socket.h>
275 #endif
276 ])
277 AC_CHECK_HEADERS(linux/if.h, [], [],
278 [
279 #if HAVE_SYS_TYPES_H
280 #  include <sys/types.h>
281 #endif
282 #if HAVE_SYS_SOCKET_H
283 #  include <sys/socket.h>
284 #endif
285 ])
286 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
287 [
288 #if HAVE_SYS_TYPES_H
289 #  include <sys/types.h>
290 #endif
291 #if HAVE_SYS_SOCKET_H
292 #  include <sys/socket.h>
293 #endif
294 #if HAVE_LINUX_IF_H
295 # include <linux/if.h>
296 #endif
297 ])
298
299 # For apache plugin
300 AC_CHECK_HEADERS(curl/curl.h)
301
302 # For quota module
303 AC_CHECK_HEADERS(pwd.h)
304 AC_CHECK_HEADERS(sys/ucred.h, [], [],
305 [
306 #if HAVE_SYS_TYPES_H
307 #  include <sys/types.h>
308 #endif
309 #if HAVE_SYS_PARAM_H
310 # include <sys/param.h>
311 #endif
312 ])
313 AC_CHECK_HEADERS(ctype.h)
314 AC_CHECK_HEADERS(limits.h)
315 AC_CHECK_HEADERS(sys/quota.h)
316 AC_CHECK_HEADERS(xfs/xqm.h)
317
318 # For mount interface
319 AC_CHECK_HEADERS(fs_info.h)
320 AC_CHECK_HEADERS(fshelp.h)
321 AC_CHECK_HEADERS(paths.h)
322 AC_CHECK_HEADERS(mntent.h)
323 AC_CHECK_HEADERS(mnttab.h)
324 AC_CHECK_HEADERS(sys/fstyp.h)
325 AC_CHECK_HEADERS(sys/fs_types.h)
326 AC_CHECK_HEADERS(sys/mntent.h)
327 AC_CHECK_HEADERS(sys/mnttab.h)
328 AC_CHECK_HEADERS(sys/mount.h, [], [],
329 [
330 #if HAVE_SYS_TYPES_H
331 #  include <sys/types.h>
332 #endif
333 #if HAVE_SYS_PARAM_H
334 # include <sys/param.h>
335 #endif
336 ])
337 AC_CHECK_HEADERS(sys/statfs.h)
338 AC_CHECK_HEADERS(sys/statvfs.h)
339 AC_CHECK_HEADERS(sys/vfs.h)
340 AC_CHECK_HEADERS(sys/vfstab.h)
341
342 # For the swap plugin, FreeBSD
343 AC_CHECK_HEADERS(kvm.h)
344
345 # For the email plugin
346 AC_CHECK_HEADERS(linux/un.h, [], [],
347 [
348 #if HAVE_SYS_SOCKET_H
349 #       include <sys/socket.h>
350 #endif
351 ])
352 AC_CHECK_HEADERS(sys/un.h)
353 AC_CHECK_HEADERS(grp.h)
354
355 # For debugging interface (variable number of arguments)
356 AC_CHECK_HEADERS(stdarg.h)
357
358 # Regular expressions for the ignorelist.
359 AC_CHECK_HEADERS(regex.h)
360
361 # For the dns plugin
362 AC_CHECK_HEADERS(arpa/nameser.h)
363 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
364 [
365 #if HAVE_ARPA_NAMESER_H
366 # include <arpa/nameser.h>
367 #endif
368 ])
369
370 AC_CHECK_HEADERS(net/if_arp.h, [], [],
371 [#if HAVE_SYS_SOCKET_H
372 # include <sys/socket.h>
373 #endif
374 ])
375 AC_CHECK_HEADERS(net/ppp_defs.h)
376 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
377 [#if HAVE_NET_PPP_DEFS_H
378 # include <net/ppp_defs.h>
379 #endif
380 ])
381 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
382 [#if HAVE_STDINT_H
383 # include <stdint.h>
384 #endif
385 #if HAVE_SYS_TYPES_H
386 # include <sys/types.h>
387 #endif
388 #if HAVE_SYS_SOCKET_H
389 # include <sys/socket.h>
390 #endif
391 #if HAVE_NET_IF_H
392 # include <net/if.h>
393 #endif
394 #if HAVE_NETINET_IN_H
395 # include <netinet/in.h>
396 #endif
397 ])
398
399 # For the multimeter plugin
400 AC_CHECK_HEADERS(termios.h)
401 AC_CHECK_HEADERS(sys/ioctl.h)
402
403 #
404 # Checking for libraries
405 #
406 AC_CHECK_LIB(m, ext)
407
408 #
409 # Checks for typedefs, structures, and compiler characteristics.
410 #
411 AC_C_CONST
412 AC_TYPE_PID_T
413 AC_TYPE_SIZE_T
414 AC_TYPE_UID_T
415 AC_HEADER_TIME
416
417 #
418 # Checks for library functions.
419 #
420 AC_PROG_GCC_TRADITIONAL
421 AC_CHECK_FUNCS(gettimeofday select strdup strtol)
422 AC_CHECK_FUNCS(getaddrinfo getnameinfo)
423 AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
424 AC_CHECK_FUNCS(strncasecmp strcasecmp)
425 AC_CHECK_FUNCS(openlog syslog closelog)
426
427 AC_CHECK_FUNCS(getpwnam_r)
428 AC_CHECK_FUNCS(getgrnam_r)
429
430 socket_needs_socket="no"
431 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
432 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
433
434 nanosleep_needs_rt="no"
435 AC_CHECK_FUNCS(nanosleep, [], AC_CHECK_LIB(rt, nanosleep, [nanosleep_needs_rt="yes"], AC_MSG_ERROR(cannot find nanosleep)))
436 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
437
438 # Regular expressions for the ignorelist.
439 AC_CHECK_FUNCS(regcomp regerror regexec regfree)
440
441 # For cpu module
442 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
443
444 # For df module
445 AC_CHECK_FUNCS(statfs statvfs)
446
447 # For load module
448 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
449
450 # For the `processes' plugin
451 AC_CHECK_FUNCS(thread_info)
452
453 # For users module
454 AC_CHECK_FUNCS(getutent getutxent)
455
456 # For interface module
457 AC_CHECK_FUNCS(getifaddrs)
458
459 # Check for NAN
460 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
461 [
462  if test "x$withval" = "xno"; then
463          nan_type="none"
464  else if test "x$withval" = "xyes"; then
465          nan_type="zero"
466  else
467          nan_type="$withval"
468  fi; fi
469 ],
470 [nan_type="none"])
471 if test "x$nan_type" = "xnone"; then
472   AC_CACHE_CHECK([whether NAN is defined by default],
473     [have_nan_default],
474     AC_COMPILE_IFELSE(
475       AC_LANG_PROGRAM(
476       [[
477 #include <stdlib.h>
478 #include <math.h>
479 static float foo = NAN;
480       ]],
481       [[
482        if (isnan (foo))
483         return 0;
484        else
485         return 1;
486       ]]),
487       [have_nan_default="yes"],
488       [have_nan_default="no"]
489     )
490   )
491   if test "x$have_nan_default" = "xyes"
492   then
493     nan_type="default"
494   fi
495 fi
496 if test "x$nan_type" = "xnone"; then
497   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
498     [have_nan_isoc],
499     AC_COMPILE_IFELSE(
500       AC_LANG_PROGRAM(
501       [[
502 #include <stdlib.h>
503 #define __USE_ISOC99 1
504 #include <math.h>
505 static float foo = NAN;
506       ]],
507       [[
508        if (isnan (foo))
509         return 0;
510        else
511         return 1;
512       ]]),
513       [have_nan_isoc="yes"],
514       [have_nan_isoc="no"]
515     )
516   )
517   if test "x$have_nan_isoc" = "xyes"
518   then
519     nan_type="isoc99"
520   fi
521 fi
522 if test "x$nan_type" = "xnone"; then
523   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
524     [have_nan_zero],
525     AC_RUN_IFELSE(
526       AC_LANG_PROGRAM(
527       [[
528 #include <stdlib.h>
529 #include <math.h>
530 #ifdef NAN
531 # undef NAN
532 #endif
533 #define NAN (0.0 / 0.0)
534 #ifndef isnan
535 # define isnan(f) ((f) != (f))
536 #endif
537 static float foo = NAN;
538       ]],
539       [[
540        if (isnan (foo))
541         return 0;
542        else
543         return 1;
544       ]]),
545       [have_nan_zero="yes"],
546       [have_nan_zero="no"]
547     )
548   )
549   if test "x$have_nan_zero" = "xyes"
550   then
551     nan_type="zero"
552   fi
553 fi
554
555 if test "x$nan_type" = "xdefault"; then
556   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
557     [Define if NAN is defined by default and can initialize static variables.])
558 else if test "x$nan_type" = "xisoc99"; then
559   AC_DEFINE(NAN_STATIC_ISOC, 1,
560     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
561 else if test "x$nan_type" = "xzero"; then
562   AC_DEFINE(NAN_ZERO_ZERO, 1,
563     [Define if NAN can be defined as (0.0 / 0.0)])
564 else
565   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
566 fi; fi; fi
567
568 # For mount interface
569 #AC_CHECK_FUNCS(getfsent getvfsent)
570
571 have_getfsstat="no"
572 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
573 have_getvfsstat="no"
574 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
575 have_listmntent="no"
576 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
577
578 have_getmntent="no"
579 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
580 if test "x$have_getmntent" = "xno"; then
581         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
582 fi
583 if test "x$have_getmntent" = "xno"; then
584         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
585 fi
586 if test "x$have_getmntent" = "xno"; then
587         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
588 fi
589
590 if test "x$have_getmntent" = "xc"; then
591         AC_CACHE_CHECK([whether getmntent takes one argument],
592                 [have_one_getmntent],
593                 AC_COMPILE_IFELSE(
594                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
595 #include <mntent.h>
596 #include "$srcdir/src/utils_mount.h"]],
597                                 [[
598                                  FILE *fh;
599                                  struct mntent *me;
600                                  fh = setmntent ("/etc/mtab", "r");
601                                  me = getmntent (fh);
602                                 ]]
603                         ),
604                         [have_one_getmntent="yes"],
605                         [have_one_getmntent="no"]
606                 )
607         )
608         AC_CACHE_CHECK([whether getmntent takes two arguments],
609                 [have_two_getmntent],
610                 AC_COMPILE_IFELSE(
611                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
612 #include <sys/mnttab.h>
613 #include "$srcdir/src/utils_mount.h"]],
614                                 [[
615                                  FILE *fh;
616                                  struct mnttab mt;
617                                  int status;
618                                  fh = fopen ("/etc/mnttab", "r");
619                                  status = getmntent (fh, &mt);
620                                 ]]
621                         ),
622                         [have_two_getmntent="yes"],
623                         [have_two_getmntent="no"]
624                 )
625         )
626 fi
627
628 # Check for different versions of `getmntent' here..
629
630 if test "x$have_getmntent" = "xc"; then
631         if test "x$have_one_getmntent" = "xyes"; then
632                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
633                           [Define if the function getmntent exists and takes one argument.])
634         fi
635         if test "x$have_two_getmntent" = "xyes"; then
636                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
637                           [Define if the function getmntent exists and takes two arguments.])
638         fi
639 fi
640 if test "x$have_getmntent" = "xsun"; then
641         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
642                   [Define if the function getmntent exists. It's the version from libsun.])
643 fi
644 if test "x$have_getmntent" = "xseq"; then
645         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
646                   [Define if the function getmntent exists. It's the version from libseq.])
647 fi
648 if test "x$have_getmntent" = "xgen"; then
649         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
650                   [Define if the function getmntent exists. It's the version from libgen.])
651 fi
652
653 # Check for structures
654 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
655         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
656         [],
657         [
658         #include <sys/types.h>
659         #include <sys/socket.h>
660         #include <net/if.h>
661         ])
662 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
663         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
664         [],
665         [
666         #include <sys/types.h>
667         #include <sys/socket.h>
668         #include <linux/if.h>
669         #include <linux/netdevice.h>
670         ])
671
672 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
673 [#if HAVE_STDINT_H
674 # include <stdint.h>
675 #endif
676 #if HAVE_SYS_TYPES_H
677 # include <sys/types.h>
678 #endif
679 #if HAVE_NETINET_IN_SYSTM_H
680 # include <netinet/in_systm.h>
681 #endif
682 #if HAVE_NETINET_IN_H
683 # include <netinet/in.h>
684 #endif
685 #if HAVE_NETINET_IP_H
686 # include <netinet/ip.h>
687 #endif
688 #if HAVE_NETINET_UDP_H
689 # include <netinet/udp.h>
690 #endif
691 ])
692 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
693 [#if HAVE_STDINT_H
694 # include <stdint.h>
695 #endif
696 #if HAVE_SYS_TYPES_H
697 # include <sys/types.h>
698 #endif
699 #if HAVE_NETINET_IN_SYSTM_H
700 # include <netinet/in_systm.h>
701 #endif
702 #if HAVE_NETINET_IN_H
703 # include <netinet/in.h>
704 #endif
705 #if HAVE_NETINET_IP_H
706 # include <netinet/ip.h>
707 #endif
708 #if HAVE_NETINET_UDP_H
709 # include <netinet/udp.h>
710 #endif
711 ])
712
713 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
714         [],
715         [],
716         [
717 #if HAVE_KSTAT_H
718 # include <kstat.h>
719 #endif
720         ])
721
722 AC_MSG_CHECKING([for kernel type ($host_os)])
723 case $host_os in
724         *linux*)
725         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
726         ac_system="Linux"
727         ;;
728         *solaris*)
729         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
730         ac_system="Solaris"
731         ;;
732         *)
733         ac_system="unknown"
734 esac
735 AC_MSG_RESULT([$ac_system])
736
737 with_libresolv="yes"
738 AC_CHECK_LIB(resolv, res_search,
739 [
740         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
741 ],
742 [with_libresolv="no"])
743 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
744
745
746 m4_divert_once([HELP_WITH], [
747 collectd additional packages:])
748
749 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
750 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
751 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
752         then
753                 LDFLAGS="$LDFLAGS -L$withval/lib"
754                 CPPFLAGS="$CPPFLAGS -I$withval/include"
755                 with_rrdtool="yes"
756         fi
757 ], [with_rrdtool="yes"])
758 if test "x$with_rrdtool" = "xyes"
759 then
760         AC_CHECK_LIB(rrd, rrd_update,
761         [
762                 AC_DEFINE(HAVE_LIBRRD, 1, [Define to 1 if you have the rrd library (-lrrd).])
763         ],
764         [with_rrdtool="no (librrd not found)"], [-lm])
765 fi
766 if test "x$with_rrdtool" = "xyes"
767 then
768         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
769 fi
770 if test "x$with_rrdtool" = "xyes"
771 then
772         collect_rrdtool=1
773 else
774         collect_rrdtool=0
775 fi
776 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
777         [Wether or not to use rrdtool library])
778 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
779
780 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
781 [       if test "x$withval" != "xno" -a "x$withval" != "xyes"
782         then
783                 LDFLAGS="$LDFLAGS -L$withval/lib"
784                 CPPFLAGS="$CPPFLAGS -I$withval/include"
785                 with_libpthread="yes"
786         else
787                 if test "x$withval" = "xno"
788                 then
789                         with_libpthread="no (disabled)"
790                 fi
791         fi
792 ], [with_libpthread="yes"])
793 if test "x$with_libpthread" = "xyes"
794 then
795         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
796 fi
797 if test "x$with_libpthread" = "xyes"
798 then
799         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
800 fi
801 if test "x$with_libpthread" = "xyes"
802 then
803         collect_pthread=1
804 else
805         collect_pthread=0
806 fi
807 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
808         [Wether or not to use pthread (POSIX threads) library])
809 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
810
811 if test "$ac_system" = "Solaris"
812 then
813         with_kstat="yes"
814         with_devinfo="yes"
815 else
816         with_kstat="no (Solaris only)"
817         with_devinfo="no (Solaris only)"
818 fi
819
820 if test "x$with_kstat" = "xyes"
821 then
822         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
823 fi
824 if test "x$with_kstat" = "xyes"
825 then
826         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
827         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
828 fi
829 if test "x$with_kstat" = "xyes"
830 then
831         AC_DEFINE(HAVE_LIBKSTAT, 1,
832                   [Define to 1 if you have the 'kstat' library (-lkstat)])
833 fi
834 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
835 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
836
837 ### BEGIN of check for libcurl ###
838 with_curl_config="curl-config"
839 with_curl_cflags=""
840 with_curl_libs=""
841 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
842 [
843         if test "x$withval" = "xno"
844         then
845                 with_libcurl="no"
846         else if test "x$withval" = "xyes"
847         then
848                 with_libcurl="yes"
849         else
850                 if test -x "$withval"
851                 then
852                         with_curl_config="$withval"
853                 else if test -x "$withval/bin/curl-config"
854                 then
855                         with_curl_config="$withval/bin/curl-config"
856                 fi; fi
857         fi; fi
858 ],
859 [
860         with_libcurl="yes"
861 ])
862 if test "x$with_libcurl" = "xyes"
863 then
864         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
865         curl_config_status=$?
866
867         if test $curl_config_status -ne 0
868         then
869                 with_libcurl="no"
870         else
871                 SAVE_CFLAGS=$CFLAGS
872                 CFLAGS="$CFLAGS $with_curl_cflags"
873
874                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
875
876                 CFLAGS="$SAVE_CFLAGS"
877         fi
878 fi
879 if test "x$with_libcurl" = "xyes"
880 then
881         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
882         curl_config_status=$?
883
884         if test $curl_config_status -ne 0
885         then
886                 with_libcurl="no"
887         else
888                 AC_CHECK_LIB(curl, curl_easy_init,
889                  [
890                   # We need to do this to have `HAVE_LIBCURL' defined but
891                   # `-lcurl' NOT added to the default LDFLAGS.
892                         AC_DEFINE(HAVE_LIBCURL, 1,
893                                   [Define to 1 if you have the curl library.])
894                  ],
895                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
896                  [$with_curl_libs])
897         fi
898 fi
899 if test "x$with_libcurl" = "xyes"
900 then
901         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
902         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
903         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
904         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
905 fi
906 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
907 ### END of check for libcurl ###
908
909 with_libiokit="no"
910 collectd_libiokit=0
911 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
912 [
913         with_libiokit="yes"
914         collectd_libiokit=1
915 ], 
916 [
917         with_libiokit="no"
918         collectd_libiokit=0
919 ])
920 AC_DEFINE_UNQUOTED(COLLECT_LIBIOKIT, [$collect_libiokit], [Wether or not to use the IOKit library])
921 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
922
923 with_libstatgrab="yes"
924 with_libdevstat="no"
925 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
926 [
927         if test "x$withval" != "xno" -a "x$withval" != "xyes"
928         then
929                 LDFLAGS="$LDFLAGS -L$withval/lib"
930                 CPPFLAGS="$CPPFLAGS -I$withval/include"
931                 with_libstatgrab="yes"
932         fi
933 ],
934 [
935         if test "x$ac_system" == "xunknown"
936         then
937                 with_libstatgrab="yes"
938         else
939                 with_libstatgrab="no"
940         fi
941 ])
942 if test "x$with_libstatgrab" = "xyes"
943 then
944         AC_CHECK_LIB(statgrab, sg_init, [with_libstatgrab="yes"], [with_libstatgrab="no (libstatgrab not found)"])
945 fi
946 if test "x$with_libstatgrab" = "xyes"
947 then
948         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
949 fi
950 if test "x$with_libstatgrab" = "xyes"
951 then
952         AC_CHECK_LIB(devstat, getdevs, [with_libdevstat="yes"], [with_libdevstat="no"])
953 fi
954 if test "x$with_libstatgrab" = "xyes"
955 then
956         collect_libstatgrab=1
957 else
958         collect_libstatgrab=0
959 fi
960 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
961         [Wether or not to use statgrab library])
962 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
963 AM_CONDITIONAL(BUILD_WITH_LIBDEVSTAT,  test "x$with_libdevstat"  = "xyes")
964
965 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_libkvm="yes"], [with_libkvm="no"])
966 if test "x$with_libkvm" = "xyes"
967 then
968         AC_DEFINE(HAVE_LIBKVM, 1, [Define to 1 if you have the 'kvm' library (-lkvm)])
969 fi
970 AM_CONDITIONAL(BUILD_WITH_LIBKVM, test "x$with_libkvm" = "xyes")
971
972 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
973 [
974         if test "x$withval" != "xno" && test "x$withval" != "xyes"
975         then
976                 LDFLAGS="$LDFLAGS -L$withval/lib"
977                 CPPFLAGS="$CPPFLAGS -I$withval/include"
978                 with_lm_sensors="yes"
979         fi
980 ],
981 [
982         if test "x$ac_system" = "xLinux"
983         then
984                 with_lm_sensors="yes"
985         else
986                 with_lm_sensors="no"
987         fi
988 ])
989 if test "x$with_lm_sensors" = "xyes"
990 then
991         AC_CHECK_LIB(sensors, sensors_init,
992         [
993                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
994         ],
995         [with_lm_sensors="no (libsensors not found)"])
996 fi
997 if test "x$with_lm_sensors" = "xyes"
998 then
999         AC_CHECK_HEADERS(sensors/sensors.h,
1000         [
1001                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
1002         ],
1003         [with_lm_sensors="no (sensors/sensors.h not found)"])
1004 fi
1005 if test "x$with_lm_sensors" = "xyes"
1006 then
1007         collect_lm_sensors=1
1008 else
1009         collect_lm_sensors=0
1010 fi
1011 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
1012         [Wether or not to use sensors library])
1013 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
1014
1015 with_mysql_config="mysql_config"
1016 with_mysql_cflags=""
1017 with_mysql_libs=""
1018 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
1019 [
1020         if test "x$withval" = "xno"
1021         then
1022                 with_libmysql="no"
1023         else if test "x$withval" = "xyes"
1024         then
1025                 with_libmysql="yes"
1026         else
1027                 if test -x "$withval";
1028                 then
1029                         with_mysql_config="$withval"
1030                 else if test -x "$withval/bin/mysql_config"
1031                 then
1032                         with_mysql_config="$withval/bin/mysql_config"
1033                 fi; fi
1034         fi; fi
1035 ],
1036 [
1037         with_libmysql="yes"
1038 ])
1039 if test "x$with_libmysql" = "xyes"
1040 then
1041         with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
1042         mysql_config_status=$?
1043
1044         if test $mysql_config_status -ne 0
1045         then
1046                 with_libmysql="no"
1047         else
1048                 SAVE_CFLAGS=$CFLAGS
1049                 CFLAGS="$CFLAGS $with_mysql_cflags"
1050
1051                 AC_CHECK_HEADERS(mysql/mysql.h, [], [with_libmysql="no (mysql/mysql.h not found)"], [])
1052
1053                 CFLAGS="$SAVE_CFLAGS"
1054         fi
1055 fi
1056 if test "x$with_libmysql" = "xyes"
1057 then
1058         with_mysql_libs=`$with_mysql_config --libs 2>/dev/null`
1059         mysql_config_status=$?
1060
1061         if test $mysql_config_status -ne 0
1062         then
1063                 with_libmysql="no"
1064         else
1065                 AC_CHECK_LIB(mysqlclient, mysql_init,
1066                  [
1067                   # We need to do this to have `HAVE_LIBMYSQLCLIENT' defined
1068                   # but `-lmysqlclient' NOT added to the default LDFLAGS.
1069                         AC_DEFINE(HAVE_LIBMYSQLCLIENT, 1,
1070                                   [Define to 1 if you have the mysqlclient library.])
1071                  ],
1072                  [with_libmysql="no (libmysql not found)"],
1073                  [$with_mysql_libs])
1074         fi
1075 fi
1076 if test "x$with_libmysql" = "xyes"
1077 then
1078         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
1079         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
1080         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
1081         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
1082 fi
1083 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
1084
1085 with_own_liboconfig="no"
1086 liboconfig_LDFLAGS="$LDFLAGS"
1087 liboconfig_CPPFLAGS="$CPPFLAGS"
1088 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
1089 [
1090         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1091         then
1092                 if test -d "$withval/lib"
1093                 then
1094                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
1095                 fi
1096                 if test -d "$withval/include"
1097                 then
1098                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
1099                 fi
1100         fi
1101         if test "x$withval" = "xno"
1102         then
1103                 AC_MSG_ERROR("liboconfig is required")
1104         fi
1105 ],
1106 [
1107         with_liboconfig="yes"
1108 ])
1109
1110 save_LDFLAGS="$LDFLAGS"
1111 save_CPPFLAGS="$CPPFLAGS"
1112 LDFLAGS="$liboconfig_LDFLAGS"
1113 CPPFLAGS="$liboconfig_CPPFLAGS"
1114 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
1115 [
1116         with_liboconfig="yes"
1117         with_own_liboconfig="no"
1118 ],
1119 [
1120         with_liboconfig="yes"
1121         with_own_liboconfig="yes"
1122         LDFLAGS="$save_LDFLAGS"
1123         CPPFLAGS="$save_CPPFLAGS"
1124 ])
1125
1126 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
1127 if test "x$with_own_liboconfig" = "xyes"
1128 then
1129         with_liboconfig="yes (shipped version)"
1130 fi
1131
1132 #with_liboping="yes"
1133 with_own_liboping="no"
1134 liboping_LDFLAGS="$LDFLAGS"
1135 liboping_CPPFLAGS="$CPPFLAGS"
1136 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
1137 [
1138         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1139         then
1140                 if test -d "$withval/lib"
1141                 then
1142                         liboping_LDFLAGS="$LDFLAGS -L$withval/lib"
1143                 fi
1144                 if test -d "$withval/include"
1145                 then
1146                         liboping_CPPFLAGS="$CPPFLAGS -I$withval/include"
1147                 fi
1148         fi
1149         if test "x$withval" = "xno"
1150         then
1151                 with_liboping="no"
1152                 with_own_liboping="no"
1153         fi
1154 ],
1155 [
1156         #753
1157         with_liboping="yes"
1158 ])
1159
1160 if test "x$with_liboping" = "xyes"
1161 then
1162         save_LDFLAGS="$LDFLAGS"
1163         save_CPPFLAGS="$CPPFLAGS"
1164         LDFLAGS="$liboping_LDFLAGS"
1165         CPPFLAGS="$liboping_CPPFLAGS"
1166         AC_CHECK_LIB(oping, ping_construct,
1167         [
1168                 with_liboping="yes"
1169                 with_own_liboping="no"
1170         ],
1171         [
1172                 with_liboping="yes"
1173                 with_own_liboping="yes"
1174                 LDFLAGS="$save_LDFLAGS"
1175                 CPPFLAGS="$save_CPPFLAGS"
1176         ])
1177 fi
1178 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
1179 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOPING, test "x$with_own_liboping" = "xyes")
1180 if test "x$with_liboping" = "xyes" -a "x$with_own_liboping" = "xyes"
1181 then
1182         with_liboping="yes (shipped version)"
1183 fi
1184
1185 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
1186 [
1187         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1188         then
1189                 LDFLAGS="$LDFLAGS -L$withval/lib"
1190                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1191                 with_libpcap="yes"
1192         fi
1193 ],
1194 [
1195         with_libpcap="yes"
1196 ])
1197 if test "x$with_libpcap" = "xyes"
1198 then
1199         AC_CHECK_LIB(pcap, pcap_open_live,
1200         [
1201                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
1202         ], [with_libpcap="no (libpcap not found)"])
1203 fi
1204 if test "x$with_libpcap" = "xyes"
1205 then
1206         AC_CHECK_HEADERS(pcap.h,
1207         [
1208                 AC_DEFINE(HAVE_PCAP_H, 1, [Define to 1 if you have the <pcap.h> header file.])
1209         ], [with_libpcap="no (pcap.h not found)"])
1210 fi
1211 if test "x$with_libpcap" = "xyes"
1212 then
1213         collect_libpcap=1
1214 else
1215         collect_libpcap=0
1216 fi
1217 AC_DEFINE_UNQUOTED(COLLECT_LIBPCAP, [$collect_libpcap],
1218         [Wether or not to use the pcap library])
1219 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
1220
1221 perl_interpreter="perl"
1222 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
1223 [
1224         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1225         then
1226                 LDFLAGS="$LDFLAGS -L$withval/lib"
1227                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1228                 perl_interpreter="$withval/bin/perl"
1229                 with_libperl="yes"
1230         fi
1231 ],
1232 [
1233         with_libperl="yes"
1234 ])
1235 if test "x$with_libperl" = "xyes"
1236 then
1237   SAVE_CFLAGS=$CFLAGS
1238   SAVE_LDFLAGS=$LDFLAGS
1239   PERL_CFLAGS=`$perl_interpreter -MExtUtils::Embed -e ccopts`
1240   PERL_LDFLAGS=`$perl_interpreter -MExtUtils::Embed -e ldopts`
1241   CFLAGS="$CFLAGS $PERL_CFLAGS"
1242   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
1243
1244   AC_CACHE_CHECK([for libperl],
1245     [have_libperl],
1246     AC_LINK_IFELSE(
1247       AC_LANG_PROGRAM(
1248       [[
1249 #include <EXTERN.h>
1250 #include <perl.h>
1251 #include <XSUB.h>
1252       ]],
1253       [[
1254        PerlInterpreter *perl = NULL;
1255        Perl_load_module (perl, PERL_LOADMOD_NOIMPORT,
1256                          newSVpv ("Collectd::Plugin::FooBar", 24),
1257                          Nullsv);
1258       ]]),
1259       [have_libperl="yes"],
1260       [have_libperl="no"]
1261     )
1262   )
1263
1264   if test "x$have_libperl" = "xyes"
1265   then
1266           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
1267           AC_SUBST(PERL_CFLAGS)
1268           AC_SUBST(PERL_LDFLAGS)
1269   else
1270           with_libperl="no"
1271   fi
1272
1273   CFLAGS=$SAVE_CFLAGS
1274   LDFLAGS=$SAVE_LDFLAGS
1275 fi
1276 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
1277
1278 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1279 [
1280         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1281         then
1282                 LDFLAGS="$LDFLAGS -L$withval/lib"
1283                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1284                 with_libiptc="yes"
1285         fi
1286 ],
1287 [
1288         if test "x$ac_system" = "xLinux"
1289         then
1290                 with_libiptc="yes"
1291         else
1292                 with_libiptc="no (Linux only)"
1293         fi
1294 ])
1295 if test "x$with_libiptc" = "xyes"
1296 then
1297         AC_CHECK_LIB(iptc, iptc_init,
1298         [
1299                 AC_DEFINE(HAVE_LIBIPTC, 1, [Define to 1 if you have the iptc library (-liptc).])
1300         ], [with_libiptc="no (libiptc not found)"])
1301 fi
1302 if test "x$with_libiptc" = "xyes"
1303 then
1304         AC_CHECK_HEADERS(libiptc/libiptc.h,
1305         [
1306                 AC_DEFINE(HAVE_LIBIPTC_LIBIPTC_H, 1, [Define to 1 if you have the <libiptc/libiptc.h> header file.])
1307         ], [with_libiptc="no (libiptc/libiptc.h not found)"])
1308 fi
1309 if test "x$with_libiptc" = "xyes"
1310 then
1311         collect_libiptc=1
1312 else
1313         collect_libiptc=0
1314 fi
1315 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
1316
1317 # TODO: Use `libupsclient-config' here.
1318 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to libupsclient.])],
1319 [
1320         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1321         then
1322                 LDFLAGS="$LDFLAGS -L$withval/lib"
1323                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1324                 with_libupsclient="yes"
1325         fi
1326 ],
1327 [
1328         with_libupsclient="yes"
1329 ])
1330 if test "x$with_libupsclient" = "xyes"
1331 then
1332         AC_CHECK_LIB(upsclient, upscli_connect,
1333         [
1334                 AC_DEFINE(HAVE_LIBUPSCLIENT, 1, [Define to 1 if you have the upsclient library (-lupsclient).])
1335         ], [with_libupsclient="no (libupsclient not found)"])
1336 fi
1337 if test "x$with_libupsclient" = "xyes"
1338 then
1339         AC_CHECK_HEADERS(upsclient.h,
1340         [
1341                 AC_DEFINE(HAVE_UPSCLIENT_H, 1, [Define to 1 if you have the <upsclient.h> header file.])
1342         ], [with_libupsclient="no (upsclient.h not found)"])
1343 fi
1344 if test "x$with_libupsclient" = "xyes"
1345 then
1346         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [], 
1347 [#include <stdlib.h>
1348 #include <stdio.h>
1349 #include <upsclient.h>])
1350 fi
1351 AM_CONDITIONAL(BUILD_WITH_LIBUPSCLIENT, test "x$with_libupsclient" = "xyes")
1352
1353 # Check for enabled/disabled features
1354 #
1355
1356 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
1357 # ------------------------------------------------------------
1358 dnl
1359 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
1360 dnl
1361 AC_DEFUN(
1362         [AC_COLLECTD],
1363         [
1364         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
1365         m4_if(
1366                 [$2],
1367                 [enable],
1368                 [dnl
1369                 m4_define([EnDis],[disabled])dnl
1370                 m4_define([YesNo],[no])dnl
1371                 ],dnl
1372                 [m4_if(
1373                         [$2],
1374                         [disable],
1375                         [dnl
1376                         m4_define([EnDis],[enabled])dnl
1377                         m4_define([YesNo],[yes])dnl
1378                         ],
1379                         [dnl
1380                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
1381                         ]dnl
1382                 )]dnl
1383         )dnl
1384         m4_if([$3], [feature], [],
1385                 [m4_if(
1386                         [$3], [module], [],
1387                         [dnl
1388                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
1389                         ]dnl
1390                 )]dnl
1391         )dnl
1392         AC_ARG_ENABLE(
1393                 [$1],
1394                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
1395                 [],
1396                 enable_$1='[YesNo]'dnl
1397         )# AC_ARG_ENABLE
1398 if test "x$enable_$1" = "xno"
1399 then
1400         collectd_$1=0
1401 else
1402         if test "x$enable_$1" = "xyes"
1403         then
1404                 collectd_$1=1
1405         else
1406                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
1407                 collectd_$1=1
1408                 enable_$1='yes'
1409         fi
1410 fi
1411         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
1412         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
1413         ]dnl
1414 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
1415
1416 m4_divert_once([HELP_ENABLE], [
1417 collectd features:])
1418 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
1419 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
1420 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
1421
1422 m4_divert_once([HELP_ENABLE], [
1423 collectd modules:])
1424 AC_COLLECTD([apache],    [disable], [module], [Apache httpd statistics])
1425 AC_COLLECTD([apcups],    [disable], [module], [Statistics of UPSes by APC])
1426 AC_COLLECTD([apple_sensors], [disable], [module], [Apple's hardware sensors])
1427 AC_COLLECTD([battery],   [disable], [module], [battery statistics])
1428 AC_COLLECTD([cpu],       [disable], [module], [cpu usage statistics])
1429 AC_COLLECTD([cpufreq],   [disable], [module], [system cpu frequency statistics])
1430 AC_COLLECTD([disk],      [disable], [module], [disk/partition statistics])
1431 AC_COLLECTD([csv],       [disable], [module], [csv output plugin])
1432 AC_COLLECTD([df],        [disable], [module], [df statistics])
1433 AC_COLLECTD([dns],       [disable], [module], [dns statistics])
1434 AC_COLLECTD([email],     [disable], [module], [email statistics])
1435 AC_COLLECTD([entropy],   [disable], [module], [entropy statistics])
1436 AC_COLLECTD([exec],      [disable], [module], [exec of external programs])
1437 AC_COLLECTD([hddtemp],   [disable], [module], [hdd temperature statistics])
1438 AC_COLLECTD([interface], [disable], [module], [interface statistics])
1439 AC_COLLECTD([iptables],  [disable], [module], [IPtables statistics])
1440 AC_COLLECTD([irq],       [disable], [module], [irq statistics])
1441 AC_COLLECTD([load],      [disable], [module], [system load statistics])
1442 AC_COLLECTD([mbmon],     [disable], [module], [motherboard monitor statistics])
1443 AC_COLLECTD([memory],    [disable], [module], [memory statistics])
1444 AC_COLLECTD([multimeter],[disable], [module], [multimeter statistics])
1445 AC_COLLECTD([mysql],     [disable], [module], [mysql statistics])
1446 AC_COLLECTD([network],   [disable], [module], [network functionality])
1447 AC_COLLECTD([nfs],       [disable], [module], [nfs statistics])
1448 AC_COLLECTD([ntpd],      [disable], [module], [ntpd statistics])
1449 AC_COLLECTD([nut],       [disable], [module], [network UPS tools statistics])
1450 AC_COLLECTD([perl],      [disable], [module], [embedded perl interpreter])
1451 AC_COLLECTD([ping],      [disable], [module], [ping statistics])
1452 AC_COLLECTD([processes], [disable], [module], [processes statistics])
1453 AC_COLLECTD([sensors],   [disable], [module], [lm_sensors statistics])
1454 AC_COLLECTD([serial],    [disable], [module], [serial statistics])
1455 AC_COLLECTD([logfile],   [disable], [module], [logfile log facility])
1456 AC_COLLECTD([swap],      [disable], [module], [swap statistics])
1457 AC_COLLECTD([syslog],    [disable], [module], [syslog log facility])
1458 AC_COLLECTD([tape],      [disable], [module], [tape statistics])
1459 AC_COLLECTD([unixsock],  [disable], [module], [UNIX socket plugin])
1460 AC_COLLECTD([users],     [disable], [module], [user count statistics])
1461 AC_COLLECTD([vserver],   [disable], [module], [vserver statistics])
1462 AC_COLLECTD([wireless],  [disable], [module], [wireless link statistics])
1463
1464 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/liboconfig/Makefile src/liboping/Makefile)
1465
1466 if test "x$with_libperl" = "xyes"
1467 then
1468         with_libperl="yes (version `perl -MConfig -e 'print $Config{version};'`)"
1469 else
1470         enable_perl="no (needs libperl)"
1471 fi
1472
1473 cat <<EOF;
1474
1475 Configuration:
1476   Libraries:
1477     libcurl . . . . . . $with_libcurl
1478     libiokit  . . . . . $with_libiokit
1479     libiptc . . . . . . $with_libiptc
1480     libkstat  . . . . . $with_kstat
1481     libmysql  . . . . . $with_libmysql
1482     liboconfig  . . . . $with_liboconfig
1483     liboping  . . . . . $with_liboping
1484     libpcap . . . . . . $with_libpcap
1485     libperl . . . . . . $with_libperl
1486     libpthread  . . . . $with_libpthread
1487     librrd  . . . . . . $with_rrdtool
1488     libsensors  . . . . $with_lm_sensors
1489     libstatgrab . . . . $with_libstatgrab
1490     libupsclient  . . . $with_libupsclient
1491
1492   Features:
1493     daemon mode . . . . $enable_daemon
1494     debug . . . . . . . $enable_debug
1495
1496   Modules:
1497     apache  . . . . . . $enable_apache
1498     apcups  . . . . . . $enable_apcups
1499     apple_sensors . . . $enable_apple_sensors
1500     battery . . . . . . $enable_battery
1501     cpu . . . . . . . . $enable_cpu
1502     cpufreq . . . . . . $enable_cpufreq
1503     csv . . . . . . . . $enable_csv
1504     df  . . . . . . . . $enable_df
1505     disk  . . . . . . . $enable_disk
1506     dns . . . . . . . . $enable_dns
1507     email . . . . . . . $enable_email
1508     entropy . . . . . . $enable_entropy
1509     exec  . . . . . . . $enable_exec
1510     hddtemp . . . . . . $enable_hddtemp
1511     interface . . . . . $enable_interface
1512     iptables  . . . . . $enable_iptables
1513     irq . . . . . . . . $enable_irq
1514     load  . . . . . . . $enable_load
1515     logfile . . . . . . $enable_logfile
1516     mbmon . . . . . . . $enable_mbmon
1517     memory  . . . . . . $enable_memory
1518     multimeter  . . . . $enable_multimeter
1519     mysql . . . . . . . $enable_mysql
1520     network . . . . . . $enable_network
1521     nfs . . . . . . . . $enable_nfs
1522     ntpd  . . . . . . . $enable_ntpd
1523     nut . . . . . . . . $enable_nut
1524     perl  . . . . . . . $enable_perl
1525     ping  . . . . . . . $enable_ping
1526     processes . . . . . $enable_processes
1527     sensors . . . . . . $enable_sensors
1528     serial  . . . . . . $enable_serial
1529     swap  . . . . . . . $enable_swap
1530     syslog  . . . . . . $enable_syslog
1531     tape  . . . . . . . $enable_tape
1532     unixsock  . . . . . $enable_unixsock
1533     users . . . . . . . $enable_users
1534     vserver . . . . . . $enable_vserver
1535     wireless  . . . . . $enable_wireless
1536
1537 EOF