build system: correct warning about 'INCLUDES'
[collectd.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT([collectd],[m4_esyscmd(./version-gen.sh)])
3 AC_CONFIG_SRCDIR(src/collectd.c)
4 AC_CONFIG_HEADERS(src/config.h)
5 AC_CONFIG_AUX_DIR([libltdl/config])
6
7 m4_ifdef([LT_PACKAGE_VERSION],
8         # libtool >= 2.2
9         [
10          LT_CONFIG_LTDL_DIR([libltdl])
11          LT_INIT([dlopen])
12          LTDL_INIT([convenience])
13          AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.])
14         ]
15 ,
16         # libtool <= 1.5
17         [
18          AC_LIBLTDL_CONVENIENCE
19          AC_SUBST(LTDLINCL)
20          AC_SUBST(LIBLTDL)
21          AC_LIBTOOL_DLOPEN
22          AC_CONFIG_SUBDIRS(libltdl)
23          AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.])
24         ]
25 )
26
27 AM_INIT_AUTOMAKE([tar-pax dist-bzip2 foreign])
28 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
29 AC_LANG(C)
30
31 AC_PREFIX_DEFAULT("/opt/collectd")
32
33 AC_SYS_LARGEFILE
34
35 #
36 # Checks for programs.
37 #
38 AC_PROG_CC
39 AC_PROG_CPP
40 AC_PROG_INSTALL
41 AC_PROG_LN_S
42 AC_PROG_MAKE_SET
43 AM_PROG_CC_C_O
44 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
45
46 AC_DISABLE_STATIC
47 AC_PROG_LIBTOOL
48 AC_PROG_LEX
49 AC_PROG_YACC
50 PKG_PROG_PKG_CONFIG
51
52 AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no])
53 AC_CHECK_HEADERS([google/protobuf-c/protobuf-c.h],
54                  [have_protobuf_c_h="yes"],
55                  [have_protobuf_c_h="no"])
56 if test "x$have_protoc_c" = "xyes" && test "x$have_protobuf_c_h" != "xyes"
57 then
58         have_protoc_c="no (unable to find <google/protobuf-c/protobuf-c.h>)"
59 fi
60 AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")
61
62 AC_MSG_CHECKING([for kernel type ($host_os)])
63 case $host_os in
64         *linux*)
65         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
66         ac_system="Linux"
67         ;;
68         *solaris*)
69         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
70         ac_system="Solaris"
71         ;;
72         *darwin*)
73         ac_system="Darwin"
74         ;;
75         *openbsd*)
76         ac_system="OpenBSD"
77         ;;
78         *aix*)
79         AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
80         ac_system="AIX"
81         ;;
82         *freebsd*)
83         AC_DEFINE([KERNEL_FREEBSD], 1, [True if program is to be compiled for a FreeBSD kernel])
84         ac_system="FreeBSD"
85         ;;
86         *)
87         ac_system="unknown"
88 esac
89 AC_MSG_RESULT([$ac_system])
90
91 if test "x$ac_system" = "xLinux"
92 then
93         AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
94         if test -z "$KERNEL_DIR"
95         then
96                 KERNEL_DIR="/lib/modules/`uname -r`/source"
97         fi
98
99         KERNEL_CFLAGS="-I$KERNEL_DIR/include"
100         AC_SUBST(KERNEL_CFLAGS)
101 fi
102
103 if test "x$ac_system" = "xSolaris"
104 then
105         AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
106         AC_DEFINE(_REENTRANT,               1, [Define to enable reentrancy interfaces.])
107 fi
108 if test "x$ac_system" = "xAIX"
109 then
110         AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
111 fi
112
113 # Where to install .pc files.
114 pkgconfigdir="${libdir}/pkgconfig"
115 AC_SUBST(pkgconfigdir)
116
117 # Check for standards compliance mode
118 AC_ARG_ENABLE(standards,
119               AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
120               [enable_standards="$enableval"],
121               [enable_standards="no"])
122 if test "x$enable_standards" = "xyes"
123 then
124         AC_DEFINE(_ISOC99_SOURCE,        1, [Define to enforce ISO C99 compliance.])
125         AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
126         AC_DEFINE(_XOPEN_SOURCE,       700, [Define to enforce X/Open 7 (XSI) compliance.])
127         AC_DEFINE(_REENTRANT,            1, [Define to enable reentrancy interfaces.])
128         if test "x$GCC" = "xyes"
129         then
130                 CFLAGS="$CFLAGS -std=c99"
131         fi
132 fi
133 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
134
135 #
136 # Checks for header files.
137 #
138 AC_HEADER_STDC
139 AC_HEADER_SYS_WAIT
140 AC_HEADER_DIRENT
141 AC_HEADER_STDBOOL
142
143 AC_CHECK_HEADERS(stdio.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h endian.h sys/isa_defs.h fnmatch.h libgen.h)
144
145 # For ping library
146 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
147 [#if HAVE_STDINT_H
148 # include <stdint.h>
149 #endif
150 #if HAVE_SYS_TYPES_H
151 # include <sys/types.h>
152 #endif
153 ])
154 AC_CHECK_HEADERS(netinet/in.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 ])
165 AC_CHECK_HEADERS(netinet/ip.h, [], [],
166 [#if HAVE_STDINT_H
167 # include <stdint.h>
168 #endif
169 #if HAVE_SYS_TYPES_H
170 # include <sys/types.h>
171 #endif
172 #if HAVE_NETINET_IN_SYSTM_H
173 # include <netinet/in_systm.h>
174 #endif
175 #if HAVE_NETINET_IN_H
176 # include <netinet/in.h>
177 #endif
178 ])
179 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
180 [#if HAVE_STDINT_H
181 # include <stdint.h>
182 #endif
183 #if HAVE_SYS_TYPES_H
184 # include <sys/types.h>
185 #endif
186 #if HAVE_NETINET_IN_SYSTM_H
187 # include <netinet/in_systm.h>
188 #endif
189 #if HAVE_NETINET_IN_H
190 # include <netinet/in.h>
191 #endif
192 #if HAVE_NETINET_IP_H
193 # include <netinet/ip.h>
194 #endif
195 ])
196 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
197 [#if HAVE_STDINT_H
198 # include <stdint.h>
199 #endif
200 #if HAVE_SYS_TYPES_H
201 # include <sys/types.h>
202 #endif
203 #if HAVE_NETINET_IN_SYSTM_H
204 # include <netinet/in_systm.h>
205 #endif
206 #if HAVE_NETINET_IN_H
207 # include <netinet/in.h>
208 #endif
209 #if HAVE_NETINET_IP_H
210 # include <netinet/ip.h>
211 #endif
212 ])
213 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
214 [#if HAVE_STDINT_H
215 # include <stdint.h>
216 #endif
217 #if HAVE_SYS_TYPES_H
218 # include <sys/types.h>
219 #endif
220 #if HAVE_NETINET_IN_SYSTM_H
221 # include <netinet/in_systm.h>
222 #endif
223 #if HAVE_NETINET_IN_H
224 # include <netinet/in.h>
225 #endif
226 ])
227 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
228 [#if HAVE_STDINT_H
229 # include <stdint.h>
230 #endif
231 #if HAVE_SYS_TYPES_H
232 # include <sys/types.h>
233 #endif
234 #if HAVE_NETINET_IN_SYSTM_H
235 # include <netinet/in_systm.h>
236 #endif
237 #if HAVE_NETINET_IN_H
238 # include <netinet/in.h>
239 #endif
240 #if HAVE_NETINET_IP6_H
241 # include <netinet/ip6.h>
242 #endif
243 ])
244 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
245 [#if HAVE_STDINT_H
246 # include <stdint.h>
247 #endif
248 #if HAVE_SYS_TYPES_H
249 # include <sys/types.h>
250 #endif
251 #if HAVE_NETINET_IN_SYSTM_H
252 # include <netinet/in_systm.h>
253 #endif
254 #if HAVE_NETINET_IN_H
255 # include <netinet/in.h>
256 #endif
257 #if HAVE_NETINET_IP_H
258 # include <netinet/ip.h>
259 #endif
260 ])
261 AC_CHECK_HEADERS(netinet/udp.h, [], [],
262 [#if HAVE_STDINT_H
263 # include <stdint.h>
264 #endif
265 #if HAVE_SYS_TYPES_H
266 # include <sys/types.h>
267 #endif
268 #if HAVE_NETINET_IN_SYSTM_H
269 # include <netinet/in_systm.h>
270 #endif
271 #if HAVE_NETINET_IN_H
272 # include <netinet/in.h>
273 #endif
274 #if HAVE_NETINET_IP_H
275 # include <netinet/ip.h>
276 #endif
277 ])
278
279 # For cpu modules
280 AC_CHECK_HEADERS(sys/dkstat.h)
281 if test "x$ac_system" = "xDarwin"
282 then
283         AC_CHECK_HEADERS(mach/mach_init.h mach/host_priv.h mach/mach_error.h mach/mach_host.h mach/mach_port.h mach/mach_types.h mach/message.h mach/processor_set.h mach/processor.h mach/processor_info.h mach/task.h mach/thread_act.h mach/vm_region.h mach/vm_map.h mach/vm_prot.h mach/vm_statistics.h mach/kern_return.h)
284         AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
285         # For the battery plugin
286         AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
287 [
288 #if HAVE_IOKIT_IOKITLIB_H
289 #  include <IOKit/IOKitLib.h>
290 #endif
291 #if HAVE_IOKIT_IOTYPES_H
292 #  include <IOKit/IOTypes.h>
293 #endif
294 ])
295
296 fi
297
298 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
299 [
300 #if HAVE_SYS_TYPES_H
301 #  include <sys/types.h>
302 #endif
303 #if HAVE_SYS_PARAM_H
304 # include <sys/param.h>
305 #endif
306 ])
307
308 AC_MSG_CHECKING([for sysctl kern.cp_times])
309 if test -x /sbin/sysctl
310 then
311         /sbin/sysctl kern.cp_times 2>/dev/null
312         if test $? -eq 0
313         then
314                 AC_MSG_RESULT([yes])
315                 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
316                 [Define if sysctl supports kern.cp_times])
317         else
318                 AC_MSG_RESULT([no])
319         fi
320 else
321         AC_MSG_RESULT([no])
322 fi
323
324 # For hddtemp module
325 AC_CHECK_HEADERS(linux/major.h)
326
327 # For md module (Linux only)
328 if test "x$ac_system" = "xLinux"
329 then
330         AC_CHECK_HEADERS(linux/raid/md_u.h,
331                          [have_linux_raid_md_u_h="yes"],
332                          [have_linux_raid_md_u_h="no"],
333 [
334 #include <sys/ioctl.h>
335 #include <linux/major.h>
336 #include <linux/types.h>
337 ])
338 else
339         have_linux_raid_md_u_h="no"
340 fi
341
342 # For the swap module
343 have_linux_wireless_h="no"
344 if test "x$ac_system" = "xLinux"
345 then
346   AC_CHECK_HEADERS(linux/wireless.h,
347                    [have_linux_wireless_h="yes"],
348                    [have_linux_wireless_h="no"],
349 [
350 #include <dirent.h>
351 #include <sys/ioctl.h>
352 #include <sys/socket.h>
353 ])
354 fi
355
356 # For the swap module
357 have_sys_swap_h="yes"
358 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
359 [
360 #undef _FILE_OFFSET_BITS
361 #undef _LARGEFILE64_SOURCE
362 #if HAVE_SYS_TYPES_H
363 #  include <sys/types.h>
364 #endif
365 #if HAVE_SYS_PARAM_H
366 # include <sys/param.h>
367 #endif
368 ])
369
370 if test "x$have_sys_swap_h$ac_system" = "xnoSolaris"
371 then
372         hint_64=""
373         if test "x$GCC" = "xyes"
374         then
375                 hint_64="CFLAGS='-m64'"
376         else
377                 hint_64="CFLAGS='-xarch=v9'"
378         fi
379         AC_MSG_NOTICE([Solaris detected and sys/swap.h not usable. Try building a 64-bit binary ($hint_64 ./configure).])
380 fi
381
382 # For load module
383 # For the processes plugin
384 # For users module
385 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
386
387 # For interface plugin
388 AC_CHECK_HEADERS(ifaddrs.h)
389 AC_CHECK_HEADERS(net/if.h, [], [],
390 [
391 #if HAVE_SYS_TYPES_H
392 #  include <sys/types.h>
393 #endif
394 #if HAVE_SYS_SOCKET_H
395 #  include <sys/socket.h>
396 #endif
397 ])
398 AC_CHECK_HEADERS(linux/if.h, [], [],
399 [
400 #if HAVE_SYS_TYPES_H
401 #  include <sys/types.h>
402 #endif
403 #if HAVE_SYS_SOCKET_H
404 #  include <sys/socket.h>
405 #endif
406 ])
407 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
408 [
409 #if HAVE_SYS_TYPES_H
410 #  include <sys/types.h>
411 #endif
412 #if HAVE_SYS_SOCKET_H
413 #  include <sys/socket.h>
414 #endif
415 #if HAVE_LINUX_IF_H
416 # include <linux/if.h>
417 #endif
418 ])
419
420 # For ethstat module
421 AC_CHECK_HEADERS(linux/sockios.h,
422     [have_linux_sockios_h="yes"],
423     [have_linux_sockios_h="no"],
424     [
425 #if HAVE_SYS_IOCTL_H
426 # include <sys/ioctl.h>
427 #endif
428 #if HAVE_NET_IF_H
429 # include <net/if.h>
430 #endif
431     ])
432 AC_CHECK_HEADERS(linux/ethtool.h,
433     [have_linux_ethtool_h="yes"],
434     [have_linux_ethtool_h="no"],
435     [
436 #if HAVE_SYS_IOCTL_H
437 # include <sys/ioctl.h>
438 #endif
439 #if HAVE_NET_IF_H
440 # include <net/if.h>
441 #endif
442 #if HAVE_LINUX_SOCKIOS_H
443 # include <linux/sockios.h>
444 #endif
445     ])
446
447 # For ipvs module
448 have_linux_ip_vs_h="no"
449 have_net_ip_vs_h="no"
450 have_ip_vs_h="no"
451 ip_vs_h_needs_kernel_cflags="no"
452 if test "x$ac_system" = "xLinux"
453 then
454         AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
455         AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
456         AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
457
458         if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
459         then
460                 SAVE_CFLAGS="$CFLAGS"
461                 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
462
463                 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
464
465                 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
466                 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
467                 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
468
469                 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
470                 then
471                         ip_vs_h_needs_kernel_cflags="yes"
472                 fi
473
474                 CFLAGS="$SAVE_CFLAGS"
475         fi
476 fi
477 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
478
479 # For quota module
480 AC_CHECK_HEADERS(sys/ucred.h, [], [],
481 [
482 #if HAVE_SYS_TYPES_H
483 #  include <sys/types.h>
484 #endif
485 #if HAVE_SYS_PARAM_H
486 # include <sys/param.h>
487 #endif
488 ])
489
490 # For mount interface
491 AC_CHECK_HEADERS(sys/mount.h, [], [],
492 [
493 #if HAVE_SYS_TYPES_H
494 #  include <sys/types.h>
495 #endif
496 #if HAVE_SYS_PARAM_H
497 # include <sys/param.h>
498 #endif
499 ])
500
501 # For the email plugin
502 AC_CHECK_HEADERS(linux/un.h, [], [],
503 [
504 #if HAVE_SYS_SOCKET_H
505 #       include <sys/socket.h>
506 #endif
507 ])
508
509 AC_CHECK_HEADERS(pwd.h grp.h sys/un.h ctype.h limits.h xfs/xqm.h fs_info.h fshelp.h paths.h mntent.h mnttab.h sys/fstyp.h sys/fs_types.h sys/mntent.h sys/mnttab.h sys/statfs.h sys/statvfs.h sys/vfs.h sys/vfstab.h kvm.h wordexp.h)
510
511 # For the dns plugin
512 AC_CHECK_HEADERS(arpa/nameser.h)
513 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
514 [
515 #if HAVE_ARPA_NAMESER_H
516 # include <arpa/nameser.h>
517 #endif
518 ])
519
520 AC_CHECK_HEADERS(net/if_arp.h, [], [],
521 [#if HAVE_SYS_SOCKET_H
522 # include <sys/socket.h>
523 #endif
524 ])
525 AC_CHECK_HEADERS(net/ppp_defs.h)
526 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
527 [#if HAVE_NET_PPP_DEFS_H
528 # include <net/ppp_defs.h>
529 #endif
530 ])
531 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
532 [#if HAVE_STDINT_H
533 # include <stdint.h>
534 #endif
535 #if HAVE_SYS_TYPES_H
536 # include <sys/types.h>
537 #endif
538 #if HAVE_SYS_SOCKET_H
539 # include <sys/socket.h>
540 #endif
541 #if HAVE_NET_IF_H
542 # include <net/if.h>
543 #endif
544 #if HAVE_NETINET_IN_H
545 # include <netinet/in.h>
546 #endif
547 ])
548
549 AC_CHECK_HEADERS(netinet/ip_compat.h)
550
551 have_net_pfvar_h="no"
552 AC_CHECK_HEADERS(net/pfvar.h,
553                [have_net_pfvar_h="yes"],
554                [have_net_pfvar_h="no"],
555 [
556 #if HAVE_SYS_IOCTL_H
557 # include <sys/ioctl.h>
558 #endif
559 #if HAVE_SYS_SOCKET_H
560 # include <sys/socket.h>
561 #endif
562 #if HAVE_NET_IF_H
563 # include <net/if.h>
564 #endif
565 ])
566
567 # For the multimeter plugin
568 have_termios_h="no"
569 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
570
571 #
572 # Checks for typedefs, structures, and compiler characteristics.
573 #
574 AC_C_CONST
575 AC_TYPE_PID_T
576 AC_TYPE_SIZE_T
577 AC_TYPE_UID_T
578 AC_HEADER_TIME
579
580 #
581 # Checks for library functions.
582 #
583 AC_PROG_GCC_TRADITIONAL
584 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog sysconf setenv if_indextoname)
585
586 AC_FUNC_STRERROR_R
587
588 SAVE_CFLAGS="$CFLAGS"
589 # Emulate behavior of src/Makefile.am
590 if test "x$GCC" = "xyes"
591 then
592         CFLAGS="$CFLAGS -Wall -Werror"
593 fi
594
595 AC_CACHE_CHECK([for strtok_r],
596   [c_cv_have_strtok_r_default],
597   AC_LINK_IFELSE(
598     [AC_LANG_PROGRAM(
599 [[[
600 #include <stdlib.h>
601 #include <stdio.h>
602 #include <string.h>
603 ]]],
604 [[[
605       char buffer[] = "foo,bar,baz";
606       char *token;
607       char *dummy;
608       char *saveptr;
609
610       dummy = buffer;
611       saveptr = NULL;
612       while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
613       {
614         dummy = NULL;
615         printf ("token = %s;\n", token);
616       }
617 ]]]
618     )],
619     [c_cv_have_strtok_r_default="yes"],
620     [c_cv_have_strtok_r_default="no"]
621   )
622 )
623
624 if test "x$c_cv_have_strtok_r_default" = "xno"
625 then
626   CFLAGS="$CFLAGS -D_REENTRANT=1"
627
628   AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
629     [c_cv_have_strtok_r_reentrant],
630     AC_LINK_IFELSE(
631       [AC_LANG_PROGRAM(
632 [[[
633 #include <stdlib.h>
634 #include <stdio.h>
635 #include <string.h>
636 ]]],
637 [[[
638         char buffer[] = "foo,bar,baz";
639         char *token;
640         char *dummy;
641         char *saveptr;
642
643         dummy = buffer;
644         saveptr = NULL;
645         while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
646         {
647           dummy = NULL;
648           printf ("token = %s;\n", token);
649         }
650 ]]]
651       )],
652       [c_cv_have_strtok_r_reentrant="yes"],
653       [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
654     )
655   )
656 fi
657
658 CFLAGS="$SAVE_CFLAGS"
659 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
660 then
661         CFLAGS="$CFLAGS -D_REENTRANT=1"
662 fi
663
664 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
665
666 socket_needs_socket="no"
667 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
668 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
669
670 clock_gettime_needs_rt="no"
671 clock_gettime_needs_posix4="no"
672 have_clock_gettime="no"
673 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
674 if test "x$have_clock_gettime" = "xno"
675 then
676         AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
677                                          have_clock_gettime="yes"])
678 fi
679 if test "x$have_clock_gettime" = "xno"
680 then
681         AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
682                                              have_clock_gettime="yes"])
683 fi
684 if test "x$have_clock_gettime" = "xyes"
685 then
686         AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
687 else
688         AC_MSG_WARN(cannot find clock_gettime)
689 fi
690
691 nanosleep_needs_rt="no"
692 nanosleep_needs_posix4="no"
693 AC_CHECK_FUNCS(nanosleep,
694     [],
695     AC_CHECK_LIB(rt, nanosleep,
696         [nanosleep_needs_rt="yes"],
697         AC_CHECK_LIB(posix4, nanosleep,
698             [nanosleep_needs_posix4="yes"],
699             AC_MSG_ERROR(cannot find nanosleep))))
700
701 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
702 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
703
704 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
705 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
706 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
707 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
708 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
709 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
710 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
711 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
712 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
713 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
714 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
715 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
716
717 # Check for strptime {{{
718 if test "x$GCC" = "xyes"
719 then
720         SAVE_CFLAGS="$CFLAGS"
721         CFLAGS="$CFLAGS -Wall -Wextra -Werror"
722 fi
723
724 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
725 if test "x$have_strptime" = "xyes"
726 then
727         AC_CACHE_CHECK([whether strptime is exported by default],
728                        [c_cv_have_strptime_default],
729                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
730 [[[
731 #include <time.h>
732 ]]],
733 [[[
734  struct tm stm;
735  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
736 ]]]
737                        )],
738                        [c_cv_have_strptime_default="yes"],
739                        [c_cv_have_strptime_default="no"]))
740 fi
741 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
742 then
743         AC_CACHE_CHECK([whether strptime needs standards mode],
744                        [c_cv_have_strptime_standards],
745                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
746 [[[
747 #ifndef _ISOC99_SOURCE
748 # define _ISOC99_SOURCE 1
749 #endif
750 #ifndef _POSIX_C_SOURCE
751 # define _POSIX_C_SOURCE 200112L
752 #endif
753 #ifndef _XOPEN_SOURCE
754 # define _XOPEN_SOURCE 500
755 #endif
756 #include <time.h>
757 ]]],
758 [[[
759  struct tm stm;
760  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
761 ]]]
762                        )],
763                        [c_cv_have_strptime_standards="yes"],
764                        [c_cv_have_strptime_standards="no"]))
765
766         if test "x$c_cv_have_strptime_standards" = "xyes"
767         then
768                 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
769         else
770                 have_strptime="no"
771         fi
772 fi
773
774 if test "x$GCC" = "xyes"
775 then
776         CFLAGS="$SAVE_CFLAGS"
777 fi
778 # }}} Check for strptime
779
780 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
781 if test "x$have_swapctl" = "xyes"; then
782         AC_CACHE_CHECK([whether swapctl takes two arguments],
783                 [c_cv_have_swapctl_two_args],
784                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
785 [[[
786 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
787 #  undef _FILE_OFFSET_BITS
788 #  undef _LARGEFILE64_SOURCE
789 #endif
790 #include <sys/stat.h>
791 #include <sys/swap.h>
792 ]]],
793 [[[
794 int num = swapctl(0, NULL);
795 ]]]
796                         )],
797                         [c_cv_have_swapctl_two_args="yes"],
798                         [c_cv_have_swapctl_two_args="no"]
799                 )
800         )
801         AC_CACHE_CHECK([whether swapctl takes three arguments],
802                 [c_cv_have_swapctl_three_args],
803                 AC_COMPILE_IFELSE(
804                         [AC_LANG_PROGRAM(
805 [[[
806 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
807 #  undef _FILE_OFFSET_BITS
808 #  undef _LARGEFILE64_SOURCE
809 #endif
810 #include <sys/stat.h>
811 #include <sys/swap.h>
812 ]]],
813 [[[
814 int num = swapctl(0, NULL, 0);
815 ]]]
816                         )],
817                         [c_cv_have_swapctl_three_args="yes"],
818                         [c_cv_have_swapctl_three_args="no"]
819                 )
820         )
821 fi
822 # Check for different versions of `swapctl' here..
823 if test "x$have_swapctl" = "xyes"; then
824         if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
825                 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
826                           [Define if the function swapctl exists and takes two arguments.])
827         fi
828         if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
829                 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
830                           [Define if the function swapctl exists and takes three arguments.])
831         fi
832 fi
833
834 # Check for NAN
835 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
836 [
837  if test "x$withval" = "xno"; then
838          nan_type="none"
839  else if test "x$withval" = "xyes"; then
840          nan_type="zero"
841  else
842          nan_type="$withval"
843  fi; fi
844 ],
845 [nan_type="none"])
846 if test "x$nan_type" = "xnone"; then
847   AC_CACHE_CHECK([whether NAN is defined by default],
848     [c_cv_have_nan_default],
849     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
850 [[[
851 #include <stdlib.h>
852 #include <math.h>
853 static double foo = NAN;
854 ]]],
855 [[[
856        if (isnan (foo))
857         return 0;
858        else
859         return 1;
860 ]]]
861       )],
862       [c_cv_have_nan_default="yes"],
863       [c_cv_have_nan_default="no"]
864     )
865   )
866   if test "x$c_cv_have_nan_default" = "xyes"
867   then
868     nan_type="default"
869   fi
870 fi
871 if test "x$nan_type" = "xnone"; then
872   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
873     [c_cv_have_nan_isoc],
874     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
875 [[[
876 #include <stdlib.h>
877 #define __USE_ISOC99 1
878 #include <math.h>
879 static double foo = NAN;
880 ]]],
881 [[[
882        if (isnan (foo))
883         return 0;
884        else
885         return 1;
886 ]]]
887       )],
888       [c_cv_have_nan_isoc="yes"],
889       [c_cv_have_nan_isoc="no"]
890     )
891   )
892   if test "x$c_cv_have_nan_isoc" = "xyes"
893   then
894     nan_type="isoc99"
895   fi
896 fi
897 if test "x$nan_type" = "xnone"; then
898   SAVE_LDFLAGS=$LDFLAGS
899   LDFLAGS="$LDFLAGS -lm"
900   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
901     [c_cv_have_nan_zero],
902     AC_RUN_IFELSE([AC_LANG_PROGRAM(
903 [[[
904 #include <stdlib.h>
905 #include <math.h>
906 #ifdef NAN
907 # undef NAN
908 #endif
909 #define NAN (0.0 / 0.0)
910 #ifndef isnan
911 # define isnan(f) ((f) != (f))
912 #endif
913 static double foo = NAN;
914 ]]],
915 [[[
916        if (isnan (foo))
917         return 0;
918        else
919         return 1;
920 ]]]
921       )],
922       [c_cv_have_nan_zero="yes"],
923       [c_cv_have_nan_zero="no"]
924     )
925   )
926   LDFLAGS=$SAVE_LDFLAGS
927   if test "x$c_cv_have_nan_zero" = "xyes"
928   then
929     nan_type="zero"
930   fi
931 fi
932
933 if test "x$nan_type" = "xdefault"; then
934   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
935     [Define if NAN is defined by default and can initialize static variables.])
936 else if test "x$nan_type" = "xisoc99"; then
937   AC_DEFINE(NAN_STATIC_ISOC, 1,
938     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
939 else if test "x$nan_type" = "xzero"; then
940   AC_DEFINE(NAN_ZERO_ZERO, 1,
941     [Define if NAN can be defined as (0.0 / 0.0)])
942 else
943   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
944 fi; fi; fi
945
946 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
947 [
948  if test "x$withval" = "xnothing"; then
949         fp_layout_type="nothing"
950  else if test "x$withval" = "xendianflip"; then
951         fp_layout_type="endianflip"
952  else if test "x$withval" = "xintswap"; then
953         fp_layout_type="intswap"
954  else
955         AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
956 fi; fi; fi
957 ],
958 [fp_layout_type="unknown"])
959
960 if test "x$fp_layout_type" = "xunknown"; then
961   AC_CACHE_CHECK([if doubles are stored in x86 representation],
962     [c_cv_fp_layout_need_nothing],
963     AC_RUN_IFELSE([AC_LANG_PROGRAM(
964 [[[
965 #include <stdlib.h>
966 #include <stdio.h>
967 #include <string.h>
968 #if HAVE_STDINT_H
969 # include <stdint.h>
970 #endif
971 #if HAVE_INTTYPES_H
972 # include <inttypes.h>
973 #endif
974 #if HAVE_STDBOOL_H
975 # include <stdbool.h>
976 #endif
977 ]]],
978 [[[
979         uint64_t i0;
980         uint64_t i1;
981         uint8_t c[8];
982         double d;
983
984         d = 8.642135e130;
985         memcpy ((void *) &i0, (void *) &d, 8);
986
987         i1 = i0;
988         memcpy ((void *) c, (void *) &i1, 8);
989
990         if ((c[0] == 0x2f) && (c[1] == 0x25)
991                         && (c[2] == 0xc0) && (c[3] == 0xc7)
992                         && (c[4] == 0x43) && (c[5] == 0x2b)
993                         && (c[6] == 0x1f) && (c[7] == 0x5b))
994                 return (0);
995         else
996                 return (1);
997 ]]]
998       )],
999       [c_cv_fp_layout_need_nothing="yes"],
1000       [c_cv_fp_layout_need_nothing="no"]
1001     )
1002   )
1003   if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1004     fp_layout_type="nothing"
1005   fi
1006 fi
1007 if test "x$fp_layout_type" = "xunknown"; then
1008   AC_CACHE_CHECK([if endianflip converts to x86 representation],
1009     [c_cv_fp_layout_need_endianflip],
1010     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1011 [[[
1012 #include <stdlib.h>
1013 #include <stdio.h>
1014 #include <string.h>
1015 #if HAVE_STDINT_H
1016 # include <stdint.h>
1017 #endif
1018 #if HAVE_INTTYPES_H
1019 # include <inttypes.h>
1020 #endif
1021 #if HAVE_STDBOOL_H
1022 # include <stdbool.h>
1023 #endif
1024 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1025                        (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1026                        (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1027                        (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
1028                        (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
1029                        (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1030                        (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1031                        (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1032 ]]],
1033 [[[
1034         uint64_t i0;
1035         uint64_t i1;
1036         uint8_t c[8];
1037         double d;
1038
1039         d = 8.642135e130;
1040         memcpy ((void *) &i0, (void *) &d, 8);
1041
1042         i1 = endianflip (i0);
1043         memcpy ((void *) c, (void *) &i1, 8);
1044
1045         if ((c[0] == 0x2f) && (c[1] == 0x25)
1046                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1047                         && (c[4] == 0x43) && (c[5] == 0x2b)
1048                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1049                 return (0);
1050         else
1051                 return (1);
1052 ]]]
1053       )],
1054       [c_cv_fp_layout_need_endianflip="yes"],
1055       [c_cv_fp_layout_need_endianflip="no"]
1056     )
1057   )
1058   if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1059     fp_layout_type="endianflip"
1060   fi
1061 fi
1062 if test "x$fp_layout_type" = "xunknown"; then
1063   AC_CACHE_CHECK([if intswap converts to x86 representation],
1064     [c_cv_fp_layout_need_intswap],
1065     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1066 [[[
1067 #include <stdlib.h>
1068 #include <stdio.h>
1069 #include <string.h>
1070 #if HAVE_STDINT_H
1071 # include <stdint.h>
1072 #endif
1073 #if HAVE_INTTYPES_H
1074 # include <inttypes.h>
1075 #endif
1076 #if HAVE_STDBOOL_H
1077 # include <stdbool.h>
1078 #endif
1079 #define intswap(A)    ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1080                        (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1081 ]]],
1082 [[[
1083         uint64_t i0;
1084         uint64_t i1;
1085         uint8_t c[8];
1086         double d;
1087
1088         d = 8.642135e130;
1089         memcpy ((void *) &i0, (void *) &d, 8);
1090
1091         i1 = intswap (i0);
1092         memcpy ((void *) c, (void *) &i1, 8);
1093
1094         if ((c[0] == 0x2f) && (c[1] == 0x25)
1095                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1096                         && (c[4] == 0x43) && (c[5] == 0x2b)
1097                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1098                 return (0);
1099         else
1100                 return (1);
1101 ]]]
1102       )],
1103       [c_cv_fp_layout_need_intswap="yes"],
1104       [c_cv_fp_layout_need_intswap="no"]
1105     )
1106   )
1107   if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1108     fp_layout_type="intswap"
1109   fi
1110 fi
1111
1112 if test "x$fp_layout_type" = "xnothing"; then
1113   AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1114   [Define if doubles are stored in x86 representation.])
1115 else if test "x$fp_layout_type" = "xendianflip"; then
1116   AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1117   [Define if endianflip is needed to convert to x86 representation.])
1118 else if test "x$fp_layout_type" = "xintswap"; then
1119   AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1120   [Define if intswap is needed to convert to x86 representation.])
1121 else
1122   AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1123 fi; fi; fi
1124
1125 # --with-useragent {{{
1126 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1127 [
1128     if test "x$withval" != "xno" && test "x$withval" != "xyes"
1129     then
1130         AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1131     fi
1132 ])
1133
1134 # }}}
1135
1136 have_getfsstat="no"
1137 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1138 have_getvfsstat="no"
1139 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1140 have_listmntent="no"
1141 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1142
1143 have_getmntent="no"
1144 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1145 if test "x$have_getmntent" = "xno"; then
1146         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1147 fi
1148 if test "x$have_getmntent" = "xno"; then
1149         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1150 fi
1151 if test "x$have_getmntent" = "xno"; then
1152         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1153 fi
1154
1155 if test "x$have_getmntent" = "xc"; then
1156         AC_CACHE_CHECK([whether getmntent takes one argument],
1157                 [c_cv_have_one_getmntent],
1158                 AC_COMPILE_IFELSE(
1159                         [AC_LANG_PROGRAM(
1160 [[[
1161 #include "$srcdir/src/utils_mount.h"
1162 ]]],
1163 [[[
1164 FILE *fh;
1165 struct mntent *me;
1166 fh = setmntent ("/etc/mtab", "r");
1167 me = getmntent (fh);
1168 ]]]
1169                         )],
1170                         [c_cv_have_one_getmntent="yes"],
1171                         [c_cv_have_one_getmntent="no"]
1172                 )
1173         )
1174         AC_CACHE_CHECK([whether getmntent takes two arguments],
1175                 [c_cv_have_two_getmntent],
1176                 AC_COMPILE_IFELSE(
1177                         [AC_LANG_PROGRAM(
1178 [[[
1179 #include "$srcdir/src/utils_mount.h"
1180 ]]],
1181 [[[
1182                                  FILE *fh;
1183                                  struct mnttab mt;
1184                                  int status;
1185                                  fh = fopen ("/etc/mnttab", "r");
1186                                  status = getmntent (fh, &mt);
1187 ]]]
1188                         )],
1189                         [c_cv_have_two_getmntent="yes"],
1190                         [c_cv_have_two_getmntent="no"]
1191                 )
1192         )
1193 fi
1194
1195 # Check for different versions of `getmntent' here..
1196
1197 if test "x$have_getmntent" = "xc"; then
1198         if test "x$c_cv_have_one_getmntent" = "xyes"; then
1199                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1200                           [Define if the function getmntent exists and takes one argument.])
1201         fi
1202         if test "x$c_cv_have_two_getmntent" = "xyes"; then
1203                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1204                           [Define if the function getmntent exists and takes two arguments.])
1205         fi
1206 fi
1207 if test "x$have_getmntent" = "xsun"; then
1208         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1209                   [Define if the function getmntent exists. It's the version from libsun.])
1210 fi
1211 if test "x$have_getmntent" = "xseq"; then
1212         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1213                   [Define if the function getmntent exists. It's the version from libseq.])
1214 fi
1215 if test "x$have_getmntent" = "xgen"; then
1216         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1217                   [Define if the function getmntent exists. It's the version from libgen.])
1218 fi
1219
1220 # Check for htonll
1221 AC_MSG_CHECKING([if have htonll defined])
1222
1223     have_htonll="no"
1224     AC_LINK_IFELSE([AC_LANG_PROGRAM(
1225 [[[
1226 #include <sys/types.h>
1227 #include <netinet/in.h>
1228 #if HAVE_INTTYPES_H
1229 # include <inttypes.h>
1230 #endif
1231 ]]],
1232 [[[
1233           return htonll(0);
1234 ]]]
1235     )],
1236     [
1237       have_htonll="yes"
1238       AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1239     ])
1240
1241 AC_MSG_RESULT([$have_htonll])
1242
1243 # Check for structures
1244 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1245         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1246         [],
1247         [
1248         #include <sys/types.h>
1249         #include <sys/socket.h>
1250         #include <net/if.h>
1251         ])
1252 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1253         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1254         [],
1255         [
1256         #include <sys/types.h>
1257         #include <sys/socket.h>
1258         #include <linux/if.h>
1259         #include <linux/netdevice.h>
1260         ])
1261
1262 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1263         [],
1264         [
1265         #include <netinet/in.h>
1266         #include <net/if.h>
1267         ])
1268
1269 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1270         [
1271                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1272                         [Define if struct kinfo_proc exists in the FreeBSD variant.])
1273                 have_struct_kinfo_proc_freebsd="yes"
1274         ],
1275         [
1276                 have_struct_kinfo_proc_freebsd="no"
1277         ],
1278         [
1279 #include <kvm.h>
1280 #include <sys/param.h>
1281 #include <sys/sysctl.h>
1282 #include <sys/user.h>
1283         ])
1284
1285 AC_CHECK_MEMBERS([struct kinfo_proc.kp_proc, struct kinfo_proc.kp_eproc],
1286         [
1287                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1288                         [Define if struct kinfo_proc exists in the OpenBSD variant.])
1289                 have_struct_kinfo_proc_openbsd="yes"
1290         ],
1291         [
1292                 have_struct_kinfo_proc_openbsd="no"
1293         ],
1294         [
1295 #include <sys/param.h>
1296 #include <sys/sysctl.h>
1297 #include <kvm.h>
1298         ])
1299
1300 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1301 [#define _BSD_SOURCE
1302 #if HAVE_STDINT_H
1303 # include <stdint.h>
1304 #endif
1305 #if HAVE_SYS_TYPES_H
1306 # include <sys/types.h>
1307 #endif
1308 #if HAVE_NETINET_IN_SYSTM_H
1309 # include <netinet/in_systm.h>
1310 #endif
1311 #if HAVE_NETINET_IN_H
1312 # include <netinet/in.h>
1313 #endif
1314 #if HAVE_NETINET_IP_H
1315 # include <netinet/ip.h>
1316 #endif
1317 #if HAVE_NETINET_UDP_H
1318 # include <netinet/udp.h>
1319 #endif
1320 ])
1321 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1322 [#define _BSD_SOURCE
1323 #if HAVE_STDINT_H
1324 # include <stdint.h>
1325 #endif
1326 #if HAVE_SYS_TYPES_H
1327 # include <sys/types.h>
1328 #endif
1329 #if HAVE_NETINET_IN_SYSTM_H
1330 # include <netinet/in_systm.h>
1331 #endif
1332 #if HAVE_NETINET_IN_H
1333 # include <netinet/in.h>
1334 #endif
1335 #if HAVE_NETINET_IP_H
1336 # include <netinet/ip.h>
1337 #endif
1338 #if HAVE_NETINET_UDP_H
1339 # include <netinet/udp.h>
1340 #endif
1341 ])
1342
1343 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1344         [],
1345         [],
1346         [
1347 #if HAVE_KSTAT_H
1348 # include <kstat.h>
1349 #endif
1350         ])
1351
1352 #
1353 # Checks for libraries begin here
1354 #
1355
1356 with_libresolv="yes"
1357 AC_CHECK_LIB(resolv, res_search,
1358 [
1359         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1360 ],
1361 [with_libresolv="no"])
1362 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1363
1364 dnl Check for HAL (hardware abstraction library)
1365 with_libhal="yes"
1366 AC_CHECK_LIB(hal,libhal_device_property_exists,
1367              [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1368              [with_libhal="no"])
1369 if test "x$with_libhal" = "xyes"; then
1370         if test "x$PKG_CONFIG" != "x"; then
1371                 BUILD_WITH_LIBHAL_CFLAGS="`pkg-config --cflags hal`"
1372                 BUILD_WITH_LIBHAL_LIBS="`pkg-config --libs hal`"
1373                 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1374                 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1375         fi
1376 fi
1377
1378 m4_divert_once([HELP_WITH], [
1379 collectd additional packages:])
1380
1381 AM_CONDITIONAL([BUILD_FREEBSD],[test "x$x$ac_system" = "xFreeBSD"])
1382
1383 AM_CONDITIONAL([BUILD_AIX],[test "x$x$ac_system" = "xAIX"])
1384
1385 if test "x$ac_system" = "xAIX"
1386 then
1387         with_perfstat="yes"
1388         with_procinfo="yes"
1389 else
1390         with_perfstat="no (AIX only)"
1391         with_procinfo="no (AIX only)"
1392 fi
1393
1394 if test "x$with_perfstat" = "xyes"
1395 then
1396         AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1397 #       AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1398 fi
1399 if test "x$with_perfstat" = "xyes"
1400 then
1401          AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1402          # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1403          AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1404          if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1405          then
1406                 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1407          fi
1408 fi
1409 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1410
1411 # Processes plugin under AIX.
1412 if test "x$with_procinfo" = "xyes"
1413 then
1414         AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1415 fi
1416 if test "x$with_procinfo" = "xyes"
1417 then
1418          AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1419 fi
1420
1421 if test "x$ac_system" = "xSolaris"
1422 then
1423         with_kstat="yes"
1424         with_devinfo="yes"
1425 else
1426         with_kstat="no (Solaris only)"
1427         with_devinfo="no (Solaris only)"
1428 fi
1429
1430 if test "x$with_kstat" = "xyes"
1431 then
1432         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1433 fi
1434 if test "x$with_kstat" = "xyes"
1435 then
1436         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1437         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1438 fi
1439 if test "x$with_kstat" = "xyes"
1440 then
1441         AC_DEFINE(HAVE_LIBKSTAT, 1,
1442                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1443 fi
1444 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1445 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1446
1447 with_libiokit="no"
1448 if test "x$ac_system" = "xDarwin"
1449 then
1450         with_libiokit="yes"
1451 else
1452         with_libiokit="no"
1453 fi
1454 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1455
1456 with_libkvm="no"
1457 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1458 if test "x$with_kvm_getprocs" = "xyes"
1459 then
1460         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1461                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1462         with_libkvm="yes"
1463 fi
1464 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1465
1466 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1467 if test "x$with_kvm_getswapinfo" = "xyes"
1468 then
1469         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1470                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1471         with_libkvm="yes"
1472 fi
1473 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1474
1475 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1476 if test "x$with_kvm_nlist" = "xyes"
1477 then
1478         AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1479         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1480                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1481         with_libkvm="yes"
1482 fi
1483 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1484
1485 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1486 if test "x$with_kvm_openfiles" = "xyes"
1487 then
1488         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1489                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1490         with_libkvm="yes"
1491 fi
1492 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1493
1494 # --with-libaquaero5 {{{
1495 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1496 [
1497  if test "x$withval" = "xyes"
1498  then
1499          with_libaquaero5="yes"
1500  else if test "x$withval" = "xno"
1501  then
1502          with_libaquaero5="no"
1503  else
1504          with_libaquaero5="yes"
1505          LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1506          LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1507  fi; fi
1508 ],
1509 [with_libaquaero5="yes"])
1510
1511 SAVE_CPPFLAGS="$CPPFLAGS"
1512 SAVE_LDFLAGS="$LDFLAGS"
1513
1514 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1515 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1516
1517 if test "x$with_libaquaero5" = "xyes"
1518 then
1519         if test "x$LIBAQUAERO5_CFLAGS" != "x"
1520         then
1521                 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1522         fi
1523         AC_CHECK_HEADERS(libaquaero5.h,
1524         [with_libaquaero5="yes"],
1525         [with_libaquaero5="no (libaquaero5.h not found)"])
1526 fi
1527 if test "x$with_libaquaero5" = "xyes"
1528 then
1529         if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1530         then
1531                 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1532         fi
1533         AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1534         [with_libaquaero5="yes"],
1535         [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1536 fi
1537
1538 CPPFLAGS="$SAVE_CPPFLAGS"
1539 LDFLAGS="$SAVE_LDFLAGS"
1540
1541 if test "x$with_libaquaero5" = "xyes"
1542 then
1543         BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1544         BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1545         AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1546         AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1547 fi
1548 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1549 # }}}
1550
1551 # --with-libcredis {{{
1552 AC_ARG_WITH(libcredis, [AS_HELP_STRING([--with-libcredis@<:@=PREFIX@:>@], [Path to libcredis.])],
1553 [
1554  if test "x$withval" = "xyes"
1555  then
1556          with_libcredis="yes"
1557  else if test "x$withval" = "xno"
1558  then
1559          with_libcredis="no"
1560  else
1561          with_libcredis="yes"
1562          LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS -I$withval/include"
1563          LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS -L$withval/lib"
1564  fi; fi
1565 ],
1566 [with_libcredis="yes"])
1567
1568 SAVE_CPPFLAGS="$CPPFLAGS"
1569 SAVE_LDFLAGS="$LDFLAGS"
1570
1571 CPPFLAGS="$CPPFLAGS $LIBCREDIS_CPPFLAGS"
1572 LDFLAGS="$LDFLAGS $LIBCREDIS_LDFLAGS"
1573
1574 if test "x$with_libcredis" = "xyes"
1575 then
1576         if test "x$LIBCREDIS_CPPFLAGS" != "x"
1577         then
1578                 AC_MSG_NOTICE([libcredis CPPFLAGS: $LIBCREDIS_CPPFLAGS])
1579         fi
1580         AC_CHECK_HEADERS(credis.h,
1581         [with_libcredis="yes"],
1582         [with_libcredis="no (credis.h not found)"])
1583 fi
1584 if test "x$with_libcredis" = "xyes"
1585 then
1586         if test "x$LIBCREDIS_LDFLAGS" != "x"
1587         then
1588                 AC_MSG_NOTICE([libcredis LDFLAGS: $LIBCREDIS_LDFLAGS])
1589         fi
1590         AC_CHECK_LIB(credis, credis_info,
1591         [with_libcredis="yes"],
1592         [with_libcredis="no (symbol 'credis_info' not found)"])
1593
1594 fi
1595
1596 CPPFLAGS="$SAVE_CPPFLAGS"
1597 LDFLAGS="$SAVE_LDFLAGS"
1598
1599 if test "x$with_libcredis" = "xyes"
1600 then
1601         BUILD_WITH_LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS"
1602         BUILD_WITH_LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS"
1603         AC_SUBST(BUILD_WITH_LIBCREDIS_CPPFLAGS)
1604         AC_SUBST(BUILD_WITH_LIBCREDIS_LDFLAGS)
1605 fi
1606 AM_CONDITIONAL(BUILD_WITH_LIBCREDIS, test "x$with_libcredis" = "xyes")
1607 # }}}
1608
1609 # --with-libcurl {{{
1610 with_curl_config="curl-config"
1611 with_curl_cflags=""
1612 with_curl_libs=""
1613 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1614 [
1615         if test "x$withval" = "xno"
1616         then
1617                 with_libcurl="no"
1618         else if test "x$withval" = "xyes"
1619         then
1620                 with_libcurl="yes"
1621         else
1622                 if test -f "$withval" && test -x "$withval"
1623                 then
1624                         with_curl_config="$withval"
1625                         with_libcurl="yes"
1626                 else if test -x "$withval/bin/curl-config"
1627                 then
1628                         with_curl_config="$withval/bin/curl-config"
1629                         with_libcurl="yes"
1630                 fi; fi
1631                 with_libcurl="yes"
1632         fi; fi
1633 ],
1634 [
1635         with_libcurl="yes"
1636 ])
1637 if test "x$with_libcurl" = "xyes"
1638 then
1639         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1640         curl_config_status=$?
1641
1642         if test $curl_config_status -ne 0
1643         then
1644                 with_libcurl="no ($with_curl_config failed)"
1645         else
1646                 SAVE_CPPFLAGS="$CPPFLAGS"
1647                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1648
1649                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1650
1651                 CPPFLAGS="$SAVE_CPPFLAGS"
1652         fi
1653 fi
1654 if test "x$with_libcurl" = "xyes"
1655 then
1656         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1657         curl_config_status=$?
1658
1659         if test $curl_config_status -ne 0
1660         then
1661                 with_libcurl="no ($with_curl_config failed)"
1662         else
1663                 AC_CHECK_LIB(curl, curl_easy_init,
1664                  [with_libcurl="yes"],
1665                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1666                  [$with_curl_libs])
1667         fi
1668 fi
1669 if test "x$with_libcurl" = "xyes"
1670 then
1671         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1672         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1673         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1674         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1675 fi
1676 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1677 # }}}
1678
1679 # --with-libdbi {{{
1680 with_libdbi_cppflags=""
1681 with_libdbi_ldflags=""
1682 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1683 [
1684         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1685         then
1686                 with_libdbi_cppflags="-I$withval/include"
1687                 with_libdbi_ldflags="-L$withval/lib"
1688                 with_libdbi="yes"
1689         else
1690                 with_libdbi="$withval"
1691         fi
1692 ],
1693 [
1694         with_libdbi="yes"
1695 ])
1696 if test "x$with_libdbi" = "xyes"
1697 then
1698         SAVE_CPPFLAGS="$CPPFLAGS"
1699         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1700
1701         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1702
1703         CPPFLAGS="$SAVE_CPPFLAGS"
1704 fi
1705 if test "x$with_libdbi" = "xyes"
1706 then
1707         SAVE_CPPFLAGS="$CPPFLAGS"
1708         SAVE_LDFLAGS="$LDFLAGS"
1709         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1710         LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1711
1712         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1713
1714         CPPFLAGS="$SAVE_CPPFLAGS"
1715         LDFLAGS="$SAVE_LDFLAGS"
1716 fi
1717 if test "x$with_libdbi" = "xyes"
1718 then
1719         BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1720         BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1721         BUILD_WITH_LIBDBI_LIBS="-ldbi"
1722         AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1723         AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1724         AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1725 fi
1726 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1727 # }}}
1728
1729 # --with-libesmtp {{{
1730 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1731 [
1732         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1733         then
1734                 LDFLAGS="$LDFLAGS -L$withval/lib"
1735                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1736                 with_libesmtp="yes"
1737         else
1738                 with_libesmtp="$withval"
1739         fi
1740 ],
1741 [
1742         with_libesmtp="yes"
1743 ])
1744 if test "x$with_libesmtp" = "xyes"
1745 then
1746         AC_CHECK_LIB(esmtp, smtp_create_session,
1747         [
1748                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1749         ], [with_libesmtp="no (libesmtp not found)"])
1750 fi
1751 if test "x$with_libesmtp" = "xyes"
1752 then
1753         AC_CHECK_HEADERS(libesmtp.h,
1754         [
1755                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1756         ], [with_libesmtp="no (libesmtp.h not found)"])
1757 fi
1758 if test "x$with_libesmtp" = "xyes"
1759 then
1760         collect_libesmtp=1
1761 else
1762         collect_libesmtp=0
1763 fi
1764 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1765         [Wether or not to use the esmtp library])
1766 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1767 # }}}
1768
1769 # --with-libganglia {{{
1770 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
1771 [
1772  if test -f "$withval" && test -x "$withval"
1773  then
1774          with_libganglia_config="$withval"
1775          with_libganglia="yes"
1776  else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
1777  then
1778          with_libganglia_config="$withval/bin/ganglia-config"
1779          with_libganglia="yes"
1780  else if test -d "$withval"
1781  then
1782          GANGLIA_CPPFLAGS="-I$withval/include"
1783          GANGLIA_LDFLAGS="-L$withval/lib"
1784          with_libganglia="yes"
1785  else
1786          with_libganglia_config="ganglia-config"
1787          with_libganglia="$withval"
1788  fi; fi; fi
1789 ],
1790 [
1791  with_libganglia_config="ganglia-config"
1792  with_libganglia="yes"
1793 ])
1794
1795 if test "x$with_libganglia" = "xyes" && test "x$with_libganglia_config" != "x"
1796 then
1797         if test "x$GANGLIA_CPPFLAGS" = "x"
1798         then
1799                 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
1800         fi
1801
1802         if test "x$GANGLIA_LDFLAGS" = "x"
1803         then
1804                 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
1805         fi
1806
1807         if test "x$GANGLIA_LIBS" = "x"
1808         then
1809                 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
1810         fi
1811 fi
1812
1813 SAVE_CPPFLAGS="$CPPFLAGS"
1814 SAVE_LDFLAGS="$LDFLAGS"
1815 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
1816 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
1817
1818 if test "x$with_libganglia" = "xyes"
1819 then
1820         AC_CHECK_HEADERS(gm_protocol.h,
1821         [
1822                 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
1823                           [Define to 1 if you have the <gm_protocol.h> header file.])
1824         ], [with_libganglia="no (gm_protocol.h not found)"])
1825 fi
1826
1827 if test "x$with_libganglia" = "xyes"
1828 then
1829         AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
1830         [
1831                 AC_DEFINE(HAVE_LIBGANGLIA, 1,
1832                           [Define to 1 if you have the ganglia library (-lganglia).])
1833         ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
1834 fi
1835
1836 CPPFLAGS="$SAVE_CPPFLAGS"
1837 LDFLAGS="$SAVE_LDFLAGS"
1838
1839 AC_SUBST(GANGLIA_CPPFLAGS)
1840 AC_SUBST(GANGLIA_LDFLAGS)
1841 AC_SUBST(GANGLIA_LIBS)
1842 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
1843 # }}}
1844
1845 # --with-libgcrypt {{{
1846 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
1847 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
1848 GCRYPT_LIBS="$GCRYPT_LIBS"
1849 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
1850 [
1851  if test -f "$withval" && test -x "$withval"
1852  then
1853          with_libgcrypt_config="$withval"
1854          with_libgcrypt="yes"
1855  else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
1856  then
1857          with_libgcrypt_config="$withval/bin/gcrypt-config"
1858          with_libgcrypt="yes"
1859  else if test -d "$withval"
1860  then
1861          GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
1862          GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
1863          with_libgcrypt="yes"
1864  else
1865          with_libgcrypt_config="gcrypt-config"
1866          with_libgcrypt="$withval"
1867  fi; fi; fi
1868 ],
1869 [
1870  with_libgcrypt_config="libgcrypt-config"
1871  with_libgcrypt="yes"
1872 ])
1873
1874 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
1875 then
1876         if test "x$GCRYPT_CPPFLAGS" = "x"
1877         then
1878                 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
1879         fi
1880
1881         if test "x$GCRYPT_LDFLAGS" = "x"
1882         then
1883                 gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null`
1884                 GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib"
1885         fi
1886
1887         if test "x$GCRYPT_LIBS" = "x"
1888         then
1889                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
1890         fi
1891 fi
1892
1893 SAVE_CPPFLAGS="$CPPFLAGS"
1894 SAVE_LDFLAGS="$LDFLAGS"
1895 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
1896 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
1897
1898 if test "x$with_libgcrypt" = "xyes"
1899 then
1900         if test "x$GCRYPT_CPPFLAGS" != "x"
1901         then
1902                 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
1903         fi
1904         AC_CHECK_HEADERS(gcrypt.h,
1905                 [with_libgcrypt="yes"],
1906                 [with_libgcrypt="no (gcrypt.h not found)"])
1907 fi
1908
1909 if test "x$with_libgcrypt" = "xyes"
1910 then
1911         if test "x$GCRYPT_LDFLAGS" != "x"
1912         then
1913                 AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS])
1914         fi
1915         AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
1916                 [with_libgcrypt="yes"],
1917                 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
1918
1919         if test "$with_libgcrypt" != "no"; then
1920                 AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")
1921                 GCRYPT_CPPFLAGS="$LIBGCRYPT_CPPFLAGS $LIBGCRYPT_CFLAGS"
1922                 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
1923         fi
1924 fi
1925
1926 CPPFLAGS="$SAVE_CPPFLAGS"
1927 LDFLAGS="$SAVE_LDFLAGS"
1928
1929 if test "x$with_libgcrypt" = "xyes"
1930 then
1931         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
1932 fi
1933
1934 AC_SUBST(GCRYPT_CPPFLAGS)
1935 AC_SUBST(GCRYPT_LDFLAGS)
1936 AC_SUBST(GCRYPT_LIBS)
1937 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
1938 # }}}
1939
1940 # --with-libiptc {{{
1941 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1942 [
1943         if test "x$withval" = "xyes"
1944         then
1945                 with_libiptc="pkgconfig"
1946         else if test "x$withval" = "xno"
1947         then
1948                 with_libiptc="no"
1949         else
1950                 with_libiptc="yes"
1951                 with_libiptc_cflags="-I$withval/include"
1952                 with_libiptc_libs="-L$withval/lib"
1953         fi; fi
1954 ],
1955 [
1956         if test "x$ac_system" = "xLinux"
1957         then
1958                 with_libiptc="pkgconfig"
1959         else
1960                 with_libiptc="no (Linux only)"
1961         fi
1962 ])
1963
1964 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
1965 then
1966         with_libiptc="no (Don't have pkg-config)"
1967 fi
1968
1969 if test "x$with_libiptc" = "xpkgconfig"
1970 then
1971         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
1972         if test $? -ne 0
1973         then
1974                 with_libiptc="no (pkg-config doesn't know libiptc)"
1975         fi
1976 fi
1977 if test "x$with_libiptc" = "xpkgconfig"
1978 then
1979         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
1980         if test $? -ne 0
1981         then
1982                 with_libiptc="no ($PKG_CONFIG failed)"
1983         fi
1984         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
1985         if test $? -ne 0
1986         then
1987                 with_libiptc="no ($PKG_CONFIG failed)"
1988         fi
1989 fi
1990
1991 SAVE_CPPFLAGS="$CPPFLAGS"
1992 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
1993
1994 # check whether the header file for libiptc is available.
1995 if test "x$with_libiptc" = "xpkgconfig"
1996 then
1997         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
1998                         [with_libiptc="no (header file missing)"])
1999 fi
2000 # If the header file is available, check for the required type declaractions.
2001 # They may be missing in old versions of libiptc. In that case, they will be
2002 # declared in the iptables plugin.
2003 if test "x$with_libiptc" = "xpkgconfig"
2004 then
2005         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2006 fi
2007 # Check for the iptc_init symbol in the library.
2008 # This could be in iptc or ip4tc
2009 if test "x$with_libiptc" = "xpkgconfig"
2010 then
2011         SAVE_LIBS="$LIBS"
2012         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2013                         [with_libiptc="pkgconfig"],
2014                         [with_libiptc="no"],
2015                         [$with_libiptc_libs])
2016         LIBS="$SAVE_LIBS"
2017 fi
2018 if test "x$with_libiptc" = "xpkgconfig"
2019 then
2020         with_libiptc="yes"
2021 fi
2022
2023 CPPFLAGS="$SAVE_CPPFLAGS"
2024
2025 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2026 if test "x$with_libiptc" = "xyes"
2027 then
2028         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2029         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2030         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2031         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2032 fi
2033 # }}}
2034
2035 # --with-java {{{
2036 with_java_home="$JAVA_HOME"
2037 with_java_vmtype="client"
2038 with_java_cflags=""
2039 with_java_libs=""
2040 JAVAC="$JAVAC"
2041 JAR="$JAR"
2042 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2043 [
2044         if test "x$withval" = "xno"
2045         then
2046                 with_java="no"
2047         else if test "x$withval" = "xyes"
2048         then
2049                 with_java="yes"
2050         else
2051                 with_java_home="$withval"
2052                 with_java="yes"
2053         fi; fi
2054 ],
2055 [with_java="yes"])
2056 if test "x$with_java" = "xyes"
2057 then
2058         if test -d "$with_java_home"
2059         then
2060                 AC_MSG_CHECKING([for jni.h])
2061                 TMPVAR=`find "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2062                 if test "x$TMPVAR" != "x"
2063                 then
2064                         AC_MSG_RESULT([found in $TMPVAR])
2065                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2066                 else
2067                         AC_MSG_RESULT([not found])
2068                 fi
2069
2070                 AC_MSG_CHECKING([for jni_md.h])
2071                 TMPVAR=`find "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2072                 if test "x$TMPVAR" != "x"
2073                 then
2074                         AC_MSG_RESULT([found in $TMPVAR])
2075                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2076                 else
2077                         AC_MSG_RESULT([not found])
2078                 fi
2079
2080                 AC_MSG_CHECKING([for libjvm.so])
2081                 TMPVAR=`find "$with_java_home" -name libjvm.so -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2082                 if test "x$TMPVAR" != "x"
2083                 then
2084                         AC_MSG_RESULT([found in $TMPVAR])
2085                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2086                 else
2087                         AC_MSG_RESULT([not found])
2088                 fi
2089
2090                 if test "x$JAVAC" = "x"
2091                 then
2092                         AC_MSG_CHECKING([for javac])
2093                         TMPVAR=`find "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2094                         if test "x$TMPVAR" != "x"
2095                         then
2096                                 JAVAC="$TMPVAR"
2097                                 AC_MSG_RESULT([$JAVAC])
2098                         else
2099                                 AC_MSG_RESULT([not found])
2100                         fi
2101                 fi
2102                 if test "x$JAR" = "x"
2103                 then
2104                         AC_MSG_CHECKING([for jar])
2105                         TMPVAR=`find "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2106                         if test "x$TMPVAR" != "x"
2107                         then
2108                                 JAR="$TMPVAR"
2109                                 AC_MSG_RESULT([$JAR])
2110                         else
2111                                 AC_MSG_RESULT([not found])
2112                         fi
2113                 fi
2114         else if test "x$with_java_home" != "x"
2115         then
2116                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2117         fi; fi
2118 fi
2119
2120 if test "x$JAVA_CPPFLAGS" != "x"
2121 then
2122         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2123 fi
2124 if test "x$JAVA_CFLAGS" != "x"
2125 then
2126         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2127 fi
2128 if test "x$JAVA_LDFLAGS" != "x"
2129 then
2130         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2131 fi
2132 if test "x$JAVAC" = "x"
2133 then
2134         with_javac_path="$PATH"
2135         if test "x$with_java_home" != "x"
2136         then
2137                 with_javac_path="$with_java_home:with_javac_path"
2138                 if test -d "$with_java_home/bin"
2139                 then
2140                         with_javac_path="$with_java_home/bin:with_javac_path"
2141                 fi
2142         fi
2143
2144         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2145 fi
2146 if test "x$JAVAC" = "x"
2147 then
2148         with_java="no (javac not found)"
2149 fi
2150 if test "x$JAR" = "x"
2151 then
2152         with_jar_path="$PATH"
2153         if test "x$with_java_home" != "x"
2154         then
2155                 with_jar_path="$with_java_home:$with_jar_path"
2156                 if test -d "$with_java_home/bin"
2157                 then
2158                         with_jar_path="$with_java_home/bin:$with_jar_path"
2159                 fi
2160         fi
2161
2162         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2163 fi
2164 if test "x$JAR" = "x"
2165 then
2166         with_java="no (jar not found)"
2167 fi
2168
2169 SAVE_CPPFLAGS="$CPPFLAGS"
2170 SAVE_CFLAGS="$CFLAGS"
2171 SAVE_LDFLAGS="$LDFLAGS"
2172 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2173 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2174 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2175
2176 if test "x$with_java" = "xyes"
2177 then
2178         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2179 fi
2180 if test "x$with_java" = "xyes"
2181 then
2182         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2183         [with_java="yes"],
2184         [with_java="no (libjvm not found)"],
2185         [$JAVA_LIBS])
2186 fi
2187 if test "x$with_java" = "xyes"
2188 then
2189         JAVA_LIBS="$JAVA_LIBS -ljvm"
2190         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2191 fi
2192
2193 CPPFLAGS="$SAVE_CPPFLAGS"
2194 CFLAGS="$SAVE_CFLAGS"
2195 LDFLAGS="$SAVE_LDFLAGS"
2196
2197 AC_SUBST(JAVA_CPPFLAGS)
2198 AC_SUBST(JAVA_CFLAGS)
2199 AC_SUBST(JAVA_LDFLAGS)
2200 AC_SUBST(JAVA_LIBS)
2201 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2202 # }}}
2203
2204 # --with-liblvm2app {{{
2205 with_liblvm2app_cppflags=""
2206 with_liblvm2app_ldflags=""
2207 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2208 [
2209         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2210         then
2211                 with_liblvm2app_cppflags="-I$withval/include"
2212                 with_liblvm2app_ldflags="-L$withval/lib"
2213                 with_liblvm2app="yes"
2214         else
2215                 with_liblvm2app="$withval"
2216         fi
2217 ],
2218 [
2219         with_liblvm2app="yes"
2220 ])
2221 if test "x$with_liblvm2app" = "xyes"
2222 then
2223         SAVE_CPPFLAGS="$CPPFLAGS"
2224         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2225
2226         AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2227
2228         CPPFLAGS="$SAVE_CPPFLAGS"
2229 fi
2230
2231 if test "x$with_liblvm2app" = "xyes"
2232 then
2233         SAVE_CPPFLAGS="$CPPFLAGS"
2234         SAVE_LDFLAGS="$LDFLAGS"
2235         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2236         LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2237
2238         AC_CHECK_LIB(lvm2app, lvm_init, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_init' not found)"])
2239
2240         CPPFLAGS="$SAVE_CPPFLAGS"
2241         LDFLAGS="$SAVE_LDFLAGS"
2242 fi
2243 if test "x$with_liblvm2app" = "xyes"
2244 then
2245         BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2246         BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2247         BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2248         AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2249         AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2250         AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2251         AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2252 fi
2253 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2254 # }}}
2255
2256 # --with-libmemcached {{{
2257 with_libmemcached_cppflags=""
2258 with_libmemcached_ldflags=""
2259 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2260 [
2261         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2262         then
2263                 with_libmemcached_cppflags="-I$withval/include"
2264                 with_libmemcached_ldflags="-L$withval/lib"
2265                 with_libmemcached="yes"
2266         else
2267                 with_libmemcached="$withval"
2268         fi
2269 ],
2270 [
2271         with_libmemcached="yes"
2272 ])
2273 if test "x$with_libmemcached" = "xyes"
2274 then
2275         SAVE_CPPFLAGS="$CPPFLAGS"
2276         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2277
2278         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2279
2280         CPPFLAGS="$SAVE_CPPFLAGS"
2281 fi
2282 if test "x$with_libmemcached" = "xyes"
2283 then
2284         SAVE_CPPFLAGS="$CPPFLAGS"
2285         SAVE_LDFLAGS="$LDFLAGS"
2286         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2287         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2288
2289         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2290
2291         CPPFLAGS="$SAVE_CPPFLAGS"
2292         LDFLAGS="$SAVE_LDFLAGS"
2293 fi
2294 if test "x$with_libmemcached" = "xyes"
2295 then
2296         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2297         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2298         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2299         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2300         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2301         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2302         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2303 fi
2304 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2305 # }}}
2306
2307 # --with-libmodbus {{{
2308 with_libmodbus_config=""
2309 with_libmodbus_cflags=""
2310 with_libmodbus_libs=""
2311 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2312 [
2313         if test "x$withval" = "xno"
2314         then
2315                 with_libmodbus="no"
2316         else if test "x$withval" = "xyes"
2317         then
2318                 with_libmodbus="use_pkgconfig"
2319         else if test -d "$with_libmodbus/lib"
2320         then
2321                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2322                 with_libmodbus_cflags="-I$withval/include"
2323                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2324                 with_libmodbus="yes"
2325         fi; fi; fi
2326 ],
2327 [with_libmodbus="use_pkgconfig"])
2328
2329 # configure using pkg-config
2330 if test "x$with_libmodbus" = "xuse_pkgconfig"
2331 then
2332         if test "x$PKG_CONFIG" = "x"
2333         then
2334                 with_libmodbus="no (Don't have pkg-config)"
2335         fi
2336 fi
2337 if test "x$with_libmodbus" = "xuse_pkgconfig"
2338 then
2339         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2340         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2341         if test $? -ne 0
2342         then
2343                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2344         fi
2345 fi
2346 if test "x$with_libmodbus" = "xuse_pkgconfig"
2347 then
2348         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2349         if test $? -ne 0
2350         then
2351                 with_libmodbus="no ($PKG_CONFIG failed)"
2352         fi
2353         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2354         if test $? -ne 0
2355         then
2356                 with_libmodbus="no ($PKG_CONFIG failed)"
2357         fi
2358 fi
2359 if test "x$with_libmodbus" = "xuse_pkgconfig"
2360 then
2361         with_libmodbus="yes"
2362 fi
2363
2364 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2365 # the actual checks.
2366 if test "x$with_libmodbus" = "xyes"
2367 then
2368         SAVE_CPPFLAGS="$CPPFLAGS"
2369         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2370
2371         AC_CHECK_HEADERS(modbus/modbus.h, [], [with_libmodbus="no (modbus/modbus.h not found)"])
2372
2373         CPPFLAGS="$SAVE_CPPFLAGS"
2374 fi
2375 if test "x$with_libmodbus" = "xyes"
2376 then
2377         SAVE_CPPFLAGS="$CPPFLAGS"
2378         SAVE_LDFLAGS="$LDFLAGS"
2379
2380         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2381         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2382
2383         AC_CHECK_LIB(modbus, modbus_connect,
2384                      [with_libmodbus="yes"],
2385                      [with_libmodbus="no (symbol modbus_connect not found)"])
2386
2387         CPPFLAGS="$SAVE_CPPFLAGS"
2388         LDFLAGS="$SAVE_LDFLAGS"
2389 fi
2390 if test "x$with_libmodbus" = "xyes"
2391 then
2392         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2393         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2394         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2395         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2396 fi
2397 # }}}
2398
2399 # --with-libmongoc {{{
2400 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2401 [
2402  if test "x$withval" = "xyes"
2403  then
2404          with_libmongoc="yes"
2405  else if test "x$withval" = "xno"
2406  then
2407          with_libmongoc="no"
2408  else
2409          with_libmongoc="yes"
2410          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2411          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2412  fi; fi
2413 ],
2414 [with_libmongoc="yes"])
2415
2416 SAVE_CPPFLAGS="$CPPFLAGS"
2417 SAVE_LDFLAGS="$LDFLAGS"
2418
2419 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2420 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2421
2422 if test "x$with_libmongoc" = "xyes"
2423 then
2424         if test "x$LIBMONGOC_CPPFLAGS" != "x"
2425         then
2426                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2427         fi
2428         AC_CHECK_HEADERS(mongo.h,
2429         [with_libmongoc="yes"],
2430         [with_libmongoc="no ('mongo.h' not found)"],
2431 [#if HAVE_STDINT_H
2432 # define MONGO_HAVE_STDINT 1
2433 #else
2434 # define MONGO_USE_LONG_LONG_INT 1
2435 #endif
2436 ])
2437 fi
2438 if test "x$with_libmongoc" = "xyes"
2439 then
2440         if test "x$LIBMONGOC_LDFLAGS" != "x"
2441         then
2442                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2443         fi
2444         AC_CHECK_LIB(mongoc, mongo_run_command,
2445         [with_libmongoc="yes"],
2446         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2447 fi
2448
2449 CPPFLAGS="$SAVE_CPPFLAGS"
2450 LDFLAGS="$SAVE_LDFLAGS"
2451
2452 if test "x$with_libmongoc" = "xyes"
2453 then
2454         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2455         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2456         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2457         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2458 fi
2459 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2460 # }}}
2461
2462 # --with-libmysql {{{
2463 with_mysql_config="mysql_config"
2464 with_mysql_cflags=""
2465 with_mysql_libs=""
2466 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2467 [
2468         if test "x$withval" = "xno"
2469         then
2470                 with_libmysql="no"
2471         else if test "x$withval" = "xyes"
2472         then
2473                 with_libmysql="yes"
2474         else
2475                 if test -f "$withval" && test -x "$withval";
2476                 then
2477                         with_mysql_config="$withval"
2478                 else if test -x "$withval/bin/mysql_config"
2479                 then
2480                         with_mysql_config="$withval/bin/mysql_config"
2481                 fi; fi
2482                 with_libmysql="yes"
2483         fi; fi
2484 ],
2485 [
2486         with_libmysql="yes"
2487 ])
2488 if test "x$with_libmysql" = "xyes"
2489 then
2490         with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
2491         mysql_config_status=$?
2492
2493         if test $mysql_config_status -ne 0
2494         then
2495                 with_libmysql="no ($with_mysql_config failed)"
2496         else
2497                 SAVE_CPPFLAGS="$CPPFLAGS"
2498                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2499
2500                 have_mysql_h="no"
2501                 have_mysql_mysql_h="no"
2502                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2503
2504                 if test "x$have_mysql_h" = "xno"
2505                 then
2506                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2507                 fi
2508
2509                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2510                 then
2511                         with_libmysql="no (mysql.h not found)"
2512                 fi
2513
2514                 CPPFLAGS="$SAVE_CPPFLAGS"
2515         fi
2516 fi
2517 if test "x$with_libmysql" = "xyes"
2518 then
2519         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2520         mysql_config_status=$?
2521
2522         if test $mysql_config_status -ne 0
2523         then
2524                 with_libmysql="no ($with_mysql_config failed)"
2525         else
2526                 AC_CHECK_LIB(mysqlclient, mysql_init,
2527                  [with_libmysql="yes"],
2528                  [with_libmysql="no (symbol 'mysql_init' not found)"],
2529                  [$with_mysql_libs])
2530
2531                 AC_CHECK_LIB(mysqlclient, mysql_get_server_version,
2532                  [with_libmysql="yes"],
2533                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2534                  [$with_mysql_libs])
2535         fi
2536 fi
2537 if test "x$with_libmysql" = "xyes"
2538 then
2539         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2540         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2541         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2542         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
2543 fi
2544 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
2545 # }}}
2546
2547 # --with-libmnl {{{
2548 with_libmnl_cflags=""
2549 with_libmnl_libs=""
2550 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
2551 [
2552  echo "libmnl: withval = $withval"
2553  if test "x$withval" = "xyes"
2554  then
2555          with_libmnl="yes"
2556  else if test "x$withval" = "xno"
2557  then
2558          with_libmnl="no"
2559  else
2560          if test -d "$withval/include"
2561          then
2562                  with_libmnl_cflags="-I$withval/include"
2563                  with_libmnl_libs="-L$withval/lib -lmnl"
2564                  with_libmnl="yes"
2565          else
2566                  AC_MSG_ERROR("no such directory: $withval/include")
2567          fi
2568  fi; fi
2569 ],
2570 [
2571  if test "x$ac_system" = "xLinux"
2572  then
2573          with_libmnl="yes"
2574  else
2575          with_libmnl="no (Linux only library)"
2576  fi
2577 ])
2578 if test "x$PKG_CONFIG" = "x"
2579 then
2580         with_libmnl="no (Don't have pkg-config)"
2581 fi
2582 if test "x$with_libmnl" = "xyes"
2583 then
2584         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
2585           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
2586           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
2587         fi
2588
2589         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
2590         [
2591          with_libmnl="yes"
2592          break
2593         ], [],
2594 [#include <stdio.h>
2595 #include <sys/types.h>
2596 #include <asm/types.h>
2597 #include <sys/socket.h>
2598 #include <linux/netlink.h>
2599 #include <linux/rtnetlink.h>])
2600         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2601 [#include <stdio.h>
2602 #include <sys/types.h>
2603 #include <asm/types.h>
2604 #include <sys/socket.h>])
2605
2606         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2607 [[
2608 #include <stdio.h>
2609 #include <sys/types.h>
2610 #include <asm/types.h>
2611 #include <sys/socket.h>
2612 #include <linux/netlink.h>
2613 #include <linux/rtnetlink.h>
2614 ]],
2615 [[
2616 int retval = TCA_STATS2;
2617 return (retval);
2618 ]]
2619         )],
2620         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2621
2622         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2623 [[
2624 #include <stdio.h>
2625 #include <sys/types.h>
2626 #include <asm/types.h>
2627 #include <sys/socket.h>
2628 #include <linux/netlink.h>
2629 #include <linux/rtnetlink.h>
2630 ]],
2631 [[
2632 int retval = TCA_STATS;
2633 return (retval);
2634 ]]
2635         )],
2636         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
2637 fi
2638 if test "x$with_libmnl" = "xyes"
2639 then
2640         AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
2641         [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
2642         [],
2643         [
2644         #include <linux/if_link.h>
2645         ])
2646 fi
2647 if test "x$with_libmnl" = "xyes"
2648 then
2649         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
2650                      [with_libmnl="yes"],
2651                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
2652                      [$with_libmnl_libs])
2653 fi
2654 if test "x$with_libmnl" = "xyes"
2655 then
2656         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
2657         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
2658         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
2659         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
2660         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
2661 fi
2662 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
2663 # }}}
2664
2665 # --with-libnetapp {{{
2666 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2667 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
2668 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
2669 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2670 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2671 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2672 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2673 [
2674  if test -d "$withval"
2675  then
2676          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2677          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2678          with_libnetapp="yes"
2679  else
2680          with_libnetapp="$withval"
2681  fi
2682 ],
2683 [
2684  with_libnetapp="yes"
2685 ])
2686
2687 SAVE_CPPFLAGS="$CPPFLAGS"
2688 SAVE_LDFLAGS="$LDFLAGS"
2689 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2690 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2691
2692 if test "x$with_libnetapp" = "xyes"
2693 then
2694         if test "x$LIBNETAPP_CPPFLAGS" != "x"
2695         then
2696                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2697         fi
2698         AC_CHECK_HEADERS(netapp_api.h,
2699                 [with_libnetapp="yes"],
2700                 [with_libnetapp="no (netapp_api.h not found)"])
2701 fi
2702
2703 if test "x$with_libnetapp" = "xyes"
2704 then
2705         if test "x$LIBNETAPP_LDFLAGS" != "x"
2706         then
2707                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2708         fi
2709
2710         if test "x$LIBNETAPP_LIBS" = "x"
2711         then
2712                 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
2713         fi
2714         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2715
2716         AC_CHECK_LIB(netapp, na_server_invoke_elem,
2717                 [with_libnetapp="yes"],
2718                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2719                 [$LIBNETAPP_LIBS])
2720         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
2721 fi
2722
2723 CPPFLAGS="$SAVE_CPPFLAGS"
2724 LDFLAGS="$SAVE_LDFLAGS"
2725
2726 if test "x$with_libnetapp" = "xyes"
2727 then
2728         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
2729 fi
2730
2731 AC_SUBST(LIBNETAPP_CPPFLAGS)
2732 AC_SUBST(LIBNETAPP_LDFLAGS)
2733 AC_SUBST(LIBNETAPP_LIBS)
2734 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
2735 # }}}
2736
2737 # --with-libnetsnmp {{{
2738 with_snmp_config="net-snmp-config"
2739 with_snmp_cflags=""
2740 with_snmp_libs=""
2741 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
2742 [
2743         if test "x$withval" = "xno"
2744         then
2745                 with_libnetsnmp="no"
2746         else if test "x$withval" = "xyes"
2747         then
2748                 with_libnetsnmp="yes"
2749         else
2750                 if test -x "$withval"
2751                 then
2752                         with_snmp_config="$withval"
2753                         with_libnetsnmp="yes"
2754                 else
2755                         with_snmp_config="$withval/bin/net-snmp-config"
2756                         with_libnetsnmp="yes"
2757                 fi
2758         fi; fi
2759 ],
2760 [with_libnetsnmp="yes"])
2761 if test "x$with_libnetsnmp" = "xyes"
2762 then
2763         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
2764         snmp_config_status=$?
2765
2766         if test $snmp_config_status -ne 0
2767         then
2768                 with_libnetsnmp="no ($with_snmp_config failed)"
2769         else
2770                 SAVE_CPPFLAGS="$CPPFLAGS"
2771                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
2772
2773                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
2774
2775                 CPPFLAGS="$SAVE_CPPFLAGS"
2776         fi
2777 fi
2778 if test "x$with_libnetsnmp" = "xyes"
2779 then
2780         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
2781         snmp_config_status=$?
2782
2783         if test $snmp_config_status -ne 0
2784         then
2785                 with_libnetsnmp="no ($with_snmp_config failed)"
2786         else
2787                 AC_CHECK_LIB(netsnmp, init_snmp,
2788                 [with_libnetsnmp="yes"],
2789                 [with_libnetsnmp="no (libnetsnmp not found)"],
2790                 [$with_snmp_libs])
2791         fi
2792 fi
2793 if test "x$with_libnetsnmp" = "xyes"
2794 then
2795         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
2796         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
2797         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
2798         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
2799 fi
2800 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
2801 # }}}
2802
2803 # --with-liboconfig {{{
2804 with_own_liboconfig="no"
2805 liboconfig_LDFLAGS="$LDFLAGS"
2806 liboconfig_CPPFLAGS="$CPPFLAGS"
2807 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
2808 [
2809         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2810         then
2811                 if test -d "$withval/lib"
2812                 then
2813                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
2814                 fi
2815                 if test -d "$withval/include"
2816                 then
2817                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
2818                 fi
2819         fi
2820         if test "x$withval" = "xno"
2821         then
2822                 AC_MSG_ERROR("liboconfig is required")
2823         fi
2824 ],
2825 [
2826         with_liboconfig="yes"
2827 ])
2828
2829 save_LDFLAGS="$LDFLAGS"
2830 save_CPPFLAGS="$CPPFLAGS"
2831 LDFLAGS="$liboconfig_LDFLAGS"
2832 CPPFLAGS="$liboconfig_CPPFLAGS"
2833 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
2834 [
2835         with_liboconfig="yes"
2836         with_own_liboconfig="no"
2837 ],
2838 [
2839         with_liboconfig="yes"
2840         with_own_liboconfig="yes"
2841         LDFLAGS="$save_LDFLAGS"
2842         CPPFLAGS="$save_CPPFLAGS"
2843 ])
2844
2845 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
2846 if test "x$with_own_liboconfig" = "xyes"
2847 then
2848         with_liboconfig="yes (shipped version)"
2849 fi
2850 # }}}
2851
2852 # --with-liboping {{{
2853 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
2854 [
2855  if test "x$withval" = "xyes"
2856  then
2857          with_liboping="yes"
2858  else if test "x$withval" = "xno"
2859  then
2860          with_liboping="no"
2861  else
2862          with_liboping="yes"
2863          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
2864          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
2865  fi; fi
2866 ],
2867 [with_liboping="yes"])
2868
2869 SAVE_CPPFLAGS="$CPPFLAGS"
2870 SAVE_LDFLAGS="$LDFLAGS"
2871
2872 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
2873 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
2874
2875 if test "x$with_liboping" = "xyes"
2876 then
2877         if test "x$LIBOPING_CPPFLAGS" != "x"
2878         then
2879                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
2880         fi
2881         AC_CHECK_HEADERS(oping.h,
2882         [with_liboping="yes"],
2883         [with_liboping="no (oping.h not found)"])
2884 fi
2885 if test "x$with_liboping" = "xyes"
2886 then
2887         if test "x$LIBOPING_LDFLAGS" != "x"
2888         then
2889                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
2890         fi
2891         AC_CHECK_LIB(oping, ping_construct,
2892         [with_liboping="yes"],
2893         [with_liboping="no (symbol 'ping_construct' not found)"])
2894 fi
2895
2896 CPPFLAGS="$SAVE_CPPFLAGS"
2897 LDFLAGS="$SAVE_LDFLAGS"
2898
2899 if test "x$with_liboping" = "xyes"
2900 then
2901         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
2902         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
2903         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
2904         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
2905 fi
2906 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
2907 # }}}
2908
2909 # --with-oracle {{{
2910 with_oracle_cppflags=""
2911 with_oracle_libs=""
2912 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
2913 [
2914         if test "x$withval" = "xyes"
2915         then
2916                 if test "x$ORACLE_HOME" = "x"
2917                 then
2918                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
2919                 fi
2920                 with_oracle="yes"
2921         else if test "x$withval" = "xno"
2922         then
2923                 with_oracle="no"
2924         else
2925                 with_oracle="yes"
2926                 ORACLE_HOME="$withval"
2927         fi; fi
2928 ],
2929 [
2930         if test "x$ORACLE_HOME" = "x"
2931         then
2932                 with_oracle="no (ORACLE_HOME is not set)"
2933         else
2934                 with_oracle="yes"
2935         fi
2936 ])
2937 if test "x$ORACLE_HOME" != "x"
2938 then
2939         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
2940
2941         if test -e "$ORACLE_HOME/lib/ldflags"
2942         then
2943                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
2944         fi
2945         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
2946         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
2947 fi
2948 if test "x$with_oracle" = "xyes"
2949 then
2950         SAVE_CPPFLAGS="$CPPFLAGS"
2951         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2952
2953         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
2954
2955         CPPFLAGS="$SAVE_CPPFLAGS"
2956 fi
2957 if test "x$with_oracle" = "xyes"
2958 then
2959         SAVE_CPPFLAGS="$CPPFLAGS"
2960         SAVE_LIBS="$LIBS"
2961         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2962         LIBS="$LIBS $with_oracle_libs"
2963
2964         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
2965
2966         CPPFLAGS="$SAVE_CPPFLAGS"
2967         LIBS="$SAVE_LIBS"
2968 fi
2969 if test "x$with_oracle" = "xyes"
2970 then
2971         BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
2972         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
2973         AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
2974         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
2975 fi
2976 # }}}
2977
2978 # --with-libowcapi {{{
2979 with_libowcapi_cppflags=""
2980 with_libowcapi_libs="-lowcapi"
2981 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
2982 [
2983         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2984         then
2985                 with_libowcapi_cppflags="-I$withval/include"
2986                 with_libowcapi_libs="-L$withval/lib -lowcapi"
2987                 with_libowcapi="yes"
2988         else
2989                 with_libowcapi="$withval"
2990         fi
2991 ],
2992 [
2993         with_libowcapi="yes"
2994 ])
2995 if test "x$with_libowcapi" = "xyes"
2996 then
2997         SAVE_CPPFLAGS="$CPPFLAGS"
2998         CPPFLAGS="$with_libowcapi_cppflags"
2999
3000         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3001
3002         CPPFLAGS="$SAVE_CPPFLAGS"
3003 fi
3004 if test "x$with_libowcapi" = "xyes"
3005 then
3006         SAVE_LDFLAGS="$LDFLAGS"
3007         SAVE_CPPFLAGS="$CPPFLAGS"
3008         LDFLAGS="$with_libowcapi_libs"
3009         CPPFLAGS="$with_libowcapi_cppflags"
3010
3011         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3012
3013         LDFLAGS="$SAVE_LDFLAGS"
3014         CPPFLAGS="$SAVE_CPPFLAGS"
3015 fi
3016 if test "x$with_libowcapi" = "xyes"
3017 then
3018         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3019         BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
3020         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3021         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3022 fi
3023 # }}}
3024
3025 # --with-libpcap {{{
3026 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3027 [
3028         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3029         then
3030                 LDFLAGS="$LDFLAGS -L$withval/lib"
3031                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3032                 with_libpcap="yes"
3033         else
3034                 with_libpcap="$withval"
3035         fi
3036 ],
3037 [
3038         with_libpcap="yes"
3039 ])
3040 if test "x$with_libpcap" = "xyes"
3041 then
3042         AC_CHECK_LIB(pcap, pcap_open_live,
3043         [
3044                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3045         ], [with_libpcap="no (libpcap not found)"])
3046 fi
3047 if test "x$with_libpcap" = "xyes"
3048 then
3049         AC_CHECK_HEADERS(pcap.h,,
3050                          [with_libpcap="no (pcap.h not found)"])
3051 fi
3052 if test "x$with_libpcap" = "xyes"
3053 then
3054         AC_CHECK_HEADERS(pcap-bpf.h,,
3055                          [with_libpcap="no (pcap-bpf.h not found)"])
3056 fi
3057 if test "x$with_libpcap" = "xyes"
3058 then
3059         AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3060                        [c_cv_libpcap_have_pcap_error_iface_not_up],
3061                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3062 [[[
3063 #include <pcap.h>
3064 ]]],
3065 [[[
3066   int val = PCAP_ERROR_IFACE_NOT_UP;
3067 ]]]
3068                        )],
3069                        [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3070                        [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3071 fi
3072 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3073 then
3074                 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3075 fi
3076 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3077 # }}}
3078
3079 # --with-libperl {{{
3080 perl_interpreter="perl"
3081 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3082 [
3083         if test -f "$withval" && test -x "$withval"
3084         then
3085                 perl_interpreter="$withval"
3086                 with_libperl="yes"
3087         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3088         then
3089                 LDFLAGS="$LDFLAGS -L$withval/lib"
3090                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3091                 perl_interpreter="$withval/bin/perl"
3092                 with_libperl="yes"
3093         else
3094                 with_libperl="$withval"
3095         fi; fi
3096 ],
3097 [
3098         with_libperl="yes"
3099 ])
3100
3101 AC_MSG_CHECKING([for perl])
3102 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3103 if test -x "$perl_interpreter"
3104 then
3105         AC_MSG_RESULT([yes ($perl_interpreter)])
3106 else
3107         perl_interpreter=""
3108         AC_MSG_RESULT([no])
3109 fi
3110
3111 AC_SUBST(PERL, "$perl_interpreter")
3112
3113 if test "x$with_libperl" = "xyes" \
3114         && test -n "$perl_interpreter"
3115 then
3116   SAVE_CFLAGS="$CFLAGS"
3117   SAVE_LDFLAGS="$LDFLAGS"
3118 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3119   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3120   PERL_LDFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3121   CFLAGS="$CFLAGS $PERL_CFLAGS"
3122   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3123
3124   AC_CACHE_CHECK([for libperl],
3125     [c_cv_have_libperl],
3126     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3127 [[[
3128 #define PERL_NO_GET_CONTEXT
3129 #include <EXTERN.h>
3130 #include <perl.h>
3131 #include <XSUB.h>
3132 ]]],
3133 [[[
3134        dTHX;
3135        load_module (PERL_LOADMOD_NOIMPORT,
3136                          newSVpv ("Collectd::Plugin::FooBar", 24),
3137                          Nullsv);
3138 ]]]
3139       )],
3140       [c_cv_have_libperl="yes"],
3141       [c_cv_have_libperl="no"]
3142     )
3143   )
3144
3145   if test "x$c_cv_have_libperl" = "xyes"
3146   then
3147           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3148           AC_SUBST(PERL_CFLAGS)
3149           AC_SUBST(PERL_LDFLAGS)
3150   else
3151           with_libperl="no"
3152   fi
3153
3154   CFLAGS="$SAVE_CFLAGS"
3155   LDFLAGS="$SAVE_LDFLAGS"
3156 else if test -z "$perl_interpreter"; then
3157   with_libperl="no (no perl interpreter found)"
3158   c_cv_have_libperl="no"
3159 fi; fi
3160 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3161
3162 if test "x$with_libperl" = "xyes"
3163 then
3164         SAVE_CFLAGS="$CFLAGS"
3165         SAVE_LDFLAGS="$LDFLAGS"
3166         CFLAGS="$CFLAGS $PERL_CFLAGS"
3167         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3168
3169         AC_CACHE_CHECK([if perl supports ithreads],
3170                 [c_cv_have_perl_ithreads],
3171                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3172 [[[
3173 #include <EXTERN.h>
3174 #include <perl.h>
3175 #include <XSUB.h>
3176
3177 #if !defined(USE_ITHREADS)
3178 # error "Perl does not support ithreads!"
3179 #endif /* !defined(USE_ITHREADS) */
3180 ]]],
3181 [[[ ]]]
3182                         )],
3183                         [c_cv_have_perl_ithreads="yes"],
3184                         [c_cv_have_perl_ithreads="no"]
3185                 )
3186         )
3187
3188         if test "x$c_cv_have_perl_ithreads" = "xyes"
3189         then
3190                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3191         fi
3192
3193         CFLAGS="$SAVE_CFLAGS"
3194         LDFLAGS="$SAVE_LDFLAGS"
3195 fi
3196
3197 if test "x$with_libperl" = "xyes"
3198 then
3199         SAVE_CFLAGS="$CFLAGS"
3200         SAVE_LDFLAGS="$LDFLAGS"
3201         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3202         # (see issues #41 and #42)
3203         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3204         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3205
3206         AC_CACHE_CHECK([for broken Perl_load_module()],
3207                 [c_cv_have_broken_perl_load_module],
3208                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3209 [[[
3210 #define PERL_NO_GET_CONTEXT
3211 #include <EXTERN.h>
3212 #include <perl.h>
3213 #include <XSUB.h>
3214 ]]],
3215 [[[
3216                          dTHX;
3217                          load_module (PERL_LOADMOD_NOIMPORT,
3218                              newSVpv ("Collectd::Plugin::FooBar", 24),
3219                              Nullsv);
3220 ]]]
3221                         )],
3222                         [c_cv_have_broken_perl_load_module="no"],
3223                         [c_cv_have_broken_perl_load_module="yes"]
3224                 )
3225         )
3226
3227         CFLAGS="$SAVE_CFLAGS"
3228         LDFLAGS="$SAVE_LDFLAGS"
3229 fi
3230 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3231                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3232
3233 if test "x$with_libperl" = "xyes"
3234 then
3235         SAVE_CFLAGS="$CFLAGS"
3236         SAVE_LDFLAGS="$LDFLAGS"
3237         CFLAGS="$CFLAGS $PERL_CFLAGS"
3238         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3239
3240         AC_CHECK_MEMBER(
3241                 [struct mgvtbl.svt_local],
3242                 [have_struct_mgvtbl_svt_local="yes"],
3243                 [have_struct_mgvtbl_svt_local="no"],
3244                 [
3245 #include <EXTERN.h>
3246 #include <perl.h>
3247 #include <XSUB.h>
3248                 ])
3249
3250         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3251         then
3252                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3253                                   [Define if Perl's struct mgvtbl has member svt_local.])
3254         fi
3255
3256         CFLAGS="$SAVE_CFLAGS"
3257         LDFLAGS="$SAVE_LDFLAGS"
3258 fi
3259 # }}}
3260
3261 # --with-libpq {{{
3262 with_pg_config="pg_config"
3263 with_libpq_includedir=""
3264 with_libpq_libdir=""
3265 with_libpq_cppflags=""
3266 with_libpq_ldflags=""
3267 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3268         [Path to libpq.])],
3269 [
3270         if test "x$withval" = "xno"
3271         then
3272                 with_libpq="no"
3273         else if test "x$withval" = "xyes"
3274         then
3275                 with_libpq="yes"
3276         else
3277                 if test -f "$withval" && test -x "$withval";
3278                 then
3279                         with_pg_config="$withval"
3280                 else if test -x "$withval/bin/pg_config"
3281                 then
3282                         with_pg_config="$withval/bin/pg_config"
3283                 fi; fi
3284                 with_libpq="yes"
3285         fi; fi
3286 ],
3287 [
3288         with_libpq="yes"
3289 ])
3290 if test "x$with_libpq" = "xyes"
3291 then
3292         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3293         pg_config_status=$?
3294
3295         if test $pg_config_status -eq 0
3296         then
3297                 if test -n "$with_libpq_includedir"; then
3298                         for dir in $with_libpq_includedir; do
3299                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3300                         done
3301                 fi
3302         else
3303                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3304         fi
3305
3306         SAVE_CPPFLAGS="$CPPFLAGS"
3307         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3308
3309         AC_CHECK_HEADERS(libpq-fe.h, [],
3310                 [with_libpq="no (libpq-fe.h not found)"], [])
3311
3312         CPPFLAGS="$SAVE_CPPFLAGS"
3313 fi
3314 if test "x$with_libpq" = "xyes"
3315 then
3316         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3317         pg_config_status=$?
3318
3319         if test $pg_config_status -eq 0
3320         then
3321                 if test -n "$with_libpq_libdir"; then
3322                         for dir in $with_libpq_libdir; do
3323                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3324                         done
3325                 fi
3326         else
3327                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3328         fi
3329
3330         SAVE_LDFLAGS="$LDFLAGS"
3331         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3332
3333         AC_CHECK_LIB(pq, PQconnectdb,
3334                 [with_libpq="yes"],
3335                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3336
3337         AC_CHECK_LIB(pq, PQserverVersion,
3338                 [with_libpq="yes"],
3339                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3340
3341         LDFLAGS="$SAVE_LDFLAGS"
3342 fi
3343 if test "x$with_libpq" = "xyes"
3344 then
3345         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3346         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3347         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3348         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3349 fi
3350 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3351 # }}}
3352
3353 # --with-libpthread {{{
3354 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3355 [       if test "x$withval" != "xno" \
3356                 && test "x$withval" != "xyes"
3357         then
3358                 LDFLAGS="$LDFLAGS -L$withval/lib"
3359                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3360                 with_libpthread="yes"
3361         else
3362                 if test "x$withval" = "xno"
3363                 then
3364                         with_libpthread="no (disabled)"
3365                 fi
3366         fi
3367 ], [with_libpthread="yes"])
3368 if test "x$with_libpthread" = "xyes"
3369 then
3370         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3371 fi
3372
3373 if test "x$with_libpthread" = "xyes"
3374 then
3375         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
3376 fi
3377 if test "x$with_libpthread" = "xyes"
3378 then
3379         collect_pthread=1
3380 else
3381         collect_pthread=0
3382 fi
3383 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3384         [Wether or not to use pthread (POSIX threads) library])
3385 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
3386 # }}}
3387
3388 # --with-python {{{
3389 with_python_prog=""
3390 with_python_path="$PATH"
3391 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3392 [
3393  if test "x$withval" = "xyes" || test "x$withval" = "xno"
3394  then
3395          with_python="$withval"
3396  else if test -x "$withval"
3397  then
3398          with_python_prog="$withval"
3399          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3400          with_python="yes"
3401  else if test -d "$withval"
3402  then
3403          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3404          with_python="yes"
3405  else
3406          AC_MSG_WARN([Argument not recognized: $withval])
3407  fi; fi; fi
3408 ], [with_python="yes"])
3409
3410 SAVE_PATH="$PATH"
3411 SAVE_CPPFLAGS="$CPPFLAGS"
3412 SAVE_LDFLAGS="$LDFLAGS"
3413 SAVE_LIBS="$LIBS"
3414
3415 PATH="$with_python_path"
3416
3417 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3418 then
3419         AC_MSG_CHECKING([for python])
3420         with_python_prog="`which python 2>/dev/null`"
3421         if test "x$with_python_prog" = "x"
3422         then
3423                 AC_MSG_RESULT([not found])
3424                 with_python="no (interpreter not found)"
3425         else
3426                 AC_MSG_RESULT([$with_python_prog])
3427         fi
3428 fi
3429
3430 if test "x$with_python" = "xyes"
3431 then
3432         AC_MSG_CHECKING([for Python CPPFLAGS])
3433         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3434         python_config_status=$?
3435
3436         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3437         then
3438                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3439                 with_python="no"
3440         else
3441                 AC_MSG_RESULT([$python_include_path])
3442         fi
3443 fi
3444
3445 if test "x$with_python" = "xyes"
3446 then
3447         CPPFLAGS="-I$python_include_path $CPPFLAGS"
3448         AC_CHECK_HEADERS(Python.h,
3449                          [with_python="yes"],
3450                          [with_python="no ('Python.h' not found)"])
3451 fi
3452
3453 if test "x$with_python" = "xyes"
3454 then
3455         AC_MSG_CHECKING([for Python LDFLAGS])
3456         python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2>&1`
3457         python_config_status=$?
3458
3459         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3460         then
3461                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3462                 with_python="no"
3463         else
3464                 AC_MSG_RESULT([$python_library_path])
3465         fi
3466 fi
3467
3468 if test "x$with_python" = "xyes"
3469 then
3470         AC_MSG_CHECKING([for Python LIBS])
3471         python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2>&1`
3472         python_config_status=$?
3473
3474         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3475         then
3476                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3477                 with_python="no"
3478         else
3479                 AC_MSG_RESULT([$python_library_flags])
3480         fi
3481 fi
3482
3483 if test "x$with_python" = "xyes"
3484 then
3485         LDFLAGS="-L$python_library_path $LDFLAGS"
3486         LIBS="$python_library_flags $LIBS"
3487
3488         AC_CHECK_FUNC(PyObject_CallFunction,
3489                       [with_python="yes"],
3490                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3491 fi
3492
3493 PATH="$SAVE_PATH"
3494 CPPFLAGS="$SAVE_CPPFLAGS"
3495 LDFLAGS="$SAVE_LDFLAGS"
3496 LIBS="$SAVE_LIBS"
3497
3498 if test "x$with_python" = "xyes"
3499 then
3500         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3501         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3502         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3503         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3504         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3505         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3506 fi
3507 # }}} --with-python
3508
3509 # --with-librabbitmq {{{
3510 with_librabbitmq_cppflags=""
3511 with_librabbitmq_ldflags=""
3512 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3513 [
3514         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3515         then
3516                 with_librabbitmq_cppflags="-I$withval/include"
3517                 with_librabbitmq_ldflags="-L$withval/lib"
3518                 with_librabbitmq="yes"
3519         else
3520                 with_librabbitmq="$withval"
3521         fi
3522 ],
3523 [
3524         with_librabbitmq="yes"
3525 ])
3526 SAVE_CPPFLAGS="$CPPFLAGS"
3527 SAVE_LDFLAGS="$LDFLAGS"
3528 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3529 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3530 if test "x$with_librabbitmq" = "xyes"
3531 then
3532         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3533 fi
3534 if test "x$with_librabbitmq" = "xyes"
3535 then
3536         # librabbitmq up to version 0.9.1 provides "library_errno", later
3537         # versions use "library_error". The library does not provide a version
3538         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3539         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3540                          [
3541 #if HAVE_STDLIB_H
3542 # include <stdlib.h>
3543 #endif
3544 #if HAVE_STDIO_H
3545 # include <stdio.h>
3546 #endif
3547 #if HAVE_STDINT_H
3548 # include <stdint.h>
3549 #endif
3550 #if HAVE_INTTYPES_H
3551 # include <inttypes.h>
3552 #endif
3553 #include <amqp.h>
3554                          ])
3555 fi
3556 if test "x$with_librabbitmq" = "xyes"
3557 then
3558         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3559 fi
3560 if test "x$with_librabbitmq" = "xyes"
3561 then
3562         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3563         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3564         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3565         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3566         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3567         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3568         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3569 fi
3570 CPPFLAGS="$SAVE_CPPFLAGS"
3571 LDFLAGS="$SAVE_LDFLAGS"
3572 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3573 # }}}
3574
3575 # --with-librdkafka {{{
3576 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
3577 [
3578   if test "x$withval" = "xno" && test "x$withval" != "xyes"
3579   then
3580     with_librdkafka_cppflags="-I$withval/include"
3581     with_librdkafka_ldflags="-L$withval/lib"
3582     with_librdkafka="yes"
3583   else
3584     with_librdkafka="$withval"
3585   fi
3586 ],
3587 [
3588   with_librdkafka="yes"
3589 ])
3590 SAVE_CPPFLAGS="$CPPFLAGS"
3591 SAVE_LDFLAGS="$LDFLAGS"
3592
3593 if test "x$with_librdkafka" = "xyes"
3594 then
3595         AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
3596 fi
3597
3598 if test "x$with_librdkafka" = "xyes"
3599 then
3600         AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
3601 fi
3602 if test "x$with_librdkafka" = "xyes"
3603 then
3604         BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
3605         BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
3606         BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
3607         AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
3608         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
3609         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
3610         AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
3611 fi
3612 CPPFLAGS="$SAVE_CPPFLAGS"
3613 LDFLAGS="$SAVE_LDFLAGS"
3614 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
3615
3616 # }}}
3617
3618 # --with-librouteros {{{
3619 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3620 [
3621  if test "x$withval" = "xyes"
3622  then
3623          with_librouteros="yes"
3624  else if test "x$withval" = "xno"
3625  then
3626          with_librouteros="no"
3627  else
3628          with_librouteros="yes"
3629          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3630          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3631  fi; fi
3632 ],
3633 [with_librouteros="yes"])
3634
3635 SAVE_CPPFLAGS="$CPPFLAGS"
3636 SAVE_LDFLAGS="$LDFLAGS"
3637
3638 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3639 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3640
3641 if test "x$with_librouteros" = "xyes"
3642 then
3643         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3644         then
3645                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3646         fi
3647         AC_CHECK_HEADERS(routeros_api.h,
3648         [with_librouteros="yes"],
3649         [with_librouteros="no (routeros_api.h not found)"])
3650 fi
3651 if test "x$with_librouteros" = "xyes"
3652 then
3653         if test "x$LIBROUTEROS_LDFLAGS" != "x"
3654         then
3655                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3656         fi
3657         AC_CHECK_LIB(routeros, ros_interface,
3658         [with_librouteros="yes"],
3659         [with_librouteros="no (symbol 'ros_interface' not found)"])
3660 fi
3661
3662 CPPFLAGS="$SAVE_CPPFLAGS"
3663 LDFLAGS="$SAVE_LDFLAGS"
3664
3665 if test "x$with_librouteros" = "xyes"
3666 then
3667         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3668         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3669         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3670         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3671 fi
3672 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3673 # }}}
3674
3675 # --with-librrd {{{
3676 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3677 librrd_cflags=""
3678 librrd_ldflags=""
3679 librrd_threadsafe="yes"
3680 librrd_rrdc_update="no"
3681 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3682 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
3683         then
3684                 librrd_cflags="-I$withval/include"
3685                 librrd_ldflags="-L$withval/lib"
3686                 with_librrd="yes"
3687         else
3688                 with_librrd="$withval"
3689         fi
3690 ], [with_librrd="yes"])
3691 if test "x$with_librrd" = "xyes"
3692 then
3693         SAVE_CPPFLAGS="$CPPFLAGS"
3694         SAVE_LDFLAGS="$LDFLAGS"
3695
3696         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3697         LDFLAGS="$LDFLAGS $librrd_ldflags"
3698
3699         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
3700
3701         CPPFLAGS="$SAVE_CPPFLAGS"
3702         LDFLAGS="$SAVE_LDFLAGS"
3703 fi
3704 if test "x$with_librrd" = "xyes"
3705 then
3706         SAVE_CPPFLAGS="$CPPFLAGS"
3707         SAVE_LDFLAGS="$LDFLAGS"
3708
3709         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3710         LDFLAGS="$LDFLAGS $librrd_ldflags"
3711
3712         AC_CHECK_LIB(rrd_th, rrd_update_r,
3713         [with_librrd="yes"
3714          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3715         ],
3716         [librrd_threadsafe="no"
3717          AC_CHECK_LIB(rrd, rrd_update,
3718          [with_librrd="yes"
3719           librrd_ldflags="$librrd_ldflags -lrrd -lm"
3720          ],
3721          [with_librrd="no (symbol 'rrd_update' not found)"],
3722          [-lm])
3723         ],
3724         [-lm])
3725
3726         if test "x$librrd_threadsafe" = "xyes"
3727         then
3728                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3729         else
3730                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3731         fi
3732
3733         CPPFLAGS="$SAVE_CPPFLAGS"
3734         LDFLAGS="$SAVE_LDFLAGS"
3735 fi
3736 if test "x$with_librrd" = "xyes"
3737 then
3738         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3739         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3740         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3741         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3742 fi
3743 if test "x$librrd_threadsafe" = "xyes"
3744 then
3745         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
3746 fi
3747 # }}}
3748
3749 # --with-libsensors {{{
3750 with_sensors_cflags=""
3751 with_sensors_ldflags=""
3752 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
3753 [
3754         if test "x$withval" = "xno"
3755         then
3756                 with_libsensors="no"
3757         else
3758                 with_libsensors="yes"
3759                 if test "x$withval" != "xyes"
3760                 then
3761                         with_sensors_cflags="-I$withval/include"
3762                         with_sensors_ldflags="-L$withval/lib"
3763                         with_libsensors="yes"
3764                 fi
3765         fi
3766 ],
3767 [
3768         if test "x$ac_system" = "xLinux"
3769         then
3770                 with_libsensors="yes"
3771         else
3772                 with_libsensors="no (Linux only library)"
3773         fi
3774 ])
3775 if test "x$with_libsensors" = "xyes"
3776 then
3777         SAVE_CPPFLAGS="$CPPFLAGS"
3778         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3779
3780 #       AC_CHECK_HEADERS(sensors/sensors.h,
3781 #       [
3782 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3783 #       ],
3784 #       [with_libsensors="no (sensors/sensors.h not found)"])
3785         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3786
3787         CPPFLAGS="$SAVE_CPPFLAGS"
3788 fi
3789 if test "x$with_libsensors" = "xyes"
3790 then
3791         SAVE_CPPFLAGS="$CPPFLAGS"
3792         SAVE_LDFLAGS="$LDFLAGS"
3793         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3794         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3795
3796         AC_CHECK_LIB(sensors, sensors_init,
3797         [
3798                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
3799         ],
3800         [with_libsensors="no (libsensors not found)"])
3801
3802         CPPFLAGS="$SAVE_CPPFLAGS"
3803         LDFLAGS="$SAVE_LDFLAGS"
3804 fi
3805 if test "x$with_libsensors" = "xyes"
3806 then
3807         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3808         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3809         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3810         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
3811 fi
3812 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
3813 # }}}
3814
3815 # --with-libsigrok {{{
3816 with_libsigrok_cflags=""
3817 with_libsigrok_ldflags=""
3818 AC_ARG_WITH(libsigrok, [AS_HELP_STRING([--with-libsigrok@<:@=PREFIX@:>@], [Path to libsigrok.])],
3819 [
3820         if test "x$withval" = "xno"
3821         then
3822                 with_libsigrok="no"
3823         else
3824                 with_libsigrok="yes"
3825                 if test "x$withval" != "xyes"
3826                 then
3827                         with_libsigrok_cflags="-I$withval/include"
3828                         with_libsigrok_ldflags="-L$withval/lib"
3829                 fi
3830         fi
3831 ],[])
3832
3833 # libsigrok has a glib dependency
3834 if test "x$with_libsigrok" = "xyes"
3835 then
3836         if test -z "m4_ifdef([AM_PATH_GLIB_2_0], [yes], [])"
3837         then
3838                 with_libsigrok="no (glib not available)"
3839         else
3840                 AM_PATH_GLIB_2_0([2.28.0],
3841                         [with_libsigrok_cflags="$with_libsigrok_cflags $GLIB_CFLAGS"; with_libsigrok_ldflags="$with_libsigrok_ldflags $GLIB_LIBS"])
3842         fi
3843 fi
3844
3845 # libsigrok headers
3846 if test "x$with_libsigrok" = "xyes"
3847 then
3848         SAVE_CPPFLAGS="$CPPFLAGS"
3849         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
3850
3851         AC_CHECK_HEADERS(libsigrok/libsigrok.h, [], [with_libsigrok="no (libsigrok/libsigrok.h not found)"])
3852
3853         CPPFLAGS="$SAVE_CPPFLAGS"
3854 fi
3855
3856 # libsigrok library
3857 if test "x$with_libsigrok" = "xyes"
3858 then
3859         SAVE_CPPFLAGS="$CPPFLAGS"
3860         SAVE_LDFLAGS="$LDFLAGS"
3861         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
3862         LDFLAGS="$LDFLAGS $with_libsigrok_ldflags"
3863
3864         AC_CHECK_LIB(sigrok, sr_init,
3865         [
3866                 AC_DEFINE(HAVE_LIBSIGROK, 1, [Define to 1 if you have the sigrok library (-lsigrok).])
3867         ],
3868         [with_libsigrok="no (libsigrok not found)"])
3869
3870         CPPFLAGS="$SAVE_CPPFLAGS"
3871         LDFLAGS="$SAVE_LDFLAGS"
3872 fi
3873 if test "x$with_libsigrok" = "xyes"
3874 then
3875         BUILD_WITH_LIBSIGROK_CFLAGS="$with_libsigrok_cflags"
3876         BUILD_WITH_LIBSIGROK_LDFLAGS="$with_libsigrok_ldflags"
3877         AC_SUBST(BUILD_WITH_LIBSIGROK_CFLAGS)
3878         AC_SUBST(BUILD_WITH_LIBSIGROK_LDFLAGS)
3879 fi
3880 AM_CONDITIONAL(BUILD_WITH_LIBSIGROK, test "x$with_libsigrok" = "xyes")
3881 # }}}
3882
3883 # --with-libstatgrab {{{
3884 with_libstatgrab_cflags=""
3885 with_libstatgrab_ldflags=""
3886 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
3887 [
3888  if test "x$withval" != "xno" \
3889    && test "x$withval" != "xyes"
3890  then
3891    with_libstatgrab_cflags="-I$withval/include"
3892    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3893    with_libstatgrab="yes"
3894    with_libstatgrab_pkg_config="no"
3895  else
3896    with_libstatgrab="$withval"
3897    with_libstatgrab_pkg_config="yes"
3898  fi
3899  ],
3900 [
3901  with_libstatgrab="yes"
3902  with_libstatgrab_pkg_config="yes"
3903 ])
3904
3905 if test "x$with_libstatgrab" = "xyes" \
3906   && test "x$with_libstatgrab_pkg_config" = "xyes"
3907 then
3908   if test "x$PKG_CONFIG" != "x"
3909   then
3910     AC_MSG_CHECKING([pkg-config for libstatgrab])
3911     temp_result="found"
3912     $PKG_CONFIG --exists libstatgrab 2>/dev/null
3913     if test "$?" != "0"
3914     then
3915       with_libstatgrab_pkg_config="no"
3916       with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
3917       temp_result="not found"
3918     fi
3919     AC_MSG_RESULT([$temp_result])
3920   else
3921     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
3922     with_libstatgrab_pkg_config="no"
3923     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
3924   fi
3925 fi
3926
3927 if test "x$with_libstatgrab" = "xyes" \
3928   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3929   && test "x$with_libstatgrab_cflags" = "x"
3930 then
3931   AC_MSG_CHECKING([for libstatgrab CFLAGS])
3932   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
3933   if test "$?" = "0"
3934   then
3935     with_libstatgrab_cflags="$temp_result"
3936   else
3937     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
3938     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
3939   fi
3940   AC_MSG_RESULT([$temp_result])
3941 fi
3942
3943 if test "x$with_libstatgrab" = "xyes" \
3944   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3945   && test "x$with_libstatgrab_ldflags" = "x"
3946 then
3947   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
3948   temp_result="`$PKG_CONFIG --libs libstatgrab`"
3949   if test "$?" = "0"
3950   then
3951     with_libstatgrab_ldflags="$temp_result"
3952   else
3953     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
3954     temp_result="$PKG_CONFIG --libs libstatgrab failed"
3955   fi
3956   AC_MSG_RESULT([$temp_result])
3957 fi
3958
3959 if test "x$with_libstatgrab" = "xyes"
3960 then
3961   SAVE_CPPFLAGS="$CPPFLAGS"
3962   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
3963
3964   AC_CHECK_HEADERS(statgrab.h,
3965                    [with_libstatgrab="yes"],
3966                    [with_libstatgrab="no (statgrab.h not found)"])
3967
3968   CPPFLAGS="$SAVE_CPPFLAGS"
3969 fi
3970
3971 if test "x$with_libstatgrab" = "xyes"
3972 then
3973   SAVE_CFLAGS="$CFLAGS"
3974   SAVE_LDFLAGS="$LDFLAGS"
3975
3976   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
3977   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
3978
3979   AC_CHECK_LIB(statgrab, sg_init,
3980                [with_libstatgrab="yes"],
3981                [with_libstatgrab="no (symbol sg_init not found)"])
3982
3983   CFLAGS="$SAVE_CFLAGS"
3984   LDFLAGS="$SAVE_LDFLAGS"
3985 fi
3986
3987 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
3988 if test "x$with_libstatgrab" = "xyes"
3989 then
3990   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
3991   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
3992   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
3993   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
3994   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
3995 fi
3996 # }}}
3997
3998 # --with-libtokyotyrant {{{
3999 with_libtokyotyrant_cppflags=""
4000 with_libtokyotyrant_ldflags=""
4001 with_libtokyotyrant_libs=""
4002 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4003 [
4004   if test "x$withval" = "xno"
4005   then
4006     with_libtokyotyrant="no"
4007   else if test "x$withval" = "xyes"
4008   then
4009     with_libtokyotyrant="yes"
4010   else
4011     with_libtokyotyrant_cppflags="-I$withval/include"
4012     with_libtokyotyrant_ldflags="-L$withval/include"
4013     with_libtokyotyrant_libs="-ltokyotyrant"
4014     with_libtokyotyrant="yes"
4015   fi; fi
4016 ],
4017 [
4018   with_libtokyotyrant="yes"
4019 ])
4020
4021 if test "x$with_libtokyotyrant" = "xyes"
4022 then
4023   if $PKG_CONFIG --exists tokyotyrant
4024   then
4025     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
4026     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `pkg-config --libs-only-L tokyotyrant`"
4027     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `pkg-config --libs-only-l tokyotyrant`"
4028   fi
4029 fi
4030
4031 SAVE_CPPFLAGS="$CPPFLAGS"
4032 SAVE_LDFLAGS="$LDFLAGS"
4033 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
4034 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
4035
4036 if test "x$with_libtokyotyrant" = "xyes"
4037 then
4038   AC_CHECK_HEADERS(tcrdb.h,
4039   [
4040           AC_DEFINE(HAVE_TCRDB_H, 1,
4041                     [Define to 1 if you have the <tcrdb.h> header file.])
4042   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
4043 fi
4044
4045 if test "x$with_libtokyotyrant" = "xyes"
4046 then
4047   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4048   [
4049           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4050                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4051   ],
4052   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4053   [$with_libtokyotyrant_libs])
4054 fi
4055
4056 CPPFLAGS="$SAVE_CPPFLAGS"
4057 LDFLAGS="$SAVE_LDFLAGS"
4058
4059 if test "x$with_libtokyotyrant" = "xyes"
4060 then
4061   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4062   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4063   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4064   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4065   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4066   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4067 fi
4068 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4069 # }}}
4070
4071 # --with-libudev {{{
4072 with_libudev_cflags=""
4073 with_libudev_ldflags=""
4074 AC_ARG_WITH(libudev, [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
4075 [
4076         if test "x$withval" = "xno"
4077         then
4078                 with_libudev="no"
4079         else
4080                 with_libudev="yes"
4081                 if test "x$withval" != "xyes"
4082                 then
4083                         with_libudev_cflags="-I$withval/include"
4084                         with_libudev_ldflags="-L$withval/lib"
4085                         with_libudev="yes"
4086                 fi
4087         fi
4088 ],
4089 [
4090         if test "x$ac_system" = "xLinux"
4091         then
4092                 with_libudev="yes"
4093         else
4094                 with_libudev="no (Linux only library)"
4095         fi
4096 ])
4097 if test "x$with_libudev" = "xyes"
4098 then
4099         SAVE_CPPFLAGS="$CPPFLAGS"
4100         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4101
4102         AC_CHECK_HEADERS(libudev.h, [], [with_libudev="no (libudev.h not found)"])
4103
4104         CPPFLAGS="$SAVE_CPPFLAGS"
4105 fi
4106 if test "x$with_libudev" = "xyes"
4107 then
4108         SAVE_CPPFLAGS="$CPPFLAGS"
4109         SAVE_LDFLAGS="$LDFLAGS"
4110         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4111         LDFLAGS="$LDFLAGS $with_libudev_ldflags"
4112
4113         AC_CHECK_LIB(udev, udev_new,
4114         [
4115                 AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if you have the udev library (-ludev).])
4116         ],
4117         [with_libudev="no (libudev not found)"])
4118
4119         CPPFLAGS="$SAVE_CPPFLAGS"
4120         LDFLAGS="$SAVE_LDFLAGS"
4121 fi
4122 if test "x$with_libudev" = "xyes"
4123 then
4124         BUILD_WITH_LIBUDEV_CFLAGS="$with_libudev_cflags"
4125         BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
4126         AC_SUBST(BUILD_WITH_LIBUDEV_CFLAGS)
4127         AC_SUBST(BUILD_WITH_LIBUDEV_LDFLAGS)
4128 fi
4129 AM_CONDITIONAL(BUILD_WITH_LIBUDEV, test "x$with_libudev" = "xyes")
4130 # }}}
4131
4132 # --with-libupsclient {{{
4133 with_libupsclient_config=""
4134 with_libupsclient_cflags=""
4135 with_libupsclient_libs=""
4136 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4137 [
4138         if test "x$withval" = "xno"
4139         then
4140                 with_libupsclient="no"
4141         else if test "x$withval" = "xyes"
4142         then
4143                 with_libupsclient="use_pkgconfig"
4144         else
4145                 if test -x "$withval"
4146                 then
4147                         with_libupsclient_config="$withval"
4148                         with_libupsclient="use_libupsclient_config"
4149                 else if test -x "$withval/bin/libupsclient-config"
4150                 then
4151                         with_libupsclient_config="$withval/bin/libupsclient-config"
4152                         with_libupsclient="use_libupsclient_config"
4153                 else
4154                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4155                         with_libupsclient_cflags="-I$withval/include"
4156                         with_libupsclient_libs="-L$withval/lib -lupsclient"
4157                         with_libupsclient="yes"
4158                 fi; fi
4159         fi; fi
4160 ],
4161 [with_libupsclient="use_pkgconfig"])
4162
4163 # configure using libupsclient-config
4164 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4165 then
4166         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4167         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4168         if test $? -ne 0
4169         then
4170                 with_libupsclient="no ($with_libupsclient_config failed)"
4171         fi
4172         with_libupsclient_libs="`$with_libupsclient_config --libs`"
4173         if test $? -ne 0
4174         then
4175                 with_libupsclient="no ($with_libupsclient_config failed)"
4176         fi
4177 fi
4178 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4179 then
4180         with_libupsclient="yes"
4181 fi
4182
4183 # configure using pkg-config
4184 if test "x$with_libupsclient" = "xuse_pkgconfig"
4185 then
4186         if test "x$PKG_CONFIG" = "x"
4187         then
4188                 with_libupsclient="no (Don't have pkg-config)"
4189         fi
4190 fi
4191 if test "x$with_libupsclient" = "xuse_pkgconfig"
4192 then
4193         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4194         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4195         if test $? -ne 0
4196         then
4197                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4198         fi
4199 fi
4200 if test "x$with_libupsclient" = "xuse_pkgconfig"
4201 then
4202         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4203         if test $? -ne 0
4204         then
4205                 with_libupsclient="no ($PKG_CONFIG failed)"
4206         fi
4207         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4208         if test $? -ne 0
4209         then
4210                 with_libupsclient="no ($PKG_CONFIG failed)"
4211         fi
4212 fi
4213 if test "x$with_libupsclient" = "xuse_pkgconfig"
4214 then
4215         with_libupsclient="yes"
4216 fi
4217
4218 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4219 # the actual checks.
4220 if test "x$with_libupsclient" = "xyes"
4221 then
4222         SAVE_CPPFLAGS="$CPPFLAGS"
4223         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4224
4225         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4226
4227         CPPFLAGS="$SAVE_CPPFLAGS"
4228 fi
4229 if test "x$with_libupsclient" = "xyes"
4230 then
4231         SAVE_CPPFLAGS="$CPPFLAGS"
4232         SAVE_LDFLAGS="$LDFLAGS"
4233
4234         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4235         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4236
4237         AC_CHECK_LIB(upsclient, upscli_connect,
4238                      [with_libupsclient="yes"],
4239                      [with_libupsclient="no (symbol upscli_connect not found)"])
4240
4241         CPPFLAGS="$SAVE_CPPFLAGS"
4242         LDFLAGS="$SAVE_LDFLAGS"
4243 fi
4244 if test "x$with_libupsclient" = "xyes"
4245 then
4246         SAVE_CPPFLAGS="$CPPFLAGS"
4247         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4248
4249         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4250 [#include <stdlib.h>
4251 #include <stdio.h>
4252 #include <upsclient.h>])
4253
4254         CPPFLAGS="$SAVE_CPPFLAGS"
4255 fi
4256 if test "x$with_libupsclient" = "xyes"
4257 then
4258         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4259         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4260         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4261         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4262 fi
4263 # }}}
4264
4265 # --with-libxmms {{{
4266 with_xmms_config="xmms-config"
4267 with_xmms_cflags=""
4268 with_xmms_libs=""
4269 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4270 [
4271         if test "x$withval" != "xno" \
4272                 && test "x$withval" != "xyes"
4273         then
4274                 if test -f "$withval" && test -x "$withval";
4275                 then
4276                         with_xmms_config="$withval"
4277                 else if test -x "$withval/bin/xmms-config"
4278                 then
4279                         with_xmms_config="$withval/bin/xmms-config"
4280                 fi; fi
4281                 with_libxmms="yes"
4282         else if test "x$withval" = "xno"
4283         then
4284                 with_libxmms="no"
4285         else
4286                 with_libxmms="yes"
4287         fi; fi
4288 ],
4289 [
4290         with_libxmms="yes"
4291 ])
4292 if test "x$with_libxmms" = "xyes"
4293 then
4294         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4295         xmms_config_status=$?
4296
4297         if test $xmms_config_status -ne 0
4298         then
4299                 with_libxmms="no"
4300         fi
4301 fi
4302 if test "x$with_libxmms" = "xyes"
4303 then
4304         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4305         xmms_config_status=$?
4306
4307         if test $xmms_config_status -ne 0
4308         then
4309                 with_libxmms="no"
4310         fi
4311 fi
4312 if test "x$with_libxmms" = "xyes"
4313 then
4314         AC_CHECK_LIB(xmms, xmms_remote_get_info,
4315         [
4316                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4317                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4318                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4319                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4320         ],
4321         [
4322                 with_libxmms="no"
4323         ],
4324         [$with_xmms_libs])
4325 fi
4326 with_libxmms_numeric=0
4327 if test "x$with_libxmms" = "xyes"
4328 then
4329         with_libxmms_numeric=1
4330 fi
4331 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4332 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4333 # }}}
4334
4335 # --with-libyajl {{{
4336 with_libyajl_cppflags=""
4337 with_libyajl_ldflags=""
4338 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4339 [
4340         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4341         then
4342                 with_libyajl_cppflags="-I$withval/include"
4343                 with_libyajl_ldflags="-L$withval/lib"
4344                 with_libyajl="yes"
4345         else
4346                 with_libyajl="$withval"
4347         fi
4348 ],
4349 [
4350         with_libyajl="yes"
4351 ])
4352 if test "x$with_libyajl" = "xyes"
4353 then
4354         SAVE_CPPFLAGS="$CPPFLAGS"
4355         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4356
4357         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
4358         AC_CHECK_HEADERS(yajl/yajl_version.h)
4359
4360         CPPFLAGS="$SAVE_CPPFLAGS"
4361 fi
4362 if test "x$with_libyajl" = "xyes"
4363 then
4364         SAVE_CPPFLAGS="$CPPFLAGS"
4365         SAVE_LDFLAGS="$LDFLAGS"
4366         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4367         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4368
4369         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4370
4371         CPPFLAGS="$SAVE_CPPFLAGS"
4372         LDFLAGS="$SAVE_LDFLAGS"
4373 fi
4374 if test "x$with_libyajl" = "xyes"
4375 then
4376         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4377         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4378         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4379         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4380         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4381         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4382         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4383 fi
4384 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4385 # }}}
4386
4387 # --with-mic {{{
4388 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
4389 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
4390 with_mic_libs=""
4391 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
4392 [
4393         if test "x$withval" = "xno"
4394         then
4395                 with_mic="no"
4396         else if test "x$withval" = "xyes"
4397         then
4398                 with_mic="yes"
4399         else if test -d "$with_mic/lib"
4400         then
4401                 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
4402                 with_mic_cflags="-I$withval/include"
4403                 with_mic_ldpath="-L$withval/lib/Linux"
4404                 with_mic_libs="-lMicAccessSDK -lscif -lpthread"
4405                 with_mic="yes"
4406         fi; fi; fi
4407 ],
4408 [with_mic="yes"])
4409 if test "x$with_mic" = "xyes"
4410 then
4411         SAVE_CPPFLAGS="$CPPFLAGS"
4412         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4413         AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
4414         CPPFLAGS="$SAVE_CPPFLAGS"
4415 fi
4416 if test "x$with_mic" = "xyes"
4417 then
4418         SAVE_CPPFLAGS="$CPPFLAGS"
4419         SAVE_LDFLAGS="$LDFLAGS"
4420
4421         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4422         LDFLAGS="$LDFLAGS $with_mic_ldpath"
4423
4424         AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
4425                         [with_mic_ldpath="$with_mic_ldpath"
4426                         with_mic_libs="-lMicAccessSDK -lscif -lpthread"],
4427                         [with_mic="no (symbol MicInitAPI not found)"],[-lscif -lpthread])
4428
4429         CPPFLAGS="$SAVE_CPPFLAGS"
4430         LDFLAGS="$SAVE_LDFLAGS"
4431 fi
4432
4433 if test "x$with_mic" = "xyes"
4434 then
4435         BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
4436         BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
4437         BUILD_WITH_MIC_LDADD="$with_mic_libs"
4438         AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
4439         AC_SUBST(BUILD_WITH_MIC_LIBPATH)
4440         AC_SUBST(BUILD_WITH_MIC_LDADD)
4441 fi
4442 #}}}
4443
4444 # --with-libvarnish {{{
4445 with_libvarnish_cppflags=""
4446 with_libvarnish_cflags=""
4447 with_libvarnish_libs=""
4448 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
4449 [
4450         if test "x$withval" = "xno"
4451         then
4452                 with_libvarnish="no"
4453         else if test "x$withval" = "xyes"
4454         then
4455                 with_libvarnish="use_pkgconfig"
4456         else if test -d "$with_libvarnish/lib"
4457         then
4458                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
4459                 with_libvarnish_cflags="-I$withval/include"
4460                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
4461                 with_libvarnish="yes"
4462         fi; fi; fi
4463 ],
4464 [with_libvarnish="use_pkgconfig"])
4465
4466 # configure using pkg-config
4467 if test "x$with_libvarnish" = "xuse_pkgconfig"
4468 then
4469         if test "x$PKG_CONFIG" = "x"
4470         then
4471                 with_libvarnish="no (Don't have pkg-config)"
4472         fi
4473 fi
4474 if test "x$with_libvarnish" = "xuse_pkgconfig"
4475 then
4476         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
4477         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
4478         if test $? -ne 0
4479         then
4480                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
4481         fi
4482 fi
4483 if test "x$with_libvarnish" = "xuse_pkgconfig"
4484 then
4485         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
4486         if test $? -ne 0
4487         then
4488                 with_libvarnish="no ($PKG_CONFIG failed)"
4489         fi
4490         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
4491         if test $? -ne 0
4492         then
4493                 with_libvarnish="no ($PKG_CONFIG failed)"
4494         fi
4495 fi
4496 if test "x$with_libvarnish" = "xuse_pkgconfig"
4497 then
4498         with_libvarnish="yes"
4499 fi
4500
4501 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
4502 # the actual checks.
4503 if test "x$with_libvarnish" = "xyes"
4504 then
4505         SAVE_CPPFLAGS="$CPPFLAGS"
4506         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4507         AC_CHECK_HEADERS(varnish/varnishapi.h, [], [with_libvarnish="no (varnish/varnishapi.h not found)"])
4508
4509         CPPFLAGS="$SAVE_CPPFLAGS"
4510 fi
4511 if test "x$with_libvarnish" = "xyes"
4512 then
4513         SAVE_CPPFLAGS="$CPPFLAGS"
4514         #SAVE_LDFLAGS="$LDFLAGS"
4515
4516         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4517         #LDFLAGS="$LDFLAGS $with_libvarnish_libs"
4518
4519     AC_CHECK_HEADERS(varnish/vsc.h,
4520         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
4521         [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])])
4522
4523         CPPFLAGS="$SAVE_CPPFLAGS"
4524         #LDFLAGS="$SAVE_LDFLAGS"
4525 fi
4526 if test "x$with_libvarnish" = "xyes"
4527 then
4528         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
4529         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
4530         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
4531         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
4532 fi
4533 # }}}
4534
4535 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
4536 with_libxml2="no (pkg-config isn't available)"
4537 with_libxml2_cflags=""
4538 with_libxml2_ldflags=""
4539 with_libvirt="no (pkg-config isn't available)"
4540 with_libvirt_cflags=""
4541 with_libvirt_ldflags=""
4542 if test "x$PKG_CONFIG" != "x"
4543 then
4544         pkg-config --exists 'libxml-2.0' 2>/dev/null
4545         if test "$?" = "0"
4546         then
4547                 with_libxml2="yes"
4548         else
4549                 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
4550         fi
4551
4552         pkg-config --exists libvirt 2>/dev/null
4553         if test "$?" = "0"
4554         then
4555                 with_libvirt="yes"
4556         else
4557                 with_libvirt="no (pkg-config doesn't know libvirt)"
4558         fi
4559 fi
4560 if test "x$with_libxml2" = "xyes"
4561 then
4562         with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
4563         if test $? -ne 0
4564         then
4565                 with_libxml2="no"
4566         fi
4567         with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
4568         if test $? -ne 0
4569         then
4570                 with_libxml2="no"
4571         fi
4572 fi
4573 if test "x$with_libxml2" = "xyes"
4574 then
4575         SAVE_CPPFLAGS="$CPPFLAGS"
4576         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
4577
4578         AC_CHECK_HEADERS(libxml/parser.h, [],
4579                       [with_libxml2="no (libxml/parser.h not found)"])
4580
4581         CPPFLAGS="$SAVE_CPPFLAGS"
4582 fi
4583 if test "x$with_libxml2" = "xyes"
4584 then
4585         SAVE_CFLAGS="$CFLAGS"
4586         SAVE_LDFLAGS="$LDFLAGS"
4587
4588         CFLAGS="$CFLAGS $with_libxml2_cflags"
4589         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
4590
4591         AC_CHECK_LIB(xml2, xmlXPathEval,
4592                      [with_libxml2="yes"],
4593                      [with_libxml2="no (symbol xmlXPathEval not found)"])
4594
4595         CFLAGS="$SAVE_CFLAGS"
4596         LDFLAGS="$SAVE_LDFLAGS"
4597 fi
4598 dnl Add the right compiler flags and libraries.
4599 if test "x$with_libxml2" = "xyes"; then
4600         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
4601         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
4602         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
4603         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
4604 fi
4605 if test "x$with_libvirt" = "xyes"
4606 then
4607         with_libvirt_cflags="`pkg-config --cflags libvirt`"
4608         if test $? -ne 0
4609         then
4610                 with_libvirt="no"
4611         fi
4612         with_libvirt_ldflags="`pkg-config --libs libvirt`"
4613         if test $? -ne 0
4614         then
4615                 with_libvirt="no"
4616         fi
4617 fi
4618 if test "x$with_libvirt" = "xyes"
4619 then
4620         SAVE_CPPFLAGS="$CPPFLAGS"
4621         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
4622
4623         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
4624                       [with_libvirt="no (libvirt/libvirt.h not found)"])
4625
4626         CPPFLAGS="$SAVE_CPPFLAGS"
4627 fi
4628 if test "x$with_libvirt" = "xyes"
4629 then
4630         SAVE_CFLAGS="$CFLAGS"
4631         SAVE_LDFLAGS="$LDFLAGS"
4632
4633         CFLAGS="$CFLAGS $with_libvirt_cflags"
4634         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
4635
4636         AC_CHECK_LIB(virt, virDomainBlockStats,
4637                      [with_libvirt="yes"],
4638                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
4639
4640         CFLAGS="$SAVE_CFLAGS"
4641         LDFLAGS="$SAVE_LDFLAGS"
4642 fi
4643 dnl Add the right compiler flags and libraries.
4644 if test "x$with_libvirt" = "xyes"; then
4645         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
4646         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
4647         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
4648         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
4649 fi
4650 # }}}
4651
4652 # $PKG_CONFIG --exists OpenIPMIpthread {{{
4653 with_libopenipmipthread="yes"
4654 with_libopenipmipthread_cflags=""
4655 with_libopenipmipthread_libs=""
4656
4657 AC_MSG_CHECKING([for pkg-config])
4658 temp_result="no"
4659 if test "x$PKG_CONFIG" = "x"
4660 then
4661         with_libopenipmipthread="no"
4662         temp_result="no"
4663 else
4664         temp_result="$PKG_CONFIG"
4665 fi
4666 AC_MSG_RESULT([$temp_result])
4667
4668 if test "x$with_libopenipmipthread" = "xyes"
4669 then
4670         AC_MSG_CHECKING([for libOpenIPMIpthread])
4671         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
4672         if test "$?" != "0"
4673         then
4674                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
4675         fi
4676         AC_MSG_RESULT([$with_libopenipmipthread])
4677 fi
4678
4679 if test "x$with_libopenipmipthread" = "xyes"
4680 then
4681         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
4682         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
4683         if test "$?" = "0"
4684         then
4685                 with_libopenipmipthread_cflags="$temp_result"
4686         else
4687                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
4688                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
4689         fi
4690         AC_MSG_RESULT([$temp_result])
4691 fi
4692
4693 if test "x$with_libopenipmipthread" = "xyes"
4694 then
4695         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
4696         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
4697         if test "$?" = "0"
4698         then
4699                 with_libopenipmipthread_ldflags="$temp_result"
4700         else
4701                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
4702                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
4703         fi
4704         AC_MSG_RESULT([$temp_result])
4705 fi
4706
4707 if test "x$with_libopenipmipthread" = "xyes"
4708 then
4709         SAVE_CPPFLAGS="$CPPFLAGS"
4710         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
4711
4712         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
4713                          [with_libopenipmipthread="yes"],
4714                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
4715 [#include <OpenIPMI/ipmiif.h>
4716 #include <OpenIPMI/ipmi_err.h>
4717 #include <OpenIPMI/ipmi_posix.h>
4718 #include <OpenIPMI/ipmi_conn.h>
4719 ])
4720
4721         CPPFLAGS="$SAVE_CPPFLAGS"
4722 fi
4723
4724 if test "x$with_libopenipmipthread" = "xyes"
4725 then
4726         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
4727         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
4728         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
4729         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
4730 fi
4731 # }}}
4732
4733 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
4734                 [with_libnotify="yes"],
4735                 [if test "x$LIBNOTIFY_PKG_ERRORS" = "x"; then
4736                          with_libnotify="no"
4737                  else
4738                          with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"
4739                  fi])
4740
4741 # Check for enabled/disabled features
4742 #
4743
4744 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
4745 # ------------------------------------------------------------
4746 dnl
4747 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
4748 dnl
4749 AC_DEFUN(
4750         [AC_COLLECTD],
4751         [
4752         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
4753         m4_if(
4754                 [$2],
4755                 [enable],
4756                 [dnl
4757                 m4_define([EnDis],[disabled])dnl
4758                 m4_define([YesNo],[no])dnl
4759                 ],dnl
4760                 [m4_if(
4761                         [$2],
4762                         [disable],
4763                         [dnl
4764                         m4_define([EnDis],[enabled])dnl
4765                         m4_define([YesNo],[yes])dnl
4766                         ],
4767                         [dnl
4768                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
4769                         ]dnl
4770                 )]dnl
4771         )dnl
4772         m4_if([$3], [feature], [],
4773                 [m4_if(
4774                         [$3], [module], [],
4775                         [dnl
4776                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
4777                         ]dnl
4778                 )]dnl
4779         )dnl
4780         AC_ARG_ENABLE(
4781                 [$1],
4782                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
4783                 [],
4784                 enable_$1='[YesNo]'dnl
4785         )# AC_ARG_ENABLE
4786 if test "x$enable_$1" = "xno"
4787 then
4788         collectd_$1=0
4789 else
4790         if test "x$enable_$1" = "xyes"
4791         then
4792                 collectd_$1=1
4793         else
4794                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
4795                 collectd_$1=1
4796                 enable_$1='yes'
4797         fi
4798 fi
4799         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
4800         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
4801         ]dnl
4802 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4803
4804 # AC_PLUGIN(name, default, info)
4805 # ------------------------------------------------------------
4806 dnl
4807 AC_DEFUN(
4808   [AC_PLUGIN],
4809   [
4810     enable_plugin="no"
4811     force="no"
4812     AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
4813     [
4814      if test "x$enableval" = "xyes"
4815      then
4816              enable_plugin="yes"
4817      else if test "x$enableval" = "xforce"
4818      then
4819              enable_plugin="yes"
4820              force="yes"
4821      else
4822              enable_plugin="no (disabled on command line)"
4823      fi; fi
4824     ],
4825     [
4826          if test "x$enable_all_plugins" = "xauto"
4827          then
4828              if test "x$2" = "xyes"
4829              then
4830                      enable_plugin="yes"
4831              else
4832                      enable_plugin="no"
4833              fi
4834          else
4835              enable_plugin="$enable_all_plugins"
4836          fi
4837     ])
4838     if test "x$enable_plugin" = "xyes"
4839     then
4840             if test "x$2" = "xyes" || test "x$force" = "xyes"
4841             then
4842                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
4843                     if test "x$2" != "xyes"
4844                     then
4845                             dependency_warning="yes"
4846                     fi
4847             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
4848                     dependency_error="yes"
4849                     enable_plugin="no (dependency error)"
4850             fi
4851     fi
4852     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
4853     enable_$1="$enable_plugin"
4854   ]
4855 )# AC_PLUGIN(name, default, info)
4856
4857 m4_divert_once([HELP_ENABLE], [
4858 collectd features:])
4859 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
4860 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
4861 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
4862 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
4863
4864 dependency_warning="no"
4865 dependency_error="no"
4866
4867 plugin_ascent="no"
4868 plugin_barometer="no"
4869 plugin_battery="no"
4870 plugin_bind="no"
4871 plugin_cgroups="no"
4872 plugin_conntrack="no"
4873 plugin_contextswitch="no"
4874 plugin_cpu="no"
4875 plugin_cpufreq="no"
4876 plugin_curl_json="no"
4877 plugin_curl_xml="no"
4878 plugin_df="no"
4879 plugin_disk="no"
4880 plugin_entropy="no"
4881 plugin_ethstat="no"
4882 plugin_fscache="no"
4883 plugin_interface="no"
4884 plugin_ipmi="no"
4885 plugin_ipvs="no"
4886 plugin_irq="no"
4887 plugin_libvirt="no"
4888 plugin_load="no"
4889 plugin_log_logstash="no"
4890 plugin_memory="no"
4891 plugin_multimeter="no"
4892 plugin_nfs="no"
4893 plugin_numa="no"
4894 plugin_perl="no"
4895 plugin_processes="no"
4896 plugin_protocols="no"
4897 plugin_serial="no"
4898 plugin_swap="no"
4899 plugin_tape="no"
4900 plugin_tcpconns="no"
4901 plugin_ted="no"
4902 plugin_thermal="no"
4903 plugin_users="no"
4904 plugin_uptime="no"
4905 plugin_vmem="no"
4906 plugin_vserver="no"
4907 plugin_wireless="no"
4908 plugin_zfs_arc="no"
4909
4910 # Linux
4911 if test "x$ac_system" = "xLinux"
4912 then
4913         plugin_battery="yes"
4914         plugin_conntrack="yes"
4915         plugin_contextswitch="yes"
4916         plugin_cgroups="yes"
4917         plugin_cpu="yes"
4918         plugin_cpufreq="yes"
4919         plugin_disk="yes"
4920         plugin_entropy="yes"
4921         plugin_fscache="yes"
4922         plugin_interface="yes"
4923         plugin_irq="yes"
4924         plugin_load="yes"
4925         plugin_lvm="yes"
4926         plugin_memory="yes"
4927         plugin_nfs="yes"
4928         plugin_numa="yes"
4929         plugin_processes="yes"
4930         plugin_protocols="yes"
4931         plugin_serial="yes"
4932         plugin_swap="yes"
4933         plugin_tcpconns="yes"
4934         plugin_thermal="yes"
4935         plugin_uptime="yes"
4936         plugin_vmem="yes"
4937         plugin_vserver="yes"
4938         plugin_wireless="yes"
4939
4940         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
4941         then
4942                 plugin_ipvs="yes"
4943         fi
4944 fi
4945
4946 if test "x$ac_system" = "xOpenBSD"
4947 then
4948         plugin_tcpconns="yes"
4949 fi
4950
4951 # Mac OS X devices
4952 if test "x$with_libiokit" = "xyes"
4953 then
4954         plugin_battery="yes"
4955         plugin_disk="yes"
4956 fi
4957
4958 # AIX
4959
4960 if test "x$ac_system" = "xAIX"
4961 then
4962         plugin_tcpconns="yes"
4963 fi
4964
4965 # FreeBSD
4966
4967 if test "x$ac_system" = "xFreeBSD"
4968 then
4969         plugin_zfs_arc="yes"
4970 fi
4971
4972
4973 if test "x$with_perfstat" = "xyes"
4974 then
4975         plugin_cpu="yes"
4976         plugin_contextswitch="yes"
4977         plugin_disk="yes"
4978         plugin_memory="yes"
4979         plugin_swap="yes"
4980         plugin_interface="yes"
4981         plugin_load="yes"
4982         plugin_uptime="yes"
4983 fi
4984
4985 if test "x$with_procinfo" = "xyes"
4986 then
4987         plugin_processes="yes"
4988 fi
4989
4990 # Solaris
4991 if test "x$with_kstat" = "xyes"
4992 then
4993         plugin_nfs="yes"
4994         plugin_uptime="yes"
4995         plugin_zfs_arc="yes"
4996 fi
4997
4998 if test "x$with_devinfo$with_kstat" = "xyesyes"
4999 then
5000         plugin_cpu="yes"
5001         plugin_disk="yes"
5002         plugin_interface="yes"
5003         plugin_memory="yes"
5004         plugin_tape="yes"
5005 fi
5006
5007 # libi2c-dev
5008 with_libi2c="no"
5009 if test "x$ac_system" = "xLinux"
5010 then
5011 AC_CHECK_DECL(i2c_smbus_read_i2c_block_data,
5012         [with_libi2c="yes"],
5013         [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
5014         [[#include <stdlib.h>
5015         #include <linux/i2c-dev.h>]])
5016 fi
5017
5018 if test "x$with_libi2c" = "xyes"
5019 then
5020         plugin_barometer="yes"
5021 fi
5022
5023
5024 # libstatgrab
5025 if test "x$with_libstatgrab" = "xyes"
5026 then
5027         plugin_cpu="yes"
5028         plugin_disk="yes"
5029         plugin_interface="yes"
5030         plugin_load="yes"
5031         plugin_memory="yes"
5032         plugin_swap="yes"
5033         plugin_users="yes"
5034 fi
5035
5036 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5037 then
5038         plugin_ascent="yes"
5039         if test "x$have_strptime" = "xyes"
5040         then
5041                 plugin_bind="yes"
5042         fi
5043 fi
5044
5045 if test "x$with_libopenipmipthread" = "xyes"
5046 then
5047         plugin_ipmi="yes"
5048 fi
5049
5050 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
5051 then
5052         plugin_curl_json="yes"
5053 fi
5054
5055 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5056 then
5057         plugin_curl_xml="yes"
5058 fi
5059
5060 if test "x$have_processor_info" = "xyes"
5061 then
5062         plugin_cpu="yes"
5063 fi
5064 if test "x$have_sysctl" = "xyes"
5065 then
5066         plugin_cpu="yes"
5067         plugin_memory="yes"
5068         plugin_uptime="yes"
5069         if test "x$ac_system" = "xDarwin"
5070         then
5071                 plugin_swap="yes"
5072         fi
5073 fi
5074 if test "x$have_sysctlbyname" = "xyes"
5075 then
5076         plugin_contextswitch="yes"
5077         plugin_cpu="yes"
5078         plugin_memory="yes"
5079         plugin_tcpconns="yes"
5080 fi
5081
5082 # Df plugin: Check if we know how to determine mount points first.
5083 #if test "x$have_listmntent" = "xyes"; then
5084 #       plugin_df="yes"
5085 #fi
5086 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
5087 then
5088         plugin_df="yes"
5089 fi
5090 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
5091 then
5092         plugin_df="yes"
5093 fi
5094 #if test "x$have_getmntent" = "xseq"
5095 #then
5096 #       plugin_df="yes"
5097 #fi
5098 if test "x$c_cv_have_one_getmntent" = "xyes"
5099 then
5100         plugin_df="yes"
5101 fi
5102
5103 # Df plugin: Check if we have either `statfs' or `statvfs' second.
5104 if test "x$plugin_df" = "xyes"
5105 then
5106         plugin_df="no"
5107         if test "x$have_statfs" = "xyes"
5108         then
5109                 plugin_df="yes"
5110         fi
5111         if test "x$have_statvfs" = "xyes"
5112         then
5113                 plugin_df="yes"
5114         fi
5115 fi
5116
5117 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
5118 then
5119         plugin_ethstat="yes"
5120 fi
5121
5122 if test "x$have_getifaddrs" = "xyes"
5123 then
5124         plugin_interface="yes"
5125 fi
5126
5127 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
5128 then
5129         plugin_libvirt="yes"
5130 fi
5131
5132 if test "x$have_getloadavg" = "xyes"
5133 then
5134         plugin_load="yes"
5135 fi
5136
5137 if test "x$with_libyajl" = "xyes"
5138 then
5139         plugin_log_logstash="yes"
5140 fi
5141
5142 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
5143 then
5144         plugin_perl="yes"
5145 fi
5146
5147 # Mac OS X memory interface
5148 if test "x$have_host_statistics" = "xyes"
5149 then
5150         plugin_memory="yes"
5151 fi
5152
5153 if test "x$have_termios_h" = "xyes"
5154 then
5155         if test "x$ac_system" != "xAIX"
5156         then
5157                 plugin_multimeter="yes"
5158         fi
5159         plugin_ted="yes"
5160 fi
5161
5162 if test "x$have_thread_info" = "xyes"
5163 then
5164         plugin_processes="yes"
5165 fi
5166
5167 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
5168 then
5169         plugin_processes="yes"
5170 fi
5171
5172 if test "x$with_kvm_getswapinfo" = "xyes"
5173 then
5174         plugin_swap="yes"
5175 fi
5176
5177 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
5178 then
5179         plugin_swap="yes"
5180 fi
5181
5182 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
5183 then
5184         plugin_tcpconns="yes"
5185 fi
5186
5187 if test "x$have_getutent" = "xyes"
5188 then
5189         plugin_users="yes"
5190 fi
5191 if test "x$have_getutxent" = "xyes"
5192 then
5193         plugin_users="yes"
5194 fi
5195
5196 m4_divert_once([HELP_ENABLE], [
5197 collectd plugins:])
5198
5199 AC_ARG_ENABLE([all-plugins],
5200                 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
5201                 [
5202                  if test "x$enableval" = "xyes"
5203                  then
5204                          enable_all_plugins="yes"
5205                  else if test "x$enableval" = "xauto"
5206                  then
5207                          enable_all_plugins="auto"
5208                  else
5209                          enable_all_plugins="no"
5210                  fi; fi
5211                 ],
5212                 [enable_all_plugins="auto"])
5213
5214 m4_divert_once([HELP_ENABLE], [])
5215
5216 AC_PLUGIN([aggregation], [yes],                [Aggregation plugin])
5217 AC_PLUGIN([amqp],        [$with_librabbitmq],  [AMQP output plugin])
5218 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
5219 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
5220 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
5221 AC_PLUGIN([aquaero],     [$with_libaquaero5],  [Aquaero's hardware sensors])
5222 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
5223 AC_PLUGIN([barometer],   [$plugin_barometer],  [Barometer sensor on I2C])
5224 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
5225 AC_PLUGIN([bind],        [$plugin_bind],       [ISC Bind nameserver statistics])
5226 AC_PLUGIN([conntrack],   [$plugin_conntrack],  [nf_conntrack statistics])
5227 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
5228 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
5229 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
5230 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
5231 AC_PLUGIN([curl],        [$with_libcurl],      [CURL generic web statistics])
5232 AC_PLUGIN([curl_json],   [$plugin_curl_json],    [CouchDB statistics])
5233 AC_PLUGIN([curl_xml],   [$plugin_curl_xml],    [CURL generic xml statistics])
5234 AC_PLUGIN([cgroups],     [$plugin_cgroups],    [CGroups CPU usage accounting])
5235 AC_PLUGIN([dbi],         [$with_libdbi],       [General database statistics])
5236 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
5237 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
5238 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
5239 AC_PLUGIN([email],       [yes],                [EMail statistics])
5240 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
5241 AC_PLUGIN([ethstat],     [$plugin_ethstat],    [Stats from NIC driver])
5242 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
5243 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
5244 AC_PLUGIN([fscache],     [$plugin_fscache],    [fscache statistics])
5245 AC_PLUGIN([gmond],       [$with_libganglia],   [Ganglia plugin])
5246 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
5247 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
5248 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
5249 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
5250 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
5251 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
5252 AC_PLUGIN([java],        [$with_java],         [Embed the Java Virtual Machine])
5253 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
5254 AC_PLUGIN([load],        [$plugin_load],       [System load])
5255 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
5256 AC_PLUGIN([log_logstash], [$plugin_log_logstash], [Logstash json_event compatible logging])
5257 AC_PLUGIN([lpar],        [$with_perfstat],     [AIX logical partitions statistics])
5258 AC_PLUGIN([lvm],         [$with_liblvm2app],   [LVM statistics])
5259 AC_PLUGIN([madwifi],     [$have_linux_wireless_h], [Madwifi wireless statistics])
5260 AC_PLUGIN([match_empty_counter], [yes],        [The empty counter match])
5261 AC_PLUGIN([match_hashed], [yes],               [The hashed match])
5262 AC_PLUGIN([match_regex], [yes],                [The regex match])
5263 AC_PLUGIN([match_timediff], [yes],             [The timediff match])
5264 AC_PLUGIN([match_value], [yes],                [The value match])
5265 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
5266 AC_PLUGIN([md],          [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
5267 AC_PLUGIN([memcachec],   [$with_libmemcached], [memcachec statistics])
5268 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
5269 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
5270 AC_PLUGIN([mic],         [$with_mic],          [Intel Many Integrated Core stats])
5271 AC_PLUGIN([modbus],      [$with_libmodbus],    [Modbus plugin])
5272 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
5273 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
5274 AC_PLUGIN([netapp],      [$with_libnetapp],    [NetApp plugin])
5275 AC_PLUGIN([netlink],     [$with_libmnl],       [Enhanced Linux network statistics])
5276 AC_PLUGIN([network],     [yes],                [Network communication plugin])
5277 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
5278 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
5279 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
5280 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
5281 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
5282 AC_PLUGIN([numa],        [$plugin_numa],       [NUMA virtual memory statistics])
5283 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
5284 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
5285 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
5286 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
5287 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
5288 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
5289 AC_PLUGIN([pf],          [$have_net_pfvar_h],  [BSD packet filter (PF) statistics])
5290 # FIXME: Check for libevent, too.
5291 AC_PLUGIN([pinba],       [$have_protoc_c],     [Pinba statistics])
5292 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
5293 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
5294 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
5295 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
5296 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
5297 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
5298 AC_PLUGIN([redis],       [$with_libcredis],    [Redis plugin])
5299 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
5300 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
5301 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
5302 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
5303 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
5304 AC_PLUGIN([sigrok],      [$with_libsigrok],    [sigrok acquisition sources])
5305 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
5306 AC_PLUGIN([statsd],      [yes],                [StatsD plugin])
5307 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
5308 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
5309 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
5310 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
5311 AC_PLUGIN([tail_csv],    [yes],                [Parsing of CSV files])
5312 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
5313 AC_PLUGIN([target_notification], [yes],        [The notification target])
5314 AC_PLUGIN([target_replace], [yes],             [The replace target])
5315 AC_PLUGIN([target_scale],[yes],                [The scale target])
5316 AC_PLUGIN([target_set],  [yes],                [The set target])
5317 AC_PLUGIN([target_v5upgrade], [yes],           [The v5upgrade target])
5318 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
5319 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
5320 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
5321 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
5322 AC_PLUGIN([threshold],   [yes],                [Threshold checking plugin])
5323 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
5324 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
5325 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
5326 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
5327 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
5328 AC_PLUGIN([varnish],     [$with_libvarnish],   [Varnish cache statistics])
5329 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
5330 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
5331 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
5332 AC_PLUGIN([write_graphite], [yes],             [Graphite / Carbon output plugin])
5333 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
5334 AC_PLUGIN([write_kafka],  [$with_librdkafka],  [Kafka output plugin])
5335 AC_PLUGIN([write_mongodb], [$with_libmongoc],  [MongoDB output plugin])
5336 AC_PLUGIN([write_redis], [$with_libcredis],    [Redis output plugin])
5337 AC_PLUGIN([write_riemann], [$have_protoc_c],   [Riemann output plugin])
5338 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
5339 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
5340
5341 dnl Default configuration file
5342 # Load either syslog or logfile
5343 LOAD_PLUGIN_SYSLOG=""
5344 LOAD_PLUGIN_LOGFILE=""
5345 LOAD_PLUGIN_LOG_LOGSTASH=""
5346
5347 AC_MSG_CHECKING([which default log plugin to load])
5348 default_log_plugin="none"
5349 if test "x$enable_syslog" = "xyes"
5350 then
5351         default_log_plugin="syslog"
5352 else
5353         LOAD_PLUGIN_SYSLOG="##"
5354 fi
5355
5356 if test "x$enable_logfile" = "xyes"
5357 then
5358         if test "x$default_log_plugin" = "xnone"
5359         then
5360                 default_log_plugin="logfile"
5361         else
5362                 LOAD_PLUGIN_LOGFILE="#"
5363         fi
5364 else
5365         LOAD_PLUGIN_LOGFILE="##"
5366 fi
5367
5368 if test "x$enable_logfile" = "xyes"
5369 then
5370   LOAD_PLUGIN_LOG_LOGSTASH="#"
5371 else
5372   LOAD_PLUGIN_LOG_LOGSTASH="##"
5373 fi
5374
5375
5376 AC_MSG_RESULT([$default_log_plugin])
5377
5378 AC_SUBST(LOAD_PLUGIN_SYSLOG)
5379 AC_SUBST(LOAD_PLUGIN_LOGFILE)
5380 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
5381
5382 DEFAULT_LOG_LEVEL="info"
5383 if test "x$enable_debug" = "xyes"
5384 then
5385         DEFAULT_LOG_LEVEL="debug"
5386 fi
5387 AC_SUBST(DEFAULT_LOG_LEVEL)
5388
5389 # Load only one of rrdtool, network, csv in the default config.
5390 LOAD_PLUGIN_RRDTOOL=""
5391 LOAD_PLUGIN_NETWORK=""
5392 LOAD_PLUGIN_CSV=""
5393
5394 AC_MSG_CHECKING([which default write plugin to load])
5395 default_write_plugin="none"
5396 if test "x$enable_rrdtool" = "xyes"
5397 then
5398         default_write_plugin="rrdtool"
5399 else
5400         LOAD_PLUGIN_RRDTOOL="##"
5401 fi
5402
5403 if test "x$enable_network" = "xyes"
5404 then
5405         if test "x$default_write_plugin" = "xnone"
5406         then
5407                 default_write_plugin="network"
5408         else
5409                 LOAD_PLUGIN_NETWORK="#"
5410         fi
5411 else
5412         LOAD_PLUGIN_NETWORK="##"
5413 fi
5414
5415 if test "x$enable_csv" = "xyes"
5416 then
5417         if test "x$default_write_plugin" = "xnone"
5418         then
5419                 default_write_plugin="csv"
5420         else
5421                 LOAD_PLUGIN_CSV="#"
5422         fi
5423 else
5424         LOAD_PLUGIN_CSV="##"
5425 fi
5426 AC_MSG_RESULT([$default_write_plugin])
5427
5428 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5429 AC_SUBST(LOAD_PLUGIN_NETWORK)
5430 AC_SUBST(LOAD_PLUGIN_CSV)
5431
5432 dnl ip_vs.h
5433 if test "x$ac_system" = "xLinux" \
5434         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
5435 then
5436         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5437 fi
5438
5439 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5440 then
5441         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5442 fi
5443
5444 dnl Perl bindings
5445 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
5446 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5447 [
5448         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5449         then
5450                 PERL_BINDINGS_OPTIONS="$withval"
5451                 with_perl_bindings="yes"
5452         else
5453                 with_perl_bindings="$withval"
5454         fi
5455 ],
5456 [
5457         if test -n "$perl_interpreter"
5458         then
5459                 with_perl_bindings="yes"
5460         else
5461                 with_perl_bindings="no (no perl interpreter found)"
5462         fi
5463 ])
5464 if test "x$with_perl_bindings" = "xyes"
5465 then
5466         PERL_BINDINGS="perl"
5467 else
5468         PERL_BINDINGS=""
5469 fi
5470 AC_SUBST(PERL_BINDINGS)
5471 AC_SUBST(PERL_BINDINGS_OPTIONS)
5472
5473 dnl libcollectdclient
5474 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5475 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5476 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5477
5478 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5479
5480 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5481
5482 AC_SUBST(LCC_VERSION_MAJOR)
5483 AC_SUBST(LCC_VERSION_MINOR)
5484 AC_SUBST(LCC_VERSION_PATCH)
5485 AC_SUBST(LCC_VERSION_EXTRA)
5486 AC_SUBST(LCC_VERSION_STRING)
5487
5488 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
5489
5490 AC_CONFIG_FILES([Makefile src/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile])
5491 AC_OUTPUT
5492
5493 if test "x$with_librrd" = "xyes" \
5494         && test "x$librrd_threadsafe" != "xyes"
5495 then
5496         with_librrd="yes (warning: librrd is not thread-safe)"
5497 fi
5498
5499 if test "x$with_libperl" = "xyes"
5500 then
5501         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
5502 else
5503         enable_perl="no (needs libperl)"
5504 fi
5505
5506 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5507 then
5508         enable_perl="no (libperl doesn't support ithreads)"
5509 fi
5510
5511 if test "x$with_perl_bindings" = "xyes" \
5512         && test "x$PERL_BINDINGS_OPTIONS" != "x"
5513 then
5514         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5515 fi
5516
5517 cat <<EOF;
5518
5519 Configuration:
5520   Libraries:
5521     intel mic . . . . . . $with_mic
5522     libaquaero5 . . . . . $with_libaquaero5
5523     libcurl . . . . . . . $with_libcurl
5524     libdbi  . . . . . . . $with_libdbi
5525     libcredis . . . . . . $with_libcredis
5526     libesmtp  . . . . . . $with_libesmtp
5527     libganglia  . . . . . $with_libganglia
5528     libgcrypt . . . . . . $with_libgcrypt
5529     libi2c-dev  . . . . . $with_libi2c
5530     libiokit  . . . . . . $with_libiokit
5531     libiptc . . . . . . . $with_libiptc
5532     libjvm  . . . . . . . $with_java
5533     libkstat  . . . . . . $with_kstat
5534     libkvm  . . . . . . . $with_libkvm
5535     libmemcached  . . . . $with_libmemcached
5536     libmnl  . . . . . . . $with_libmnl
5537     libmodbus . . . . . . $with_libmodbus
5538     libmysql  . . . . . . $with_libmysql
5539     libnetapp . . . . . . $with_libnetapp
5540     libnetsnmp  . . . . . $with_libnetsnmp
5541     libnotify . . . . . . $with_libnotify
5542     liboconfig  . . . . . $with_liboconfig
5543     libopenipmi . . . . . $with_libopenipmipthread
5544     liboping  . . . . . . $with_liboping
5545     libpcap . . . . . . . $with_libpcap
5546     libperfstat . . . . . $with_perfstat
5547     libperl . . . . . . . $with_libperl
5548     libpq . . . . . . . . $with_libpq
5549     libpthread  . . . . . $with_libpthread
5550     librabbitmq . . . . . $with_librabbitmq
5551     librdkafka  . . . . . $with_librdkafka
5552     librouteros . . . . . $with_librouteros
5553     librrd  . . . . . . . $with_librrd
5554     libsensors  . . . . . $with_libsensors
5555     libsigrok   . . . . . $with_libsigrok
5556     libstatgrab . . . . . $with_libstatgrab
5557     libtokyotyrant  . . . $with_libtokyotyrant
5558     libudev . . . . . . . $with_libudev
5559     libupsclient  . . . . $with_libupsclient
5560     libvarnish  . . . . . $with_libvarnish
5561     libvirt . . . . . . . $with_libvirt
5562     libxml2 . . . . . . . $with_libxml2
5563     libxmms . . . . . . . $with_libxmms
5564     libyajl . . . . . . . $with_libyajl
5565     libevent  . . . . . . $with_libevent
5566     protobuf-c  . . . . . $have_protoc_c
5567     oracle  . . . . . . . $with_oracle
5568     python  . . . . . . . $with_python
5569
5570   Features:
5571     daemon mode . . . . . $enable_daemon
5572     debug . . . . . . . . $enable_debug
5573
5574   Bindings:
5575     perl  . . . . . . . . $with_perl_bindings
5576
5577   Modules:
5578     aggregation . . . . . $enable_aggregation
5579     amqp    . . . . . . . $enable_amqp
5580     apache  . . . . . . . $enable_apache
5581     apcups  . . . . . . . $enable_apcups
5582     aquaero . . . . . . . $enable_aquaero
5583     apple_sensors . . . . $enable_apple_sensors
5584     ascent  . . . . . . . $enable_ascent
5585     barometer . . . . . . $enable_barometer
5586     battery . . . . . . . $enable_battery
5587     bind  . . . . . . . . $enable_bind
5588     conntrack . . . . . . $enable_conntrack
5589     contextswitch . . . . $enable_contextswitch
5590     cgroups . . . . . . . $enable_cgroups
5591     cpu . . . . . . . . . $enable_cpu
5592     cpufreq . . . . . . . $enable_cpufreq
5593     csv . . . . . . . . . $enable_csv
5594     curl  . . . . . . . . $enable_curl
5595     curl_json . . . . . . $enable_curl_json
5596     curl_xml  . . . . . . $enable_curl_xml
5597     dbi . . . . . . . . . $enable_dbi
5598     df  . . . . . . . . . $enable_df
5599     disk  . . . . . . . . $enable_disk
5600     dns . . . . . . . . . $enable_dns
5601     email . . . . . . . . $enable_email
5602     entropy . . . . . . . $enable_entropy
5603     ethstat . . . . . . . $enable_ethstat
5604     exec  . . . . . . . . $enable_exec
5605     filecount . . . . . . $enable_filecount
5606     fscache . . . . . . . $enable_fscache
5607     gmond . . . . . . . . $enable_gmond
5608     hddtemp . . . . . . . $enable_hddtemp
5609     interface . . . . . . $enable_interface
5610     ipmi  . . . . . . . . $enable_ipmi
5611     iptables  . . . . . . $enable_iptables
5612     ipvs  . . . . . . . . $enable_ipvs
5613     irq . . . . . . . . . $enable_irq
5614     java  . . . . . . . . $enable_java
5615     libvirt . . . . . . . $enable_libvirt
5616     load  . . . . . . . . $enable_load
5617     logfile . . . . . . . $enable_logfile
5618     lpar  . . . . . . . . $enable_lpar
5619     log_logstash  . . . . $enable_log_logstash
5620     lvm . . . . . . . . . $enable_lvm
5621     madwifi . . . . . . . $enable_madwifi
5622     match_empty_counter . $enable_match_empty_counter
5623     match_hashed  . . . . $enable_match_hashed
5624     match_regex . . . . . $enable_match_regex
5625     match_timediff  . . . $enable_match_timediff
5626     match_value . . . . . $enable_match_value
5627     mbmon . . . . . . . . $enable_mbmon
5628     md  . . . . . . . . . $enable_md
5629     memcachec . . . . . . $enable_memcachec
5630     memcached . . . . . . $enable_memcached
5631     memory  . . . . . . . $enable_memory
5632     mic . . . . . . . . . $enable_mic
5633     modbus  . . . . . . . $enable_modbus
5634     multimeter  . . . . . $enable_multimeter
5635     mysql . . . . . . . . $enable_mysql
5636     netapp  . . . . . . . $enable_netapp
5637     netlink . . . . . . . $enable_netlink
5638     network . . . . . . . $enable_network
5639     nfs . . . . . . . . . $enable_nfs
5640     nginx . . . . . . . . $enable_nginx
5641     notify_desktop  . . . $enable_notify_desktop
5642     notify_email  . . . . $enable_notify_email
5643     ntpd  . . . . . . . . $enable_ntpd
5644     numa  . . . . . . . . $enable_numa
5645     nut . . . . . . . . . $enable_nut
5646     olsrd . . . . . . . . $enable_olsrd
5647     onewire . . . . . . . $enable_onewire
5648     openvpn . . . . . . . $enable_openvpn
5649     oracle  . . . . . . . $enable_oracle
5650     perl  . . . . . . . . $enable_perl
5651     pf  . . . . . . . . . $enable_pf
5652     pinba . . . . . . . . $enable_pinba
5653     ping  . . . . . . . . $enable_ping
5654     postgresql  . . . . . $enable_postgresql
5655     powerdns  . . . . . . $enable_powerdns
5656     processes . . . . . . $enable_processes
5657     protocols . . . . . . $enable_protocols
5658     python  . . . . . . . $enable_python
5659     redis . . . . . . . . $enable_redis
5660     routeros  . . . . . . $enable_routeros
5661     rrdcached . . . . . . $enable_rrdcached
5662     rrdtool . . . . . . . $enable_rrdtool
5663     sensors . . . . . . . $enable_sensors
5664     serial  . . . . . . . $enable_serial
5665     sigrok  . . . . . . . $enable_sigrok
5666     snmp  . . . . . . . . $enable_snmp
5667     statsd  . . . . . . . $enable_statsd
5668     swap  . . . . . . . . $enable_swap
5669     syslog  . . . . . . . $enable_syslog
5670     table . . . . . . . . $enable_table
5671     tail  . . . . . . . . $enable_tail
5672     tail_csv  . . . . . . $enable_tail_csv
5673     tape  . . . . . . . . $enable_tape
5674     target_notification . $enable_target_notification
5675     target_replace  . . . $enable_target_replace
5676     target_scale  . . . . $enable_target_scale
5677     target_set  . . . . . $enable_target_set
5678     target_v5upgrade  . . $enable_target_v5upgrade
5679     tcpconns  . . . . . . $enable_tcpconns
5680     teamspeak2  . . . . . $enable_teamspeak2
5681     ted . . . . . . . . . $enable_ted
5682     thermal . . . . . . . $enable_thermal
5683     threshold . . . . . . $enable_threshold
5684     tokyotyrant . . . . . $enable_tokyotyrant
5685     unixsock  . . . . . . $enable_unixsock
5686     uptime  . . . . . . . $enable_uptime
5687     users . . . . . . . . $enable_users
5688     uuid  . . . . . . . . $enable_uuid
5689     varnish . . . . . . . $enable_varnish
5690     vmem  . . . . . . . . $enable_vmem
5691     vserver . . . . . . . $enable_vserver
5692     wireless  . . . . . . $enable_wireless
5693     write_graphite  . . . $enable_write_graphite
5694     write_http  . . . . . $enable_write_http
5695     write_kafka . . . . . $enable_write_kafka
5696     write_mongodb . . . . $enable_write_mongodb
5697     write_redis . . . . . $enable_write_redis
5698     write_riemann . . . . $enable_write_riemann
5699     xmms  . . . . . . . . $enable_xmms
5700     zfs_arc . . . . . . . $enable_zfs_arc
5701
5702 EOF
5703
5704 if test "x$dependency_error" = "xyes"; then
5705         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
5706 fi
5707
5708 if test "x$dependency_warning" = "xyes"; then
5709         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
5710 fi
5711
5712 # vim: set fdm=marker :