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