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