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