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