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