1 dnl Process this file with autoconf to produce a configure script.
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])
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}"])
14 LT_INIT([dlopen disable-static])
16 AM_INIT_AUTOMAKE([subdir-objects tar-pax dist-bzip2 no-dist-gzip foreign])
17 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
20 AC_PREFIX_DEFAULT("/opt/collectd")
25 # Checks for programs.
28 [AC_MSG_ERROR([No compiler found that supports C99])]
37 AM_CONDITIONAL([COMPILER_IS_GCC], [test "x$GCC" = "xyes"])
42 AC_PATH_PROG([VALGRIND], [valgrind])
44 # Warn when pkg.m4 is missing
45 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
49 AC_CACHE_CHECK([if Bison is the parser generator],
50 [collectd_cv_prog_bison],
52 AS_IF([$YACC --version 2>/dev/null | $EGREP -q '^bison '],
53 [collectd_cv_prog_bison=yes],
54 [collectd_cv_prog_bison=no]
59 if test "x$collectd_cv_prog_bison" = "xno" && test ! -f "${srcdir}/src/liboconfig/parser.c"; then
60 AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/src/liboconfig/parser.c. Please install bison])
63 AS_IF([test "x$lt_cv_dlopen" = "xno"],
64 [AC_MSG_ERROR([Your system does not support dlopen])]
67 AC_SUBST([DLOPEN_LIBS], [$lt_cv_dlopen_libs])
70 AC_MSG_CHECKING([for kernel type ($host_os)])
73 AC_DEFINE([KERNEL_AIX], [1], [True if program is to be compiled for a AIX kernel])
77 AC_DEFINE([KERNEL_DARWIN], [1], [True if program is to be compiled for a Darwin kernel])
81 AC_DEFINE([KERNEL_FREEBSD], [1], [True if program is to be compiled for a FreeBSD kernel])
85 AC_DEFINE([KERNEL_LINUX], [1], [True if program is to be compiled for a Linux kernel])
89 AC_DEFINE([KERNEL_NETBSD], [1], [True if program is to be compiled for a NetBSD kernel])
93 AC_DEFINE([KERNEL_OPENBSD], [1], [True if program is to be compiled for an OpenBSD kernel])
97 AC_DEFINE([KERNEL_SOLARIS], [1], [True if program is to be compiled for a Solaris kernel])
104 AC_MSG_RESULT([$ac_system])
106 AM_CONDITIONAL([BUILD_AIX], [test "x$ac_system" = "xAIX"])
107 AM_CONDITIONAL([BUILD_DARWIN], [test "x$ac_system" = "xDarwin"])
108 AM_CONDITIONAL([BUILD_FREEBSD], [test "x$ac_system" = "xFreeBSD"])
109 AM_CONDITIONAL([BUILD_LINUX], [test "x$ac_system" = "xLinux"])
110 AM_CONDITIONAL([BUILD_OPENBSD], [test "x$ac_system" = "xOpenBSD"])
111 AM_CONDITIONAL([BUILD_SOLARIS], [test "x$ac_system" = "xSolaris"])
113 if test "x$ac_system" = "xLinux"; then
114 AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
115 if test "x$KERNEL_DIR" = "x"; then
116 KERNEL_DIR="/lib/modules/`uname -r`/source"
118 KERNEL_CFLAGS="-I$KERNEL_DIR/include"
119 AC_SUBST([KERNEL_CFLAGS])
122 if test "x$ac_system" = "xSolaris"; then
123 AC_DEFINE([_POSIX_PTHREAD_SEMANTICS], [1], [Define to enforce POSIX thread semantics under Solaris.])
124 AC_DEFINE([_REENTRANT], [1], [Define to enable reentrancy interfaces.])
126 AC_MSG_CHECKING([whether compiler builds 64bit binaries])
132 # error "Compiler not in 64bit mode."
137 [AC_MSG_RESULT([yes])],
140 AC_MSG_NOTICE([Solaris detected. Please consider building a 64-bit binary.])
145 if test "x$ac_system" = "xAIX"; then
146 AC_DEFINE([_THREAD_SAFE_ERRNO], [1], [Define to use the thread-safe version of errno under AIX.])
149 # Where to install .pc files.
150 pkgconfigdir="${libdir}/pkgconfig"
151 AC_SUBST([pkgconfigdir])
154 # Checks for header files.
159 AC_CHECK_HEADERS_ONCE([ \
199 if test "x$ac_system" = "xNetBSD"; then
200 # For entropy plugin on newer NetBSD
201 AC_CHECK_HEADERS([sys/rndio.h], [], [],
204 # include <sys/types.h>
207 # include <sys/ioctl.h>
210 # include <sys/param.h>
217 AC_CHECK_HEADERS([netinet/in_systm.h], [], [],
221 # include <sys/types.h>
226 AC_CHECK_HEADERS([netinet/in.h], [], [],
230 # include <sys/types.h>
232 #if HAVE_NETINET_IN_SYSTM_H
233 # include <netinet/in_systm.h>
238 AC_CHECK_HEADERS([netinet/ip.h], [], [],
242 # include <sys/types.h>
244 #if HAVE_NETINET_IN_SYSTM_H
245 # include <netinet/in_systm.h>
247 #if HAVE_NETINET_IN_H
248 # include <netinet/in.h>
253 AC_CHECK_HEADERS([netinet/ip_icmp.h], [], [],
257 # include <sys/types.h>
259 #if HAVE_NETINET_IN_SYSTM_H
260 # include <netinet/in_systm.h>
262 #if HAVE_NETINET_IN_H
263 # include <netinet/in.h>
265 #if HAVE_NETINET_IP_H
266 # include <netinet/ip.h>
271 AC_CHECK_HEADERS([netinet/ip_var.h], [], [],
275 # include <sys/types.h>
277 #if HAVE_NETINET_IN_SYSTM_H
278 # include <netinet/in_systm.h>
280 #if HAVE_NETINET_IN_H
281 # include <netinet/in.h>
283 #if HAVE_NETINET_IP_H
284 # include <netinet/ip.h>
289 AC_CHECK_HEADERS([netinet/ip6.h], [], [],
293 # include <sys/types.h>
295 #if HAVE_NETINET_IN_SYSTM_H
296 # include <netinet/in_systm.h>
298 #if HAVE_NETINET_IN_H
299 # include <netinet/in.h>
304 AC_CHECK_HEADERS([netinet/icmp6.h], [], [],
308 # include <sys/types.h>
310 #if HAVE_NETINET_IN_SYSTM_H
311 # include <netinet/in_systm.h>
313 #if HAVE_NETINET_IN_H
314 # include <netinet/in.h>
316 #if HAVE_NETINET_IP6_H
317 # include <netinet/ip6.h>
322 AC_CHECK_HEADERS([netinet/tcp.h], [], [],
326 # include <sys/types.h>
328 #if HAVE_NETINET_IN_SYSTM_H
329 # include <netinet/in_systm.h>
331 #if HAVE_NETINET_IN_H
332 # include <netinet/in.h>
334 #if HAVE_NETINET_IP_H
335 # include <netinet/ip.h>
340 AC_CHECK_HEADERS([netinet/udp.h], [], [],
344 # include <sys/types.h>
346 #if HAVE_NETINET_IN_SYSTM_H
347 # include <netinet/in_systm.h>
349 #if HAVE_NETINET_IN_H
350 # include <netinet/in.h>
352 #if HAVE_NETINET_IP_H
353 # include <netinet/ip.h>
359 AC_CHECK_HEADERS([sys/dkstat.h])
360 if test "x$ac_system" = "xDarwin"; then
370 mach/processor_set.h \
372 mach/processor_info.h \
378 mach/vm_statistics.h \
380 CoreFoundation/CoreFoundation.h \
383 IOKit/ps/IOPSKeys.h \
385 IOKit/storage/IOBlockStorageDriver.h
389 # For the battery plugin
390 AC_CHECK_HEADERS([IOKit/ps/IOPowerSources.h], [], [],
392 #if HAVE_IOKIT_IOKITLIB_H
393 # include <IOKit/IOKitLib.h>
395 #if HAVE_IOKIT_IOTYPES_H
396 # include <IOKit/IOTypes.h>
402 AC_CHECK_HEADERS([sys/sysctl.h], [], [],
405 # include <sys/types.h>
408 # include <sys/param.h>
413 # For interface plugin
414 AC_CHECK_HEADERS([ifaddrs.h])
415 AC_CHECK_HEADERS([net/if.h], [], [],
418 # include <sys/types.h>
420 #if HAVE_SYS_SOCKET_H
421 # include <sys/socket.h>
426 if test "x$ac_system" = "xLinux"; then
428 AC_CHECK_HEADERS([linux/major.h])
430 # For md module (Linux only)
431 AC_CHECK_HEADERS([linux/raid/md_u.h],
432 [have_linux_raid_md_u_h="yes"],
433 [have_linux_raid_md_u_h="no"],
435 #include <sys/ioctl.h>
436 #include <linux/major.h>
437 #include <linux/types.h>
440 AC_CHECK_HEADERS([sys/sysmacros.h])
442 AC_CHECK_HEADERS([linux/wireless.h],
443 [have_linux_wireless_h="yes"],
444 [have_linux_wireless_h="no"],
447 #include <sys/ioctl.h>
448 #include <sys/socket.h>
452 AC_CHECK_HEADERS([linux/if.h], [], [],
455 # include <sys/types.h>
457 #if HAVE_SYS_SOCKET_H
458 # include <sys/socket.h>
463 AC_CHECK_HEADERS([linux/inet_diag.h], [], [],
466 # include <sys/types.h>
468 #if HAVE_SYS_SOCKET_H
469 # include <sys/socket.h>
474 AC_CHECK_HEADERS([linux/netdevice.h], [], [],
477 # include <sys/types.h>
479 #if HAVE_SYS_SOCKET_H
480 # include <sys/socket.h>
483 # include <linux/if.h>
489 AC_CHECK_HEADERS([linux/sockios.h],
490 [have_linux_sockios_h="yes"],
491 [have_linux_sockios_h="no"],
494 # include <sys/ioctl.h>
502 AC_CHECK_HEADERS([linux/ethtool.h],
503 [have_linux_ethtool_h="yes"],
504 [have_linux_ethtool_h="no"],
507 # include <sys/ioctl.h>
512 #if HAVE_LINUX_SOCKIOS_H
513 # include <linux/sockios.h>
519 AC_CHECK_HEADERS([linux/ip_vs.h], [have_linux_ip_vs_h="yes"], [have_linux_ip_vs="no"])
520 AC_CHECK_HEADERS([net/ip_vs.h], [have_net_ip_vs_h="yes"], [have_net_ip_vs_h="no"])
521 AC_CHECK_HEADERS([ip_vs.h], [have_ip_vs_h="yes"], [have_ip_vs_h="no"])
523 ip_vs_h_needs_kernel_cflags="no"
525 if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"; then
526 SAVE_CFLAGS="$CFLAGS"
527 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
529 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
531 AC_CHECK_HEADERS([linux/ip_vs.h], [have_linux_ip_vs_h="yes"])
532 AC_CHECK_HEADERS([net/ip_vs.h], [have_net_ip_vs_h="yes"])
533 AC_CHECK_HEADERS([ip_vs.h], [have_ip_vs_h="yes"])
535 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"; then
536 ip_vs_h_needs_kernel_cflags="yes"
539 CFLAGS="$SAVE_CFLAGS"
542 # For the email plugin
543 AC_CHECK_HEADERS([linux/un.h], [], [],
545 #if HAVE_SYS_SOCKET_H
546 # include <sys/socket.h>
550 # For the turbostat plugin
551 AC_CHECK_HEADERS([asm/msr-index.h],
552 [have_asm_msrindex_h="yes"],
553 [have_asm_msrindex_h="no"]
556 if test "x$have_asm_msrindex_h" = "xyes"; then
557 AC_CACHE_CHECK([whether asm/msr-index.h has MSR_PKG_C10_RESIDENCY],
558 [c_cv_have_usable_asm_msrindex_h],
563 [[#include<asm/msr-index.h>]],
565 int y = MSR_PKG_C10_RESIDENCY;
570 [c_cv_have_usable_asm_msrindex_h="yes"],
571 [c_cv_have_usable_asm_msrindex_h="no"],
577 AC_CHECK_HEADERS([cpuid.h],
578 [have_cpuid_h="yes"],
579 [have_cpuid_h="no (cpuid.h not found)"]
582 AC_CHECK_HEADERS([sys/capability.h],
583 [have_capability="yes"],
584 [have_capability="no (<sys/capability.h> not found)"]
587 if test "x$have_capability" = "xyes"; then
588 AC_CHECK_LIB([cap], [cap_get_proc],
589 [have_capability="yes"],
590 [have_capability="no (cap_get_proc() not found)"]
594 if test "x$have_capability" = "xyes"; then
595 AC_CHECK_DECL([CAP_IS_SUPPORTED],
596 [have_capability="yes"],
597 [have_capability="no (CAP_IS_SUPPORTED not found)"],
598 [[#include <sys/capability.h>]]
602 if test "x$have_capability" = "xyes"; then
603 AC_DEFINE([HAVE_CAPABILITY], [1], [Define to 1 if you have cap_get_proc() (-lcap).])
607 have_linux_raid_md_u_h="no"
608 have_linux_wireless_h="no"
611 AM_CONDITIONAL([IP_VS_H_NEEDS_KERNEL_CFLAGS], [test "x$ip_vs_h_needs_kernel_cflags" = "xyes"])
612 AM_CONDITIONAL([BUILD_WITH_CAPABILITY], [test "x$have_capability" = "xyes"])
614 # For the swap module
615 have_sys_swap_h="yes"
616 AC_CHECK_HEADERS([sys/swap.h vm/anon.h],
618 [have_sys_swap_h="no"],
620 #undef _FILE_OFFSET_BITS
621 #undef _LARGEFILE64_SOURCE
623 # include <sys/types.h>
626 # include <sys/param.h>
632 # For the processes plugin
634 AC_CHECK_HEADERS([sys/loadavg.h linux/config.h utmp.h utmpx.h])
637 AC_CHECK_HEADERS([sys/ucred.h], [], [],
640 # include <sys/types.h>
643 # include <sys/param.h>
648 # For mount interface
649 AC_CHECK_HEADERS([sys/mount.h], [], [],
652 # include <sys/types.h>
655 # include <sys/param.h>
662 [AS_HELP_STRING([--enable-xfs], [xfs support in df plugin @<:@default=yes@:>@])],
667 if test "x$enable_xfs" != "xno"; then
668 AC_CHECK_HEADERS([xfs/xqm.h],
671 if test "x$enable_xfs" = "xyes"; then
672 AC_MSG_ERROR([xfs/xqm.h not found])
675 [[#define _GNU_SOURCE]]
682 AC_CHECK_HEADERS([arpa/nameser.h])
683 AC_CHECK_HEADERS([arpa/nameser_compat.h], [], [],
685 #if HAVE_ARPA_NAMESER_H
686 # include <arpa/nameser.h>
691 AC_CHECK_HEADERS([net/if_arp.h], [], [],
693 #if HAVE_SYS_SOCKET_H
694 # include <sys/socket.h>
699 AC_CHECK_HEADERS([net/ppp_defs.h])
700 AC_CHECK_HEADERS([net/if_ppp.h], [], [],
702 #if HAVE_NET_PPP_DEFS_H
703 # include <net/ppp_defs.h>
708 AC_CHECK_HEADERS([netinet/if_ether.h], [], [],
712 # include <sys/types.h>
714 #if HAVE_SYS_SOCKET_H
715 # include <sys/socket.h>
720 #if HAVE_NETINET_IN_H
721 # include <netinet/in.h>
726 AC_CHECK_HEADERS([net/pfvar.h],
727 [have_net_pfvar_h="yes"],
728 [have_net_pfvar_h="no"],
731 # include <sys/ioctl.h>
733 #if HAVE_SYS_SOCKET_H
734 # include <sys/socket.h>
739 #if HAVE_NETINET_IN_H
740 # include <netinet/in.h>
745 # For the multimeter plugin
746 AC_CHECK_HEADERS([termios.h],
747 [have_termios_h="yes"],
748 [have_termios_h="no"]
751 # For cpusleep plugin
752 AC_CACHE_CHECK([whether clock_boottime and clock_monotonic are supported],
753 [c_cv_have_clock_boottime_monotonic],
757 [[#include <time.h>]],
759 struct timespec b, m;
760 clock_gettime(CLOCK_BOOTTIME, &b );
761 clock_gettime(CLOCK_MONOTONIC, &m );
765 [c_cv_have_clock_boottime_monotonic="yes"],
766 [c_cv_have_clock_boottime_monotonic="no"]
773 # Checks for typedefs, structures, and compiler characteristics.
784 [AC_LANG_SOURCE([[int main(void){}]]) ]
786 $CXX -c conftest.cpp $CXXFLAGS $@ > /dev/null 2> /dev/null
794 # Checks for library functions.
796 AC_CHECK_FUNCS_ONCE([ \
822 SAVE_CFLAGS="$CFLAGS"
823 # Emulate behavior of src/Makefile.am
824 if test "x$GCC" = "xyes"; then
825 CFLAGS="$CFLAGS -Wall -Werror"
828 AC_CACHE_CHECK([for strtok_r],
829 [c_cv_have_strtok_r_default],
840 char buffer[] = "foo,bar,baz";
847 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
850 printf ("token = %s;\n", token);
855 [c_cv_have_strtok_r_default="yes"],
856 [c_cv_have_strtok_r_default="no"]
861 if test "x$c_cv_have_strtok_r_default" = "xno"; then
862 CFLAGS="$CFLAGS -D_REENTRANT=1"
864 AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
865 [c_cv_have_strtok_r_reentrant],
876 char buffer[] = "foo,bar,baz";
883 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
886 printf ("token = %s;\n", token);
891 [c_cv_have_strtok_r_reentrant="yes"],
892 [AC_MSG_FAILURE([strtok_r is not available. Please file a bugreport!])]
898 CFLAGS="$SAVE_CFLAGS"
899 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"; then
900 CFLAGS="$CFLAGS -D_REENTRANT=1"
903 AC_CHECK_FUNCS([socket],
906 AC_CHECK_LIB([socket], [socket],
907 [socket_needs_socket="yes"],
908 [AC_MSG_ERROR([cannot find socket() in libsocket])]
912 AM_CONDITIONAL([BUILD_WITH_LIBSOCKET], [test "x$socket_needs_socket" = "xyes"])
914 clock_gettime_needs_posix4="no"
915 AC_CHECK_FUNCS([clock_gettime],
916 [have_clock_gettime="yes"],
917 [have_clock_gettime="no"]
920 if test "x$have_clock_gettime" = "xno"; then
921 AC_CHECK_LIB([rt], [clock_gettime],
923 clock_gettime_needs_rt="yes"
924 have_clock_gettime="yes"
929 if test "x$have_clock_gettime" = "xno"; then
930 AC_CHECK_LIB([posix4], [clock_gettime],
932 clock_gettime_needs_posix4="yes"
933 have_clock_gettime="yes"
938 if test "x$have_clock_gettime" = "xyes"; then
939 AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Define if the clock_gettime(2) function is available.])
942 AC_CHECK_FUNCS([nanosleep], [],
943 AC_CHECK_LIB([rt], [nanosleep],
944 [nanosleep_needs_rt="yes"],
946 AC_CHECK_LIB([posix4], [nanosleep],
947 [nanosleep_needs_posix4="yes"],
948 [AC_MSG_ERROR([cannot find nanosleep])]
954 AM_CONDITIONAL([BUILD_WITH_LIBRT], [test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes"])
955 AM_CONDITIONAL([BUILD_WITH_LIBPOSIX4], [test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes"])
957 AC_CHECK_FUNCS([getifaddrs], [have_getifaddrs="yes"], [have_getifaddrs="no"])
958 AC_CHECK_FUNCS([getloadavg], [have_getloadavg="yes"], [have_getloadavg="no"])
959 AC_CHECK_FUNCS([getutent], [have_getutent="yes"], [have_getutent="no"])
960 AC_CHECK_FUNCS([getutxent], [have_getutxent="yes"], [have_getutxent="no"])
961 AC_CHECK_FUNCS([host_statistics], [have_host_statistics="yes"], [have_host_statistics="no"])
962 AC_CHECK_FUNCS([processor_info], [have_processor_info="yes"], [have_processor_info="no"])
963 AC_CHECK_FUNCS([statfs], [have_statfs="yes"], [have_statfs="no"])
964 AC_CHECK_FUNCS([statvfs], [have_statvfs="yes"], [have_statvfs="no"])
965 AC_CHECK_FUNCS([sysctl], [have_sysctl="yes"], [have_sysctl="no"])
966 AC_CHECK_FUNCS([sysctlbyname], [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
967 AC_CHECK_FUNCS([syslog], [have_syslog="yes"], [have_syslog="no"])
968 AC_CHECK_FUNCS([thread_info], [have_thread_info="yes"], [have_thread_info="no"])
970 # Check for strptime {{{
971 if test "x$GCC" = "xyes"; then
972 SAVE_CFLAGS="$CFLAGS"
973 CFLAGS="$CFLAGS -Wall -Wextra -Werror"
976 AC_CHECK_FUNCS([strptime], [have_strptime="yes"], [have_strptime="no"])
977 if test "x$have_strptime" = "xyes"; then
978 AC_CACHE_CHECK([whether strptime is exported by default],
979 [c_cv_have_strptime_default],
984 [[#include <time.h>]],
987 (void)strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
991 [c_cv_have_strptime_default="yes"],
992 [c_cv_have_strptime_default="no"])
997 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"; then
998 AC_CACHE_CHECK([whether strptime needs standards mode],
999 [c_cv_have_strptime_standards],
1005 #ifndef _ISOC99_SOURCE
1006 # define _ISOC99_SOURCE 1
1008 #ifndef _POSIX_C_SOURCE
1009 # define _POSIX_C_SOURCE 200112L
1011 #ifndef _XOPEN_SOURCE
1012 # define _XOPEN_SOURCE 500
1018 (void)strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
1022 [c_cv_have_strptime_standards="yes"],
1023 [c_cv_have_strptime_standards="no"]
1028 if test "x$c_cv_have_strptime_standards" = "xyes"; then
1029 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], [1],
1030 [Set to true if strptime is only exported in X/Open mode (GNU libc).]
1037 if test "x$GCC" = "xyes"; then
1038 CFLAGS="$SAVE_CFLAGS"
1040 # }}} Check for strptime
1042 AC_MSG_CHECKING([for sysctl kern.cp_times])
1043 if test -x /sbin/sysctl; then
1044 /sbin/sysctl kern.cp_times >/dev/null 2>&1
1045 if test $? -eq 0; then
1046 AC_MSG_RESULT([yes])
1047 AC_DEFINE([HAVE_SYSCTL_KERN_CP_TIMES], [1], [Define if sysctl supports kern.cp_times])
1055 AC_MSG_CHECKING([for sysctl kern.cp_time])
1056 if test -x /sbin/sysctl; then
1057 /sbin/sysctl kern.cp_time >/dev/null 2>&1
1060 AC_MSG_RESULT([yes])
1061 AC_DEFINE([HAVE_SYSCTL_KERN_CP_TIME], [1], [Define if sysctl supports kern.cp_time])
1069 AC_CHECK_FUNCS([swapctl], [have_swapctl="yes"], [have_swapctl="no"])
1070 if test "x$have_swapctl" = "xyes"; then
1071 AC_CACHE_CHECK([whether swapctl takes two arguments],
1072 [c_cv_have_swapctl_two_args],
1078 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1079 # undef _FILE_OFFSET_BITS
1080 # undef _LARGEFILE64_SOURCE
1082 #include <sys/stat.h>
1083 #include <sys/param.h>
1084 #include <sys/swap.h>
1087 [[int num = swapctl(0, NULL);]]
1090 [c_cv_have_swapctl_two_args="yes"],
1091 [c_cv_have_swapctl_two_args="no"]
1096 AC_CACHE_CHECK([whether swapctl takes three arguments],
1097 [c_cv_have_swapctl_three_args],
1103 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1104 # undef _FILE_OFFSET_BITS
1105 # undef _LARGEFILE64_SOURCE
1107 #include <sys/stat.h>
1108 #include <sys/param.h>
1109 #include <sys/swap.h>
1112 [[int num = swapctl(0, NULL, 0);]]
1115 [c_cv_have_swapctl_three_args="yes"],
1116 [c_cv_have_swapctl_three_args="no"]
1122 # Check for different versions of `swapctl' here..
1123 if test "x$have_swapctl" = "xyes"; then
1124 if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
1125 AC_DEFINE([HAVE_SWAPCTL_TWO_ARGS], [1], [Define if the function swapctl exists and takes two arguments.])
1128 if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
1129 AC_DEFINE([HAVE_SWAPCTL_THREE_ARGS], [1], [Define if the function swapctl exists and takes three arguments.])
1134 AC_ARG_WITH([nan-emulation],
1135 [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
1137 if test "x$withval" = "xno"; then
1139 else if test "x$withval" = "xyes"; then
1148 if test "x$nan_type" = "xnone"; then
1149 AC_CACHE_CHECK([whether NAN is defined by default],
1150 [c_cv_have_nan_default],
1158 static double foo = NAN;
1167 [c_cv_have_nan_default="yes"],
1168 [c_cv_have_nan_default="no"]
1174 if test "x$c_cv_have_nan_default" = "xyes"; then
1178 if test "x$nan_type" = "xnone"; then
1179 AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
1180 [c_cv_have_nan_isoc],
1187 #define __USE_ISOC99 1
1189 static double foo = NAN;
1198 [c_cv_have_nan_isoc="yes"],
1199 [c_cv_have_nan_isoc="no"]
1205 if test "x$c_cv_have_nan_isoc" = "xyes"; then
1209 if test "x$nan_type" = "xnone"; then
1210 SAVE_LDFLAGS="$LDFLAGS"
1211 LDFLAGS="$LDFLAGS -lm"
1212 AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1213 [c_cv_have_nan_zero],
1224 #define NAN (0.0 / 0.0)
1226 # define isnan(f) ((f) != (f))
1228 static double foo = NAN;
1237 [c_cv_have_nan_zero="yes"],
1238 [c_cv_have_nan_zero="no"]
1242 LDFLAGS=$SAVE_LDFLAGS
1245 if test "x$c_cv_have_nan_zero" = "xyes"; then
1249 if test "x$nan_type" = "xdefault"; then
1250 AC_DEFINE([NAN_STATIC_DEFAULT], [1],
1251 [Define if NAN is defined by default and can initialize static variables.]
1253 else if test "x$nan_type" = "xisoc99"; then
1254 AC_DEFINE([NAN_STATIC_ISOC], [1],
1255 [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.]
1257 else if test "x$nan_type" = "xzero"; then
1258 AC_DEFINE([NAN_ZERO_ZERO], [1],
1259 [Define if NAN can be defined as (0.0 / 0.0)]
1262 AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1265 AC_ARG_WITH([fp-layout],
1267 AS_HELP_STRING([--with-fp-layout],
1268 [set the memory layout of doubles. For crosscompiling only.]
1272 if test "x$withval" = "xnothing"; then
1273 fp_layout_type="nothing"
1274 else if test "x$withval" = "xendianflip"; then
1275 fp_layout_type="endianflip"
1276 else if test "x$withval" = "xintswap"; then
1277 fp_layout_type="intswap"
1279 AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1282 [fp_layout_type="unknown"]
1285 if test "x$fp_layout_type" = "xunknown"; then
1286 AC_CACHE_CHECK([if doubles are stored in x86 representation],
1287 [c_cv_fp_layout_need_nothing],
1297 #include <inttypes.h>
1298 #include <stdbool.h>
1307 memcpy ((void *) &i0, (void *) &d, 8);
1310 memcpy ((void *) c, (void *) &i1, 8);
1312 if ((c[0] == 0x2f) && (c[1] == 0x25)
1313 && (c[2] == 0xc0) && (c[3] == 0xc7)
1314 && (c[4] == 0x43) && (c[5] == 0x2b)
1315 && (c[6] == 0x1f) && (c[7] == 0x5b))
1321 [c_cv_fp_layout_need_nothing="yes"],
1322 [c_cv_fp_layout_need_nothing="no"]
1328 if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1329 fp_layout_type="nothing"
1332 if test "x$fp_layout_type" = "xunknown"; then
1333 AC_CACHE_CHECK([if endianflip converts to x86 representation],
1334 [c_cv_fp_layout_need_endianflip],
1344 #include <inttypes.h>
1345 #include <stdbool.h>
1346 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1347 (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1348 (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1349 (((uint64_t)(A) & 0x000000ff00000000LL) >> 8) | \
1350 (((uint64_t)(A) & 0x00000000ff000000LL) << 8) | \
1351 (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1352 (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1353 (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1362 memcpy ((void *) &i0, (void *) &d, 8);
1364 i1 = endianflip (i0);
1365 memcpy ((void *) c, (void *) &i1, 8);
1367 if ((c[0] == 0x2f) && (c[1] == 0x25)
1368 && (c[2] == 0xc0) && (c[3] == 0xc7)
1369 && (c[4] == 0x43) && (c[5] == 0x2b)
1370 && (c[6] == 0x1f) && (c[7] == 0x5b))
1376 [c_cv_fp_layout_need_endianflip="yes"],
1377 [c_cv_fp_layout_need_endianflip="no"]
1383 if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1384 fp_layout_type="endianflip"
1387 if test "x$fp_layout_type" = "xunknown"; then
1388 AC_CACHE_CHECK([if intswap converts to x86 representation],
1389 [c_cv_fp_layout_need_intswap],
1399 #include <inttypes.h>
1400 #include <stdbool.h>
1401 #define intswap(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1402 (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1411 memcpy ((void *) &i0, (void *) &d, 8);
1414 memcpy ((void *) c, (void *) &i1, 8);
1416 if ((c[0] == 0x2f) && (c[1] == 0x25)
1417 && (c[2] == 0xc0) && (c[3] == 0xc7)
1418 && (c[4] == 0x43) && (c[5] == 0x2b)
1419 && (c[6] == 0x1f) && (c[7] == 0x5b))
1425 [c_cv_fp_layout_need_intswap="yes"],
1426 [c_cv_fp_layout_need_intswap="no"]
1432 if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1433 fp_layout_type="intswap"
1436 if test "x$fp_layout_type" = "xnothing"; then
1437 AC_DEFINE([FP_LAYOUT_NEED_NOTHING], [1],
1438 [Define if doubles are stored in x86 representation.]
1440 else if test "x$fp_layout_type" = "xendianflip"; then
1441 AC_DEFINE([FP_LAYOUT_NEED_ENDIANFLIP], [1],
1442 [Define if endianflip is needed to convert to x86 representation.]
1444 else if test "x$fp_layout_type" = "xintswap"; then
1445 AC_DEFINE([FP_LAYOUT_NEED_INTSWAP], [1],
1446 [Define if intswap is needed to convert to x86 representation.]
1449 AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1452 # For cpusleep plugin
1453 AC_CACHE_CHECK([whether clock_boottime and clock_monotonic are supported],
1454 [c_cv_have_clock_boottime_monotonic],
1458 [[#include <time.h>]],
1460 struct timespec b, m;
1461 clock_gettime(CLOCK_BOOTTIME, &b );
1462 clock_gettime(CLOCK_MONOTONIC, &m );
1466 [c_cv_have_clock_boottime_monotonic="yes"],
1467 [c_cv_have_clock_boottime_monotonic="no"]
1472 # --with-useragent {{{
1473 AC_ARG_WITH([useragent],
1474 [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1476 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
1477 AC_DEFINE_UNQUOTED([COLLECTD_USERAGENT], ["$withval"], [User agent for http requests])
1484 # --with-data-max-name-len {{{
1485 AC_ARG_WITH([data-max-name-len],
1486 [AS_HELP_STRING([--with-data-max-name-len@<:@=VALUE@:>@], [Maximum length of data buffers])],
1488 if test "x$withval" != "x" && test $withval -gt 0; then
1489 AC_DEFINE_UNQUOTED([DATA_MAX_NAME_LEN], [$withval], [Maximum length of data buffers])
1491 AC_MSG_ERROR([DATA_MAX_NAME_LEN must be a positive integer -- $withval given])
1494 [AC_DEFINE([DATA_MAX_NAME_LEN], [128], [Maximum length of data buffers])]
1498 AC_CHECK_FUNCS([getfsstat], [have_getfsstat="yes"], [have_getfsstat="no"])
1499 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"], [have_getvfsstat="no"])
1500 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"], [have_listmntent="no"])
1501 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"], [have_getmntent_r="no"])
1503 AC_CHECK_FUNCS(getmntent, [have_getmntent="libc"], [have_getmntent="no"])
1504 if test "x$have_getmntent" = "xno"; then
1505 AC_CHECK_LIB([sun], [getmntent],
1506 [have_getmntent="sun"],
1507 [have_gemntent="no"]
1511 if test "x$have_getmntent" = "xno"; then
1512 AC_CHECK_LIB([seq], [getmntent],
1513 [have_getmntent="seq"],
1514 [have_getmntent="no"]
1518 if test "x$have_getmntent" = "xno"; then
1519 AC_CHECK_LIB([gen], [getmntent],
1520 [have_getmntent="gen"],
1521 [have_getmntent="no"]
1525 if test "x$have_getmntent" = "xlibc"; then
1526 AC_CACHE_CHECK([whether getmntent takes one argument],
1527 [c_cv_have_one_getmntent],
1532 [[#include "$srcdir/src/utils_mount.h"]],
1536 fh = setmntent ("/etc/mtab", "r");
1537 me = getmntent (fh);
1538 return(me->mnt_passno);
1542 [c_cv_have_one_getmntent="yes"],
1543 [c_cv_have_one_getmntent="no"]
1548 AC_CACHE_CHECK([whether getmntent takes two arguments],
1549 [c_cv_have_two_getmntent],
1554 [[#include "$srcdir/src/utils_mount.h"]],
1559 fh = fopen ("/etc/mnttab", "r");
1560 status = getmntent (fh, &mt);
1565 [c_cv_have_two_getmntent="yes"],
1566 [c_cv_have_two_getmntent="no"]
1572 # Check for different versions of `getmntent' here..
1574 if test "x$have_getmntent" = "xlibc"; then
1575 if test "x$c_cv_have_one_getmntent" = "xyes"; then
1576 AC_DEFINE([HAVE_ONE_GETMNTENT], [1],
1577 [Define if the function getmntent exists and takes one argument.]
1581 if test "x$c_cv_have_two_getmntent" = "xyes"; then
1582 AC_DEFINE([HAVE_TWO_GETMNTENT], [1],
1583 [Define if the function getmntent exists and takes two arguments.]
1588 if test "x$have_getmntent" = "xsun"; then
1589 AC_DEFINE([HAVE_SUN_GETMNTENT], [1],
1590 [Define if the function getmntent exists. It is the version from libsun.]
1594 if test "x$have_getmntent" = "xgen"; then
1595 AC_DEFINE([HAVE_GEN_GETMNTENT], [1],
1596 [Define if the function getmntent exists. It is the version from libgen.]
1601 AC_CACHE_CHECK([whether htonll is defined],
1608 #include <inttypes.h>
1609 #include <sys/types.h>
1610 #include <netinet/in.h>
1612 [[return htonll(0);]]
1615 [c_cv_have_htonll="yes"],
1616 [c_cv_have_htonll="no"]
1621 if test "x$c_cv_have_htonll" = "xyes"; then
1622 AC_DEFINE([HAVE_HTONLL], [1], [Define if the function htonll exists.])
1625 # Check for structures
1626 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1627 [AC_DEFINE([HAVE_STRUCT_IF_DATA], [1], [Define if struct if_data exists and is usable.])],
1630 #include <sys/types.h>
1631 #include <sys/socket.h>
1636 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1637 [AC_DEFINE([HAVE_STRUCT_NET_DEVICE_STATS], [1], [Define if struct net_device_stats exists and is usable.])],
1640 #include <sys/types.h>
1641 #include <sys/socket.h>
1642 #include <linux/if.h>
1643 #include <linux/netdevice.h>
1647 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1648 [AC_DEFINE([HAVE_STRUCT_LINUX_INET_DIAG_REQ], [1], [Define if struct inet_diag_req exists and is usable.])],
1650 [[#include <linux/inet_diag.h>]]
1653 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1656 #include <netinet/in.h>
1661 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1663 AC_DEFINE([HAVE_STRUCT_KINFO_PROC_FREEBSD], [1], [Define if struct kinfo_proc exists in the FreeBSD variant.])
1664 have_struct_kinfo_proc_freebsd="yes"
1669 #include <sys/param.h>
1670 #include <sys/sysctl.h>
1671 #include <sys/user.h>
1675 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1677 AC_DEFINE([HAVE_STRUCT_KINFO_PROC_OPENBSD], [1], [Define if struct kinfo_proc exists in the OpenBSD variant.])
1678 have_struct_kinfo_proc_openbsd="yes"
1682 #include <sys/param.h>
1683 #include <sys/sysctl.h>
1688 AC_CHECK_MEMBERS([struct kinfo_proc2.p_pid, struct kinfo_proc2.p_uru_maxrss],
1690 AC_DEFINE([HAVE_STRUCT_KINFO_PROC2_NETBSD], [1], [Define if struct kinfo_proc2 exists in the NetBSD variant.])
1691 have_struct_kinfo_proc2_netbsd="yes"
1695 #include <sys/param.h>
1696 #include <sys/sysctl.h>
1701 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport],
1706 #define _DEFAULT_SOURCE
1708 #if HAVE_SYS_TYPES_H
1709 # include <sys/types.h>
1711 #if HAVE_NETINET_IN_SYSTM_H
1712 # include <netinet/in_systm.h>
1714 #if HAVE_NETINET_IN_H
1715 # include <netinet/in.h>
1717 #if HAVE_NETINET_IP_H
1718 # include <netinet/ip.h>
1720 #if HAVE_NETINET_UDP_H
1721 # include <netinet/udp.h>
1726 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source],
1731 #define _DEFAULT_SOURCE
1733 #if HAVE_SYS_TYPES_H
1734 # include <sys/types.h>
1736 #if HAVE_NETINET_IN_SYSTM_H
1737 # include <netinet/in_systm.h>
1739 #if HAVE_NETINET_IN_H
1740 # include <netinet/in.h>
1742 #if HAVE_NETINET_IP_H
1743 # include <netinet/ip.h>
1745 #if HAVE_NETINET_UDP_H
1746 # include <netinet/udp.h>
1751 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1754 [[# include <kstat.h>]]
1757 # check for pthread_setname_np
1758 SAVE_LDFLAGS="$LDFLAGS"
1759 LDFLAGS="$LDFLAGS -lpthread"
1761 AC_MSG_CHECKING([for pthread_setname_np])
1762 have_pthread_setname_np="no"
1768 #include <pthread.h>
1770 [[pthread_setname_np((pthread_t) {0}, "conftest");]]
1774 have_pthread_setname_np="yes"
1775 AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [pthread_setname_np() is available.])
1779 AC_MSG_RESULT([$have_pthread_setname_np])
1781 # check for pthread_set_name_np(3) (FreeBSD)
1782 AC_MSG_CHECKING([for pthread_set_name_np])
1783 have_pthread_set_name_np="no"
1787 [[#include <pthread_np.h>]],
1788 [[pthread_set_name_np((pthread_t) {0}, "conftest");]]
1792 have_pthread_set_name_np="yes"
1793 AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [pthread_set_name_np() is available.])
1796 AC_MSG_RESULT([$have_pthread_set_name_np])
1798 LDFLAGS="$SAVE_LDFLAGS"
1800 AC_CHECK_TYPES([struct ip6_ext],
1801 [have_ip6_ext="yes"],
1802 [have_ip6_ext="no"],
1805 #if HAVE_SYS_TYPES_H
1806 # include <sys/types.h>
1808 #if HAVE_NETINET_IN_SYSTM_H
1809 # include <netinet/in_systm.h>
1811 #if HAVE_NETINET_IN_H
1812 # include <netinet/in.h>
1814 #if HAVE_NETINET_IP6_H
1815 # include <netinet/ip6.h>
1820 if test "x$have_ip6_ext" = "xno"; then
1821 SAVE_CFLAGS="$CFLAGS"
1822 CFLAGS="$CFLAGS -DSOLARIS2=8"
1823 AC_CHECK_TYPES([struct ip6_ext],
1824 [have_ip6_ext="yes, with -DSOLARIS2=8"],
1825 [have_ip6_ext="no"],
1828 #if HAVE_SYS_TYPES_H
1829 # include <sys/types.h>
1831 #if HAVE_NETINET_IN_SYSTM_H
1832 # include <netinet/in_systm.h>
1834 #if HAVE_NETINET_IN_H
1835 # include <netinet/in.h>
1837 #if HAVE_NETINET_IP6_H
1838 # include <netinet/ip6.h>
1842 if test "x$have_ip6_ext" = "xno"; then
1843 CFLAGS="$SAVE_CFLAGS"
1848 if test "x$ac_system" = "xLinux"; then
1849 AC_CHECK_DECL([i2c_smbus_read_i2c_block_data],
1850 [with_libi2c="yes"],
1851 [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
1854 #include <linux/i2c-dev.h>
1858 with_libi2c="no (Linux only)"
1862 # Checks for libraries begin here
1865 # Check for libpthread
1867 AC_CHECK_LIB([pthread],
1870 [AC_MSG_ERROR([Symbol 'pthread_create' not found in libpthread])],
1873 PTHREAD_LIBS="$LIBS"
1875 AC_SUBST([PTHREAD_LIBS])
1877 AC_CHECK_HEADERS([pthread.h],
1879 [AC_MSG_ERROR([pthread.h not found])]
1882 m4_divert_once([HELP_WITH], [
1883 Collectd additional packages:])
1885 if test "x$ac_system" = "xAIX"; then
1889 with_perfstat="no (AIX only)"
1890 with_procinfo="no (AIX only)"
1893 if test "x$with_perfstat" = "xyes"; then
1894 AC_CHECK_LIB([perfstat], [perfstat_reset],
1895 [with_perfstat="yes"],
1896 [with_perfstat="no (perfstat not found)"]
1900 if test "x$with_perfstat" = "xyes"; then
1901 AC_DEFINE([HAVE_PERFSTAT], [1], [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1902 # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1903 AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled],
1906 [[#include <libperfstat.h]]
1908 if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"; then
1909 AC_DEFINE([PERFSTAT_SUPPORTS_DONATION], [1], [Define to 1 if your version of the 'perfstat' library supports donation])
1912 AM_CONDITIONAL([BUILD_WITH_PERFSTAT], [test "x$with_perfstat" = "xyes"])
1914 # Processes plugin under AIX.
1915 if test "x$with_procinfo" = "xyes"; then
1916 AC_CHECK_HEADERS([procinfo.h],
1917 [AC_DEFINE([HAVE_PROCINFO_H], [1], [Define to 1 if you have the procinfo.h])],
1918 [with_procinfo="no (procinfo.h not found)"]
1922 if test "x$ac_system" = "xSolaris"; then
1926 with_kstat="no (Solaris only)"
1927 with_devinfo="no (Solaris only)"
1930 if test "x$with_kstat" = "xyes"; then
1931 AC_CHECK_LIB([kstat], [kstat_open],
1933 [with_kstat="no (libkstat not found)"]
1937 if test "x$with_kstat" = "xyes"; then
1938 AC_CHECK_LIB([devinfo], [di_init],
1939 [with_devinfo="yes"],
1940 [with_devinfo="no (not found)"]
1942 AC_CHECK_HEADERS([kstat.h],
1943 [AC_DEFINE(HAVE_LIBKSTAT, [1], [Define to 1 if you have the 'kstat' library (-lkstat)])],
1944 [with_kstat="no (kstat.h not found)"]
1948 AM_CONDITIONAL([BUILD_WITH_LIBDEVINFO], [test "x$with_devinfo" = "xyes"])
1949 AM_CONDITIONAL([BUILD_WITH_LIBKSTAT], [test "x$with_kstat" = "xyes"])
1951 if test "x$ac_system" = "xDarwin"; then
1956 AM_CONDITIONAL([BUILD_WITH_LIBIOKIT], [test "x$with_libiokit" = "xyes"])
1959 AC_CHECK_LIB([kvm], [kvm_getprocs],
1960 [with_kvm_getprocs="yes"],
1961 [with_kvm_getprocs="no"]
1964 if test "x$with_kvm_getprocs" = "xyes"; then
1965 AC_DEFINE([HAVE_LIBKVM_GETPROCS], [1],
1966 [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)]
1971 AM_CONDITIONAL([BUILD_WITH_LIBKVM_GETPROCS], [test "x$with_kvm_getprocs" = "xyes"])
1973 AC_CHECK_LIB([kvm], [kvm_getswapinfo],
1974 [with_kvm_getswapinfo="yes"],
1975 [with_kvm_getswapinfo="no"]
1978 if test "x$with_kvm_getswapinfo" = "xyes"; then
1979 AC_DEFINE([HAVE_LIBKVM_GETSWAPINFO], [1],
1980 [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)]
1985 AM_CONDITIONAL([BUILD_WITH_LIBKVM_GETSWAPINFO], [test "x$with_kvm_getswapinfo" = "xyes"])
1987 AC_CHECK_LIB([kvm], [kvm_nlist],
1988 [with_kvm_nlist="yes"],
1989 [with_kvm_nlist="no"]
1992 if test "x$with_kvm_nlist" = "xyes"; then
1993 AC_CHECK_HEADERS([bsd/nlist.h nlist.h])
1994 AC_DEFINE([HAVE_LIBKVM_NLIST], [1],
1995 [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)]
2000 AM_CONDITIONAL([BUILD_WITH_LIBKVM_NLIST], [test "x$with_kvm_nlist" = "xyes"])
2002 AC_CHECK_LIB([kvm], [kvm_openfiles],
2003 [with_kvm_openfiles="yes"],
2004 [with_kvm_openfiles="no"]
2007 if test "x$with_kvm_openfiles" = "xyes"; then
2008 AC_DEFINE([HAVE_LIBKVM_NLIST], [1],
2009 [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)]
2014 # --with-libaquaero5 {{{
2015 AC_ARG_WITH([libaquaero5],
2016 [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
2018 if test "x$withval" = "xyes"; then
2019 with_libaquaero5="yes"
2020 else if test "x$withval" = "xno"; then
2021 with_libaquaero5="no"
2023 with_libaquaero5="yes"
2024 LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
2025 LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
2028 [with_libaquaero5="yes"]
2031 SAVE_CPPFLAGS="$CPPFLAGS"
2032 SAVE_LDFLAGS="$LDFLAGS"
2033 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
2034 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
2036 if test "x$with_libaquaero5" = "xyes"; then
2037 if test "x$LIBAQUAERO5_CFLAGS" != "x"; then
2038 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
2040 AC_CHECK_HEADERS([libaquaero5.h],
2041 [with_libaquaero5="yes"],
2042 [with_libaquaero5="no (libaquaero5.h not found)"]
2046 if test "x$with_libaquaero5" = "xyes"; then
2047 if test "x$LIBAQUAERO5_LDFLAGS" != "x"; then
2048 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
2050 AC_CHECK_LIB([aquaero5], libaquaero5_poll,
2051 [with_libaquaero5="yes"],
2052 [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"]
2056 CPPFLAGS="$SAVE_CPPFLAGS"
2057 LDFLAGS="$SAVE_LDFLAGS"
2059 if test "x$with_libaquaero5" = "xyes"; then
2060 BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
2061 BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
2063 AC_SUBST([BUILD_WITH_LIBAQUAERO5_CFLAGS])
2064 AC_SUBST([BUILD_WITH_LIBAQUAERO5_LDFLAGS])
2067 # --with-libhiredis {{{
2068 AC_ARG_WITH([libhiredis],
2069 [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@], [Path to libhiredis.])],
2071 if test "x$withval" = "xyes"; then
2072 with_libhiredis="yes"
2073 else if test "x$withval" = "xno"; then
2074 with_libhiredis="no"
2076 with_libhiredis="yes"
2077 LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
2078 LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
2081 [with_libhiredis="yes"]
2084 SAVE_CPPFLAGS="$CPPFLAGS"
2085 SAVE_LDFLAGS="$LDFLAGS"
2086 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
2087 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
2089 if test "x$with_libhiredis" = "xyes"; then
2090 if test "x$LIBHIREDIS_CPPFLAGS" != "x"; then
2091 AC_MSG_NOTICE([libhiredis CPPFLAGS: $LIBHIREDIS_CPPFLAGS])
2093 AC_CHECK_HEADERS([hiredis/hiredis.h],
2094 [with_libhiredis="yes"],
2095 [with_libhiredis="no (hiredis.h not found)"]
2099 if test "x$with_libhiredis" = "xyes"; then
2100 if test "x$LIBHIREDIS_LDFLAGS" != "x"; then
2101 AC_MSG_NOTICE([libhiredis LDFLAGS: $LIBHIREDIS_LDFLAGS])
2103 AC_CHECK_LIB([hiredis], [redisCommand],
2104 [with_libhiredis="yes"],
2105 [with_libhiredis="no (symbol 'redisCommand' not found)"]
2109 CPPFLAGS="$SAVE_CPPFLAGS"
2110 LDFLAGS="$SAVE_LDFLAGS"
2112 if test "x$with_libhiredis" = "xyes"; then
2113 BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
2114 BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
2117 AC_SUBST([BUILD_WITH_LIBHIREDIS_CPPFLAGS])
2118 AC_SUBST([BUILD_WITH_LIBHIREDIS_LDFLAGS])
2121 # --with-libcurl {{{
2122 with_curl_config="curl-config"
2125 AC_ARG_WITH(libcurl,
2126 [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
2128 if test "x$withval" = "xno"; then
2130 else if test "x$withval" = "xyes"; then
2133 if test -f "$withval" && test -x "$withval"; then
2134 with_curl_config="$withval"
2136 else if test -x "$withval/bin/curl-config"; then
2137 with_curl_config="$withval/bin/curl-config"
2143 [with_libcurl="yes"]
2146 if test "x$with_libcurl" = "xyes"; then
2147 with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
2148 curl_config_status=$?
2150 if test $curl_config_status -ne 0; then
2151 with_libcurl="no ($with_curl_config failed)"
2153 SAVE_CPPFLAGS="$CPPFLAGS"
2154 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
2156 AC_CHECK_HEADERS([curl/curl.h],
2157 [with_libcurl="yes"],
2158 [with_libcurl="no (curl/curl.h not found)"]
2161 CPPFLAGS="$SAVE_CPPFLAGS"
2165 if test "x$with_libcurl" = "xyes"; then
2166 with_curl_libs=`$with_curl_config --libs 2>/dev/null`
2167 curl_config_status=$?
2169 if test $curl_config_status -ne 0; then
2170 with_libcurl="no ($with_curl_config failed)"
2172 AC_CHECK_LIB([curl], [curl_easy_init],
2173 [with_libcurl="yes"],
2174 [with_libcurl="no (symbol 'curl_easy_init' not found)"],
2178 AC_CHECK_DECL([CURLOPT_USERNAME],
2179 [have_curlopt_username="yes"],
2180 [have_curlopt_username="no"],
2181 [[#include <curl/curl.h>]]
2184 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
2185 [have_curlopt_timeout="yes"],
2186 [have_curlopt_timeout="no"],
2187 [[#include <curl/curl.h>]]
2192 if test "x$with_libcurl" = "xyes"; then
2193 SAVE_CPPFLAGS="$CPPFLAGS"
2194 SAVE_LDFLAGS="$LDFLAGS"
2195 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
2196 LDFLAGS="$LDFLAGS $with_curl_libs"
2197 AC_CACHE_CHECK([for CURLINFO_APPCONNECT_TIME],
2198 [c_cv_have_curlinfo_appconnect_time],
2203 [[#include <curl/curl.h>]],
2205 int val = CURLINFO_APPCONNECT_TIME;
2210 [c_cv_have_curlinfo_appconnect_time="yes"],
2211 [c_cv_have_curlinfo_appconnect_time="no"]
2215 CPPFLAGS="$SAVE_CPPFLAGS"
2216 LDFLAGS="$SAVE_LDFLAGS"
2219 if test "x$c_cv_have_curlinfo_appconnect_time" = "xyes"; then
2220 AC_DEFINE([HAVE_CURLINFO_APPCONNECT_TIME], [1],
2221 [Define if curl.h defines CURLINFO_APPCONNECT_TIME.]
2225 if test "x$with_libcurl" = "xyes"; then
2226 BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
2227 BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
2229 if test "x$have_curlopt_username" = "xyes"; then
2230 AC_DEFINE([HAVE_CURLOPT_USERNAME], [1],
2231 [Define if libcurl supports CURLOPT_USERNAME option.]
2235 if test "x$have_curlopt_timeout" = "xyes"; then
2236 AC_DEFINE([HAVE_CURLOPT_TIMEOUT_MS], [1],
2237 [Define if libcurl supports CURLOPT_TIMEOUT_MS option.]
2242 AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
2243 AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
2247 AC_ARG_WITH([libdbi],
2248 [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
2250 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2251 with_libdbi_cppflags="-I$withval/include"
2252 with_libdbi_ldflags="-L$withval/lib"
2255 with_libdbi="$withval"
2261 if test "x$with_libdbi" = "xyes"; then
2262 SAVE_CPPFLAGS="$CPPFLAGS"
2263 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2265 AC_CHECK_HEADERS([dbi/dbi.h],
2266 [with_libdbi="yes"],
2267 [with_libdbi="no (dbi/dbi.h not found)"]
2270 CPPFLAGS="$SAVE_CPPFLAGS"
2273 if test "x$with_libdbi" = "xyes"; then
2274 SAVE_LDFLAGS="$LDFLAGS"
2275 LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
2277 AC_CHECK_LIB([dbi], [dbi_initialize],
2278 [with_libdbi="yes"],
2279 [with_libdbi="no (Symbol 'dbi_initialize' not found)"]
2282 LDFLAGS="$SAVE_LDFLAGS"
2285 BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
2286 BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
2287 BUILD_WITH_LIBDBI_LIBS="-ldbi"
2288 AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
2289 AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
2290 AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
2293 # --with-libesmtp {{{
2294 AC_ARG_WITH([libesmtp],
2295 [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
2297 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2298 with_libesmtp_cppflags="-I$withval/include"
2299 with_libesmtp_ldflags="-L$withval/lib"
2302 with_libesmtp="$withval"
2305 [with_libesmtp="yes"]
2308 if test "x$with_libesmtp" = "xyes"; then
2309 SAVE_CPPFLAGS="$CPPFLAGS"
2310 CPPFLAGS="$CPPFLAGS $with_libesmtp_cppflags"
2312 AC_CHECK_HEADERS([libesmtp.h],
2313 [with_libesmtp="yes"],
2314 [with_libesmtp="no (libesmtp.h not found)"]
2317 CPPFLAGS="$SAVE_CPPFLAGS"
2320 if test "x$with_libesmtp" = "xyes"; then
2321 SAVE_LDFLAGS="$LDFLAGS"
2322 LDFLAGS="$LDFLAGS $with_esmtp_ldflags"
2324 AC_CHECK_LIB([esmtp], [smtp_create_session],
2325 [with_libesmtp="yes"],
2326 [with_libesmtp="no (Symbol 'smtp_create_session' not found)"]
2329 LDFLAGS="$SAVE_LDFLAGS"
2332 BUILD_WITH_LIBESMTP_CPPFLAGS="$with_libesmtp_cppflags"
2333 BUILD_WITH_LIBESMTP_LDFLAGS="$with_libesmtp_ldflags"
2334 BUILD_WITH_LIBESMTP_LIBS="-lesmtp"
2335 AC_SUBST(BUILD_WITH_LIBESMTP_CPPFLAGS)
2336 AC_SUBST(BUILD_WITH_LIBESMTP_LDFLAGS)
2337 AC_SUBST(BUILD_WITH_LIBESMTP_LIBS)
2340 # --with-libganglia {{{
2341 AC_ARG_WITH([libganglia],
2342 [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
2344 if test -f "$withval" && test -x "$withval"; then
2345 with_libganglia_config="$withval"
2346 with_libganglia="yes"
2347 else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"; then
2348 with_libganglia_config="$withval/bin/ganglia-config"
2349 with_libganglia="yes"
2350 else if test -d "$withval"; then
2351 GANGLIA_CPPFLAGS="-I$withval/include"
2352 GANGLIA_LDFLAGS="-L$withval/lib"
2353 with_libganglia="yes"
2355 with_libganglia="$withval"
2358 [with_libganglia="yes"]
2361 if test "x$with_libganglia" = "xyes"; then
2362 if test "x$with_libganglia_config" != "x"; then
2363 if test "x$GANGLIA_CPPFLAGS" = "x"; then
2364 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
2367 if test "x$GANGLIA_LDFLAGS" = "x"; then
2368 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
2371 if test "x$GANGLIA_LIBS" = "x"; then
2372 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
2375 GANGLIA_LIBS="-lganglia"
2379 SAVE_CPPFLAGS="$CPPFLAGS"
2380 SAVE_LDFLAGS="$LDFLAGS"
2381 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
2382 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
2384 if test "x$with_libganglia" = "xyes"; then
2385 AC_CHECK_HEADERS([gm_protocol.h],
2386 [with_libganglia="yes"],
2387 [with_libganglia="no (gm_protocol.h not found)"]
2391 if test "x$with_libganglia" = "xyes"; then
2392 AC_CHECK_LIB([ganglia], [xdr_Ganglia_value_msg],
2393 [with_libganglia="yes"],
2394 [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"]
2398 CPPFLAGS="$SAVE_CPPFLAGS"
2399 LDFLAGS="$SAVE_LDFLAGS"
2401 AC_SUBST(GANGLIA_CPPFLAGS)
2402 AC_SUBST(GANGLIA_LDFLAGS)
2403 AC_SUBST(GANGLIA_LIBS)
2406 # --with-libgcrypt {{{
2407 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
2408 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2409 GCRYPT_LIBS="$GCRYPT_LIBS"
2410 AC_ARG_WITH([libgcrypt],
2411 [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2413 if test -f "$withval" && test -x "$withval"; then
2414 with_libgcrypt_config="$withval"
2415 with_libgcrypt="yes"
2416 else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"; then
2417 with_libgcrypt_config="$withval/bin/gcrypt-config"
2418 with_libgcrypt="yes"
2419 else if test -d "$withval"; then
2420 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2421 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2422 with_libgcrypt="yes"
2424 with_libgcrypt_config="gcrypt-config"
2425 with_libgcrypt="$withval"
2429 with_libgcrypt_config="libgcrypt-config"
2430 with_libgcrypt="yes"
2434 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"; then
2435 if test "x$GCRYPT_CPPFLAGS" = "x"; then
2436 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2439 if test "x$GCRYPT_LIBS" = "x"; then
2440 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2444 SAVE_CPPFLAGS="$CPPFLAGS"
2445 SAVE_LDFLAGS="$LDFLAGS"
2447 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2448 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2449 LIBS="$LIBS $GCRYPT_LIBS"
2451 if test "x$with_libgcrypt" = "xyes"; then
2452 if test "x$GCRYPT_CPPFLAGS" != "x"; then
2453 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
2455 AC_CHECK_HEADERS([gcrypt.h],
2456 [with_libgcrypt="yes"],
2457 [with_libgcrypt="no (gcrypt.h not found)"]
2461 if test "x$with_libgcrypt" = "xyes"; then
2462 AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2463 [with_libgcrypt="yes"],
2464 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"]
2468 CPPFLAGS="$SAVE_CPPFLAGS"
2469 LDFLAGS="$SAVE_LDFLAGS"
2472 AC_SUBST([GCRYPT_CPPFLAGS])
2473 AC_SUBST([GCRYPT_LDFLAGS])
2474 AC_SUBST([GCRYPT_LIBS])
2475 AM_CONDITIONAL([BUILD_WITH_LIBGCRYPT], [test "x$with_libgcrypt" = "xyes"])
2479 AC_ARG_WITH([libgps],
2480 [AS_HELP_STRING([--with-libgps@<:@=PREFIX@:>@], [Path to libgps.])],
2482 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2483 with_libgps_cflags="-I$withval/include"
2484 with_libgps_ldflags="-L$withval/lib"
2487 with_libgps="$withval"
2493 if test "x$with_libgps" = "xyes"; then
2494 SAVE_CFLAGS="$CFLAGS"
2495 CFLAGS="$CFLAGS $with_libgps_cflags"
2497 AC_CHECK_HEADERS([gps.h],
2498 [with_libgps="yes"],
2499 [with_libgps="no (gps.h not found)"]
2502 CFLAGS="$SAVE_CFLAGS"
2505 if test "x$with_libgps" = "xyes"; then
2506 SAVE_LDFLAGS="$LDFLAGS"
2507 LDFLAGS="$LDFLAGS $with_libgps_ldflags"
2509 AC_CHECK_LIB([gps], [gps_open],
2510 [with_libgps="yes"],
2511 [with_libgps="no (symbol gps_open not found)"]
2514 LDFLAGS="$SAVE_LDFLAGS"
2517 if test "x$with_libgps" = "xyes"; then
2518 BUILD_WITH_LIBGPS_CFLAGS="$with_libgps_cflags"
2519 BUILD_WITH_LIBGPS_LDFLAGS="$with_libgps_ldflags"
2520 BUILD_WITH_LIBGPS_LIBS="-lgps"
2523 AC_SUBST([BUILD_WITH_LIBGPS_CFLAGS])
2524 AC_SUBST([BUILD_WITH_LIBGPS_LDFLAGS])
2525 AC_SUBST([BUILD_WITH_LIBGPS_LIBS])
2529 # --with-libgrpc++ {{{
2530 AC_ARG_WITH([libgrpc++],
2531 [AS_HELP_STRING([--with-libgrpc++@<:@=PREFIX@:>@], [Path to libgrpc++.])],
2533 with_grpcpp="$withval"
2534 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2535 with_libgrpcpp_cppflags="-I$withval/include"
2536 with_libgrpcpp_ldflags="-L$withval/lib"
2537 with_libgrpcpp="yes"
2539 if test "x$withval" = "xno"; then
2540 with_libgrpcpp="no (disabled on command line)"
2545 if test "x$withval" = "xyes"; then
2546 PKG_CHECK_MODULES([GRPCPP], [grpc++],
2547 [with_libgrpcpp="yes"],
2548 [with_libgrpcpp="no (pkg-config could not find libgrpc++)"]
2552 if test "x$withval" != "xno"; then
2553 AC_MSG_CHECKING([whether $CXX accepts -std=c++11])
2554 if test_cxx_flags -std=c++11; then
2555 AC_MSG_RESULT([yes])
2558 with_libgrpcpp="no (requires C++11 support)"
2562 if test "x$with_libgrpcpp" = "xyes"; then
2564 SAVE_CPPFLAGS="$CPPFLAGS"
2565 CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
2566 AC_CHECK_HEADERS([grpc++/grpc++.h],
2567 [with_libgrpcpp="yes"],
2568 [with_libgrpcpp="no (<grpc++/grpc++.h> not found)"]
2570 CPPFLAGS="$SAVE_CPPFLAGS"
2574 if test "x$with_libgrpcpp" = "xyes"; then
2576 SAVE_CPPFLAGS="$CPPFLAGS"
2577 SAVE_LDFLAGS="$LDFLAGS"
2579 CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
2580 LDFLAGS="$with_libgrpcpp_ldflags"
2581 if test "x$GRPCPP_LIBS" = "x"; then
2589 [[#include <grpc++/grpc++.h>]],
2590 [[grpc::ServerBuilder sb;]]
2594 with_libgrpcpp="yes"
2595 if test "x$GRPCPP_LIBS" = "x"; then
2596 GRPCPP_LIBS="-lgrpc++"
2599 [with_libgrpcpp="no (libgrpc++ not found)"]
2601 CPPFLAGS="$SAVE_CPPFLAGS"
2602 LDFLAGS="$SAVE_LDFLAGS"
2607 BUILD_WITH_LIBGRPCPP_CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS"
2608 BUILD_WITH_LIBGRPCPP_LDFLAGS="$with_libgrpcpp_ldflags"
2609 BUILD_WITH_LIBGRPCPP_LIBS="$GRPCPP_LIBS"
2610 AC_SUBST([BUILD_WITH_LIBGRPCPP_CPPFLAGS])
2611 AC_SUBST([BUILD_WITH_LIBGRPCPP_LDFLAGS])
2612 AC_SUBST([BUILD_WITH_LIBGRPCPP_LIBS])
2615 AC_ARG_VAR([GRPC_CPP_PLUGIN], [path to the grpc_cpp_plugin binary])
2616 AC_PATH_PROG([GRPC_CPP_PLUGIN], [grpc_cpp_plugin])
2617 AM_CONDITIONAL([HAVE_GRPC_CPP], [test "x$GRPC_CPP_PLUGIN" != "x"])
2619 # --with-libiptc {{{
2620 AC_ARG_WITH([libiptc],
2621 [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2623 if test "x$withval" = "xyes"; then
2624 with_libiptc="pkgconfig"
2625 else if test "x$withval" = "xno"; then
2629 with_libiptc_cflags="-I$withval/include"
2630 with_libiptc_libs="-L$withval/lib"
2634 if test "x$ac_system" = "xLinux"; then
2635 with_libiptc="pkgconfig"
2637 with_libiptc="no (Linux only)"
2642 if test "x$with_libiptc" = "xpkgconfig"; then
2643 $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2644 if test $? -ne 0; then
2645 with_libiptc="no (pkg-config doesn't know libiptc)"
2649 if test "x$with_libiptc" = "xpkgconfig"; then
2650 with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2651 if test $? -ne 0; then
2652 with_libiptc="no ($PKG_CONFIG failed)"
2655 with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2656 if test $? -ne 0; then
2657 with_libiptc="no ($PKG_CONFIG failed)"
2661 SAVE_CPPFLAGS="$CPPFLAGS"
2662 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2664 # check whether the header file for libiptc is available.
2665 if test "x$with_libiptc" = "xpkgconfig"; then
2666 AC_CHECK_HEADERS([libiptc/libiptc.h libiptc/libip6tc.h],
2668 [with_libiptc="no (header file missing)"]
2672 # If the header file is available, check for the required type declaractions.
2673 # They may be missing in old versions of libiptc. In that case, they will be
2674 # declared in the iptables plugin.
2675 if test "x$with_libiptc" = "xpkgconfig"; then
2676 AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2679 # Check for the iptc_init symbol in the library.
2680 # This could be in iptc or ip4tc
2681 if test "x$with_libiptc" = "xpkgconfig"; then
2683 AC_SEARCH_LIBS([iptc_init], [iptc ip4tc],
2684 [with_libiptc="pkgconfig"],
2685 [with_libiptc="no"],
2686 [$with_libiptc_libs]
2691 if test "x$with_libiptc" = "xpkgconfig"; then
2695 CPPFLAGS="$SAVE_CPPFLAGS"
2697 if test "x$with_libiptc" = "xyes"; then
2698 BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2699 BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2701 AC_SUBST([BUILD_WITH_LIBIPTC_CPPFLAGS])
2702 AC_SUBST([BUILD_WITH_LIBIPTC_LDFLAGS])
2705 # --with-libdpdk {{{
2706 AC_ARG_VAR([LIBDPDK_CPPFLAGS], [Preprocessor flags for libdpdk])
2707 AC_ARG_VAR([LIBDPDK_LDFLAGS], [Linker flags for libdpdk])
2709 AC_ARG_WITH([libdpdk], [AS_HELP_STRING([--without-libdpdk], [Disable libdpdk.])])
2711 if test "x$with_libdpdk" != "xno"; then
2712 if test "x$LIBDPDK_CPPFLAGS" = "x"; then
2713 LIBDPDK_CPPFLAGS="-I/usr/include/dpdk"
2715 SAVE_CPPFLAGS="$CPPFLAGS"
2716 CPPFLAGS="$LIBDPDK_CPPFLAGS $CPPFLAGS"
2717 AC_CHECK_HEADERS([rte_config.h],
2724 #include <rte_version.h>
2725 #if RTE_VERSION < RTE_VERSION_NUM(16,7,0,0)
2726 #error "required DPDK >= 16.07"
2734 [dpdk_keepalive="yes"],
2735 [dpdk_keepalive="no (DPDK version < 16.07)"]
2738 [with_libdpdk="no (rte_config.h not found)"]
2740 CPPFLAGS="$SAVE_CPPFLAGS"
2743 if test "x$with_libdpdk" = "xyes"; then
2744 SAVE_LDFLAGS="$LDFLAGS"
2745 LDFLAGS="$LIBDPDK_LDFLAGS $LDFLAGS"
2746 AC_CHECK_LIB([dpdk], [rte_eal_init],
2747 [with_libdpdk="yes"],
2748 [with_libdpdk="no (symbol 'rte_eal_init' not found)"]
2750 LDFLAGS="$SAVE_LDFLAGS"
2756 with_java_home="$JAVA_HOME"
2757 if test "x$with_java_home" = "x"; then
2758 with_java_home="/usr/lib/jvm"
2764 [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2766 if test "x$withval" = "xno"; then
2768 else if test "x$withval" = "xyes"; then
2771 with_java_home="$withval"
2778 if test "x$with_java" = "xyes"; then
2779 if test -d "$with_java_home"; then
2780 AC_MSG_CHECKING([for jni.h])
2781 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2782 if test "x$TMPVAR" != "x"; then
2783 AC_MSG_RESULT([found in $TMPVAR])
2784 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2786 AC_MSG_RESULT([not found])
2789 AC_MSG_CHECKING([for jni_md.h])
2790 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2791 if test "x$TMPVAR" != "x"; then
2792 AC_MSG_RESULT([found in $TMPVAR])
2793 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2795 AC_MSG_RESULT([not found])
2798 AC_MSG_CHECKING([for libjvm.so])
2799 TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2800 if test "x$TMPVAR" != "x"; then
2801 AC_MSG_RESULT([found in $TMPVAR])
2802 JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2804 AC_MSG_RESULT([not found])
2807 if test "x$JAVAC" = "x"; then
2808 AC_MSG_CHECKING([for javac])
2809 TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | LC_ALL=C sort | head -n 1`
2810 if test "x$TMPVAR" != "x"; then
2812 AC_MSG_RESULT([$JAVAC])
2814 AC_MSG_RESULT([not found])
2818 if test "x$JAR" = "x"; then
2819 AC_MSG_CHECKING([for jar])
2820 TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | LC_ALL=C sort | head -n 1`
2821 if test "x$TMPVAR" != "x"; then
2823 AC_MSG_RESULT([$JAR])
2825 AC_MSG_RESULT([not found])
2828 else if test "x$with_java_home" != "x"; then
2829 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2833 if test "x$JAVA_CPPFLAGS" != "x"; then
2834 AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2836 if test "x$JAVA_CFLAGS" != "x"; then
2837 AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2839 if test "x$JAVA_LDFLAGS" != "x"; then
2840 AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2842 if test "x$JAVA_LIBS" != "x"; then
2843 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2845 if test "x$JAVAC" = "x"; then
2846 with_javac_path="$PATH"
2847 if test "x$with_java_home" != "x"; then
2848 with_javac_path="$with_java_home:with_javac_path"
2849 if test -d "$with_java_home/bin"; then
2850 with_javac_path="$with_java_home/bin:with_javac_path"
2854 AC_PATH_PROG([JAVAC], [javac], [], "$with_javac_path")
2857 if test "x$JAVAC" = "x"; then
2858 with_java="no (javac not found)"
2861 if test "x$JAR" = "x"; then
2862 with_jar_path="$PATH"
2863 if test "x$with_java_home" != "x"; then
2864 with_jar_path="$with_java_home:$with_jar_path"
2865 if test -d "$with_java_home/bin"; then
2866 with_jar_path="$with_java_home/bin:$with_jar_path"
2870 AC_PATH_PROG([JAR], [jar], [], "$with_jar_path")
2873 if test "x$JAR" = "x"; then
2874 with_java="no (jar not found)"
2877 SAVE_CPPFLAGS="$CPPFLAGS"
2878 SAVE_CFLAGS="$CFLAGS"
2879 SAVE_LDFLAGS="$LDFLAGS"
2881 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2882 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2883 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2884 LIBS="$LIBS $JAVA_LIBS"
2886 if test "x$with_java" = "xyes"; then
2887 AC_CHECK_HEADERS([jni.h],
2889 [with_java="no (jni.h not found)"])
2892 if test "x$with_java" = "xyes"; then
2893 AC_CHECK_LIB([jvm], [JNI_CreateJavaVM],
2895 [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
2896 [$JAVA_LIBS $PTHREAD_LIBS]
2900 if test "x$with_java" = "xyes"; then
2901 JAVA_LIBS="$JAVA_LIBS -ljvm"
2902 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2905 CPPFLAGS="$SAVE_CPPFLAGS"
2906 CFLAGS="$SAVE_CFLAGS"
2907 LDFLAGS="$SAVE_LDFLAGS"
2910 AC_SUBST([JAVA_CPPFLAGS])
2911 AC_SUBST([JAVA_CFLAGS])
2912 AC_SUBST([JAVA_LDFLAGS])
2913 AC_SUBST([JAVA_LIBS])
2914 AM_CONDITIONAL([BUILD_WITH_JAVA], [test "x$with_java" = "xyes"])
2917 # --with-libldap {{{
2918 AC_ARG_WITH([libldap],
2919 [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2921 if test "x$withval" = "xyes"; then
2923 else if test "x$withval" = "xno"; then
2927 LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2928 LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2931 [with_libldap="yes"]
2934 SAVE_CPPFLAGS="$CPPFLAGS"
2935 SAVE_LDFLAGS="$LDFLAGS"
2937 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2938 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2940 if test "x$with_libldap" = "xyes"; then
2941 if test "x$LIBLDAP_CPPFLAGS" != "x"; then
2942 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2945 AC_CHECK_HEADERS([ldap.h],
2946 [with_libldap="yes"],
2947 [with_libldap="no ('ldap.h' not found)"]
2951 if test "x$with_libldap" = "xyes"; then
2952 if test "x$LIBLDAP_LDFLAGS" != "x"; then
2953 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2956 AC_CHECK_LIB([ldap], [ldap_initialize],
2957 [with_libldap="yes"],
2958 [with_libldap="no (symbol 'ldap_initialize' not found)"]
2962 CPPFLAGS="$SAVE_CPPFLAGS"
2963 LDFLAGS="$SAVE_LDFLAGS"
2965 if test "x$with_libldap" = "xyes"
2967 BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2968 BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2970 AC_SUBST([BUILD_WITH_LIBLDAP_CPPFLAGS])
2971 AC_SUBST([BUILD_WITH_LIBLDAP_LDFLAGS])
2975 AC_ARG_VAR([LIBLUA_PKG_CONFIG_NAME], [Name of liblua used by pkg-config])
2976 if test "x$LIBLUA_PKG_CONFIG_NAME" != "x"
2978 PKG_CHECK_MODULES([LUA], [$LIBLUA_PKG_CONFIG_NAME],
2979 [with_liblua="yes"],
2983 PKG_CHECK_MODULES([LUA], [lua],
2984 [with_liblua="yes"],
2986 PKG_CHECK_MODULES([LUA], [lua-5.3],
2987 [with_liblua="yes"],
2989 PKG_CHECK_MODULES([LUA], [lua5.3],
2990 [with_liblua="yes"],
2992 PKG_CHECK_MODULES([LUA], [lua-5.2],
2993 [with_liblua="yes"],
2995 PKG_CHECK_MODULES([LUA], [lua5.2],
2996 [with_liblua="yes"],
2998 PKG_CHECK_MODULES([LUA], [lua-5.1],
2999 [with_liblua="yes"],
3001 PKG_CHECK_MODULES([LUA], [lua5.1],
3002 [with_liblua="yes"],
3003 [with_liblua="no (pkg-config cannot find liblua)"]
3019 if test "x$with_liblua" = "xyes"
3021 SAVE_CPPFLAGS="$CPPFLAGS"
3022 CPPFLAGS="$CPPFLAGS $LUA_CFLAGS"
3024 AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
3025 [with_liblua="yes"],
3026 [with_liblua="no (header not found)"]
3029 CPPFLAGS="$SAVE_CPPFLAGS"
3032 if test "x$with_liblua" = "xyes"
3035 LIBS="$LIBS $LUA_LIBS"
3037 AC_CHECK_FUNC([lua_settop],
3038 [with_liblua="yes"],
3039 [with_liblua="no (symbol 'lua_settop' not found)"]
3045 if test "x$with_liblua" = "xyes"
3047 BUILD_WITH_LIBLUA_CFLAGS="$LUA_CFLAGS"
3048 BUILD_WITH_LIBLUA_LIBS="$LUA_LIBS"
3050 AC_SUBST(BUILD_WITH_LIBLUA_CFLAGS)
3051 AC_SUBST(BUILD_WITH_LIBLUA_LIBS)
3054 # --with-liblvm2app {{{
3055 AC_ARG_WITH([liblvm2app],
3056 [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
3058 if test "x$withval" = "xno"; then
3059 with_liblvm2app="no"
3061 with_liblvm2app="yes"
3062 if test "x$withval" != "xyes"; then
3063 with_liblvm2app_cppflags="-I$withval/include"
3064 with_liblvm2app_ldflags="-L$withval/lib"
3069 if test "x$ac_system" = "xLinux"; then
3070 with_liblvm2app="yes"
3072 with_liblvm2app="no (Linux only library)"
3077 if test "x$with_liblvm2app" = "xyes"; then
3078 SAVE_CPPFLAGS="$CPPFLAGS"
3079 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
3081 AC_CHECK_HEADERS([lvm2app.h],
3082 [with_liblvm2app="yes"],
3083 [with_liblvm2app="no (lvm2app.h not found)"]
3086 CPPFLAGS="$SAVE_CPPFLAGS"
3089 if test "x$with_liblvm2app" = "xyes"; then
3090 SAVE_CPPFLAGS="$CPPFLAGS"
3091 SAVE_LDFLAGS="$LDFLAGS"
3092 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
3093 LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
3095 AC_CHECK_LIB([lvm2app], [lvm_lv_get_property],
3096 [with_liblvm2app="yes"],
3097 [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"]
3100 CPPFLAGS="$SAVE_CPPFLAGS"
3101 LDFLAGS="$SAVE_LDFLAGS"
3104 if test "x$with_liblvm2app" = "xyes"; then
3105 BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
3106 BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
3107 BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
3110 AC_SUBST([BUILD_WITH_LIBLVM2APP_CPPFLAGS])
3111 AC_SUBST([BUILD_WITH_LIBLVM2APP_LDFLAGS])
3112 AC_SUBST([BUILD_WITH_LIBLVM2APP_LIBS])
3115 # --with-libmemcached {{{
3116 AC_ARG_WITH([libmemcached],
3117 [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
3119 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3120 with_libmemcached_cppflags="-I$withval/include"
3121 with_libmemcached_ldflags="-L$withval/lib"
3122 with_libmemcached="yes"
3124 with_libmemcached="$withval"
3127 [with_libmemcached="yes"]
3130 if test "x$with_libmemcached" = "xyes"; then
3131 SAVE_CPPFLAGS="$CPPFLAGS"
3132 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
3134 AC_CHECK_HEADERS([libmemcached/memcached.h],
3135 [with_libmemcached="yes"],
3136 [with_libmemcached="no (libmemcached/memcached.h not found)"]
3139 CPPFLAGS="$SAVE_CPPFLAGS"
3142 if test "x$with_libmemcached" = "xyes"; then
3143 SAVE_CPPFLAGS="$CPPFLAGS"
3144 SAVE_LDFLAGS="$LDFLAGS"
3145 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
3146 LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
3148 AC_CHECK_LIB([memcached], [memcached_create],
3149 [with_libmemcached="yes"],
3150 [with_libmemcached="no (Symbol 'memcached_create' not found)"]
3153 CPPFLAGS="$SAVE_CPPFLAGS"
3154 LDFLAGS="$SAVE_LDFLAGS"
3157 if test "x$with_libmemcached" = "xyes"; then
3158 BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
3159 BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
3160 BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
3163 AC_SUBST([BUILD_WITH_LIBMEMCACHED_CPPFLAGS])
3164 AC_SUBST([BUILD_WITH_LIBMEMCACHED_LDFLAGS])
3165 AC_SUBST([BUILD_WITH_LIBMEMCACHED_LIBS])
3168 # --with-libmicrohttpd {{{
3169 with_libmicrohttpd_cppflags=""
3170 with_libmicrohttpd_ldflags=""
3171 AC_ARG_WITH([libmicrohttpd], [AS_HELP_STRING([--with-libmicrohttpd@<:@=PREFIX@:>@], [Path to libmicrohttpd.])],
3173 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3174 with_libmicrohttpd_cppflags="-I$withval/include"
3175 with_libmicrohttpd_ldflags="-L$withval/lib"
3176 with_libmicrohttpd="yes"
3178 if test "x$withval" = "xno"; then
3179 with_libmicrohttpd="no (disabled on command line)"
3184 if test "x$withval" = "xyes"; then
3185 PKG_CHECK_MODULES([MICROHTTPD], [libmicrohttpd],
3186 [with_libmicrohttpd="yes"],
3187 [with_libmicrohttpd="no (pkg-config could not find libmicrohttpd)"]
3191 if test "x$MICROHTTPD_LIBS" = "x"; then
3192 MICROHTTPD_LIBS="-lmicrohttpd"
3195 SAVE_CPPFLAGS="$CPPFLAGS"
3196 SAVE_LDFLAGS="$LDFLAGS"
3198 CPPFLAGS="$with_libmicrohttpd_cppflags $MICROHTTPD_CFLAGS"
3199 LDFLAGS="$with_libmicrohttpd_ldflags $LDFLAGS"
3200 LIBS="$LIBS $MICROHTTPD_LIBS"
3202 if test "x$with_libmicrohttpd" = "xyes"; then
3203 AC_CHECK_HEADERS([microhttpd.h],
3204 [with_libmicrohttpd="yes"],
3205 [with_libmicrohttpd="no (<microhttpd.h> not found)"]
3209 if test "x$with_libmicrohttpd" = "xyes"; then
3210 AC_CHECK_LIB([microhttpd], [MHD_start_daemon],
3211 [with_libmicrohttpd="yes"],
3212 [with_libmicrohttpd="no (libmicrohttpd not found)"]
3216 CPPFLAGS="$SAVE_CPPFLAGS"
3217 LDFLAGS="$SAVE_LDFLAGS"
3220 BUILD_WITH_LIBMICROHTTPD_CPPFLAGS="$with_libmicrohttpd_cppflags $MICROHTTPD_CFLAGS"
3221 BUILD_WITH_LIBMICROHTTPD_LDFLAGS="$with_libmicrohttpd_ldflags"
3222 BUILD_WITH_LIBMICROHTTPD_LIBS="$MICROHTTPD_LIBS"
3223 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_CPPFLAGS])
3224 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_LDFLAGS])
3225 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_LIBS])
3228 # --with-libmodbus {{{
3229 AC_ARG_WITH([libmodbus],
3230 [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
3232 if test "x$withval" = "xno"; then
3234 else if test "x$withval" = "xyes"; then
3235 with_libmodbus="use_pkgconfig"
3236 else if test -d "$with_libmodbus/lib"; then
3237 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
3238 with_libmodbus_cflags="-I$withval/include"
3239 with_libmodbus_libs="-L$withval/lib -lmodbus"
3240 with_libmodbus="yes"
3243 [with_libmodbus="use_pkgconfig"]
3246 # configure using pkg-config
3247 if test "x$with_libmodbus" = "xuse_pkgconfig"; then
3248 AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
3249 $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
3250 if test $? -ne 0; then
3251 with_libmodbus="no (pkg-config doesn't know libmodbus)"
3255 if test "x$with_libmodbus" = "xuse_pkgconfig"; then
3256 with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
3257 if test $? -ne 0; then
3258 with_libmodbus="no ($PKG_CONFIG failed)"
3261 with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
3262 if test $? -ne 0; then
3263 with_libmodbus="no ($PKG_CONFIG failed)"
3267 if test "x$with_libmodbus" = "xuse_pkgconfig"; then
3268 with_libmodbus="yes"
3271 if test "x$with_libmodbus" = "xyes"; then
3272 SAVE_CPPFLAGS="$CPPFLAGS"
3273 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
3275 AC_CHECK_HEADERS([modbus.h],
3276 [with_libmodbus="yes"],
3277 [with_libmodbus="no (modbus.h not found)"]
3280 CPPFLAGS="$SAVE_CPPFLAGS"
3283 if test "x$with_libmodbus" = "xyes"; then
3284 SAVE_LDFLAGS="$LDFLAGS"
3285 LDFLAGS="$LDFLAGS $with_libmodbus_libs"
3287 AC_CHECK_LIB([modbus], [modbus_connect],
3288 [with_libmodbus="yes"],
3289 [with_libmodbus="no (symbol modbus_connect not found)"]
3292 LDFLAGS="$SAVE_LDFLAGS"
3295 if test "x$with_libmodbus" = "xyes"; then
3296 BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
3297 BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
3300 AC_SUBST([BUILD_WITH_LIBMODBUS_CFLAGS])
3301 AC_SUBST([BUILD_WITH_LIBMODBUS_LIBS])
3304 # --with-libmongoc {{{
3305 AC_ARG_WITH([libmongoc],
3306 [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
3308 if test "x$withval" = "xyes"; then
3309 with_libmongoc="yes"
3310 else if test "x$withval" = "xno"; then
3313 with_libmongoc="yes"
3314 LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
3315 LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
3318 [with_libmongoc="yes"]
3321 SAVE_CPPFLAGS="$CPPFLAGS"
3322 SAVE_LDFLAGS="$LDFLAGS"
3324 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
3325 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
3327 if test "x$with_libmongoc" = "xyes"; then
3328 if test "x$LIBMONGOC_CPPFLAGS" != "x"; then
3329 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
3332 AC_CHECK_HEADERS([mongo.h],
3333 [with_libmongoc="yes"],
3334 [with_libmongoc="no ('mongo.h' not found)"],
3335 [[#define MONGO_HAVE_STDINT 1]]
3339 if test "x$with_libmongoc" = "xyes"; then
3340 if test "x$LIBMONGOC_LDFLAGS" != "x"; then
3341 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
3344 AC_CHECK_LIB([mongoc], [mongo_run_command],
3345 [with_libmongoc="yes"],
3346 [with_libmongoc="no (symbol 'mongo_run_command' not found)"]
3350 CPPFLAGS="$SAVE_CPPFLAGS"
3351 LDFLAGS="$SAVE_LDFLAGS"
3353 if test "x$with_libmongoc" = "xyes"; then
3354 BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
3355 BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
3358 AC_SUBST([BUILD_WITH_LIBMONGOC_CPPFLAGS])
3359 AC_SUBST([BUILD_WITH_LIBMONGOC_LDFLAGS])
3362 # --with-libmosquitto {{{
3363 AC_ARG_WITH([libmosquitto],
3364 [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
3366 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3367 with_libmosquitto_cppflags="-I$withval/include"
3368 with_libmosquitto_ldflags="-L$withval/lib"
3369 with_libmosquitto="yes"
3371 with_libmosquitto="$withval"
3374 [with_libmosquitto="yes"]
3377 if test "x$with_libmosquitto" = "xyes"; then
3378 SAVE_CPPFLAGS="$CPPFLAGS"
3379 CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3381 AC_CHECK_HEADERS([mosquitto.h],
3382 [with_libmosquitto="yes"],
3383 [with_libmosquitto="no (mosquitto.h not found)"]
3386 CPPFLAGS="$SAVE_CPPFLAGS"
3389 if test "x$with_libmosquitto" = "xyes"; then
3390 SAVE_LDFLAGS="$LDFLAGS"
3391 LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
3393 AC_CHECK_LIB([mosquitto], [mosquitto_connect],
3394 [with_libmosquitto="yes"],
3395 [with_libmosquitto="no (libmosquitto not found)"]
3398 LDFLAGS="$SAVE_LDFLAGS"
3401 if test "x$with_libmosquitto" = "xyes"; then
3402 BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
3403 BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
3404 BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
3407 AC_SUBST([BUILD_WITH_LIBMOSQUITTO_CPPFLAGS])
3408 AC_SUBST([BUILD_WITH_LIBMOSQUITTO_LDFLAGS])
3409 AC_SUBST([BUILD_WITH_LIBMOSQUITTO_LIBS])
3412 # --with-libmysql {{{
3413 with_mysql_config="mysql_config"
3414 AC_ARG_WITH([libmysql],
3415 [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
3417 if test "x$withval" = "xno"; then
3419 else if test "x$withval" = "xyes"; then
3422 if test -f "$withval" && test -x "$withval"; then
3423 with_mysql_config="$withval"
3424 else if test -x "$withval/bin/mysql_config"; then
3425 with_mysql_config="$withval/bin/mysql_config"
3430 [with_libmysql="yes"]
3433 if test "x$with_libmysql" = "xyes"; then
3434 with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
3435 if test $? -ne 0; then
3436 with_libmysql="no ($with_mysql_config failed)"
3438 SAVE_CPPFLAGS="$CPPFLAGS"
3439 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3441 AC_CHECK_HEADERS([mysql.h],
3442 [have_mysql_h="yes"],
3446 if test "x$have_mysql_h" != "xyes"; then
3447 AC_CHECK_HEADERS([mysql/mysql.h],
3448 [have_mysql_mysql_h="yes"],
3453 if test "x$have_mysql_h" != "xyes" && test "x$have_mysql_mysql_h" != "xyes"; then
3454 with_libmysql="no (mysql.h not found)"
3457 CPPFLAGS="$SAVE_CPPFLAGS"
3461 if test "x$with_libmysql" = "xyes"; then
3462 with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
3463 if test $? -ne 0; then
3464 with_libmysql="no ($with_mysql_config failed)"
3467 LIBS="$with_mysql_libs"
3469 AC_SEARCH_LIBS([mysql_get_server_version],
3471 [with_libmysql="yes"],
3472 [with_libmysql="no (symbol 'mysql_get_server_version' not found in ${LIBS})"],
3479 if test "x$with_libmysql" = "xyes"; then
3480 BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
3481 BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
3484 AC_SUBST([BUILD_WITH_LIBMYSQL_CFLAGS])
3485 AC_SUBST([BUILD_WITH_LIBMYSQL_LIBS])
3489 AC_ARG_WITH([libmnl],
3490 [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
3492 if test "x$withval" = "xyes"; then
3494 else if test "x$withval" = "xno"; then
3497 if test -d "$withval/include"; then
3498 with_libmnl_cflags="-I$withval/include"
3499 with_libmnl_libs="-L$withval/lib -lmnl"
3502 AC_MSG_ERROR("no such directory: $withval/include")
3507 if test "x$ac_system" = "xLinux"; then
3510 with_libmnl="no (Linux only library)"
3515 if test "x$with_libmnl" = "xyes"; then
3516 if $PKG_CONFIG --exists libmnl 2>/dev/null; then
3517 with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
3518 with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
3521 AC_CHECK_HEADERS([libmnl.h libmnl/libmnl.h],
3529 #include <sys/types.h>
3530 #include <asm/types.h>
3531 #include <sys/socket.h>
3532 #include <linux/netlink.h>
3533 #include <linux/rtnetlink.h>]]
3536 AC_CHECK_HEADERS([linux/gen_stats.h linux/pkt_sched.h],
3541 #include <sys/types.h>
3542 #include <asm/types.h>
3543 #include <sys/socket.h>
3552 #include <sys/types.h>
3553 #include <asm/types.h>
3554 #include <sys/socket.h>
3555 #include <linux/netlink.h>
3556 #include <linux/rtnetlink.h>
3559 int retval = TCA_STATS2;
3564 [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])]
3572 #include <sys/types.h>
3573 #include <asm/types.h>
3574 #include <sys/socket.h>
3575 #include <linux/netlink.h>
3576 #include <linux/rtnetlink.h>
3579 int retval = TCA_STATS;
3584 [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])]
3587 AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3588 [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3590 [[#include <linux/if_link.h>]]
3593 AC_CHECK_LIB([mnl], [mnl_nlmsg_get_payload],
3594 [with_libmnl="yes"],
3595 [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3600 if test "x$with_libmnl" = "xyes"; then
3601 BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3602 BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3604 AC_SUBST([BUILD_WITH_LIBMNL_CFLAGS])
3605 AC_SUBST([BUILD_WITH_LIBMNL_LIBS])
3608 # --with-libnetapp {{{
3609 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3610 AC_ARG_VAR([LIBNETAPP_LDFLAGS], [Linker flags required to build with libnetapp])
3611 AC_ARG_VAR([LIBNETAPP_LIBS], [Other libraries required to link against libnetapp])
3612 AC_ARG_WITH([libnetapp],
3613 [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3615 if test -d "$withval"; then
3616 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3617 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3618 with_libnetapp="yes"
3620 with_libnetapp="$withval"
3623 [with_libnetapp="yes"]
3626 SAVE_CPPFLAGS="$CPPFLAGS"
3627 SAVE_LDFLAGS="$LDFLAGS"
3628 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3629 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3631 if test "x$with_libnetapp" = "xyes"; then
3632 if test "x$LIBNETAPP_CPPFLAGS" != "x"; then
3633 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
3635 AC_CHECK_HEADERS([netapp_api.h],
3636 [with_libnetapp="yes"],
3637 [with_libnetapp="no (netapp_api.h not found)"]
3641 if test "x$with_libnetapp" = "xyes"; then
3642 if test "x$LIBNETAPP_LDFLAGS" != "x"; then
3643 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
3646 if test "x$LIBNETAPP_LIBS" = "x"; then
3647 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3650 AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
3652 AC_CHECK_LIB([netapp], [na_server_invoke_elem],
3653 [with_libnetapp="yes"],
3654 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3658 LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3661 CPPFLAGS="$SAVE_CPPFLAGS"
3662 LDFLAGS="$SAVE_LDFLAGS"
3664 AC_SUBST([LIBNETAPP_CPPFLAGS])
3665 AC_SUBST([LIBNETAPP_LDFLAGS])
3666 AC_SUBST([LIBNETAPP_LIBS])
3669 # --with-libnetsnmp {{{
3670 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3672 if test "x$withval" = "xno"
3674 with_libnetsnmp="no"
3675 else if test "x$withval" = "xyes"
3677 with_libnetsnmp="yes"
3679 with_libnetsnmp_cppflags="-I$withval/include"
3680 with_libnetsnmp_ldflags="-I$withval/lib"
3681 with_libnetsnmp="yes"
3684 [with_libnetsnmp="yes"])
3685 if test "x$with_libnetsnmp" = "xyes"
3687 SAVE_CPPFLAGS="$CPPFLAGS"
3688 CPPFLAGS="$CPPFLAGS $with_libnetsnmp_cppflags"
3690 AC_CHECK_HEADERS([net-snmp/net-snmp-config.h],
3691 [with_libnetsnmp="yes"],
3692 [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"]
3695 CPPFLAGS="$SAVE_CPPFLAGS"
3697 if test "x$with_libnetsnmp" = "xyes"
3699 SAVE_LDFLAGS="$LDFLAGS"
3700 LDFLAGS="$LDFLAGS $with_libnetsnmp_ldflags"
3702 AC_CHECK_LIB(netsnmp, init_snmp,
3703 [with_libnetsnmp="yes"],
3704 [with_libnetsnmp="no (libnetsnmp not found)"],
3707 LDFLAGS="$SAVE_LDFLAGS"
3709 if test "x$with_libnetsnmp" = "xyes"
3711 BUILD_WITH_LIBNETSNMP_CPPFLAGS="$with_libnetsnmp_cppflags"
3712 BUILD_WITH_LIBNETSNMP_LDFLAGS="$with_libnetsnmp_ldflags"
3713 BUILD_WITH_LIBNETSNMP_LIBS="-lnetsnmp"
3715 AC_SUBST(BUILD_WITH_LIBNETSNMP_CPPFLAGS)
3716 AC_SUBST(BUILD_WITH_LIBNETSNMP_LDFLAGS)
3717 AC_SUBST(BUILD_WITH_LIBNETSNMP_LIBS)
3720 # --with-liboping {{{
3721 AC_ARG_WITH([liboping],
3722 [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3724 if test "x$withval" = "xyes"; then
3726 else if test "x$withval" = "xno"; then
3730 LIBOPING_CPPFLAGS="-I$withval/include"
3731 LIBOPING_LDFLAGS="-L$withval/lib"
3734 [with_liboping="yes"]
3737 SAVE_CPPFLAGS="$CPPFLAGS"
3738 SAVE_LDFLAGS="$LDFLAGS"
3739 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3740 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3742 if test "x$with_liboping" = "xyes"; then
3743 AC_CHECK_HEADERS([oping.h],
3744 [with_liboping="yes"],
3745 [with_liboping="no (oping.h not found)"]
3749 if test "x$with_liboping" = "xyes"; then
3750 AC_CHECK_LIB([oping], [ping_construct],
3751 [with_liboping="yes"],
3752 [with_liboping="no (symbol 'ping_construct' not found)"]
3756 CPPFLAGS="$SAVE_CPPFLAGS"
3757 LDFLAGS="$SAVE_LDFLAGS"
3759 if test "x$with_liboping" = "xyes"; then
3760 BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3761 BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3764 AC_SUBST([BUILD_WITH_LIBOPING_CPPFLAGS])
3765 AC_SUBST([BUILD_WITH_LIBOPING_LDFLAGS])
3769 AC_ARG_WITH([oracle],
3770 [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3772 if test "x$withval" = "xyes"; then
3773 if test "x$ORACLE_HOME" = "x"; then
3774 AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3777 else if test "x$withval" = "xno"; then
3781 ORACLE_HOME="$withval"
3785 if test "x$ORACLE_HOME" = "x"; then
3786 with_oracle="no (ORACLE_HOME is not set)"
3793 if test "x$ORACLE_HOME" != "x"; then
3794 with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3795 if test -e "$ORACLE_HOME/lib/ldflags"; then
3796 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3798 with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3801 if test "x$with_oracle" = "xyes"; then
3802 SAVE_CPPFLAGS="$CPPFLAGS"
3803 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3805 AC_CHECK_HEADERS([oci.h],
3806 [with_oracle="yes"],
3807 [with_oracle="no (oci.h not found)"]
3810 CPPFLAGS="$SAVE_CPPFLAGS"
3813 if test "x$with_oracle" = "xyes"; then
3814 SAVE_CPPFLAGS="$CPPFLAGS"
3816 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3817 LIBS="$LIBS $with_oracle_libs"
3819 AC_CHECK_FUNC([OCIEnvCreate],
3820 [with_oracle="yes"],
3821 [with_oracle="no (Symbol 'OCIEnvCreate' not found)"]
3824 CPPFLAGS="$SAVE_CPPFLAGS"
3828 if test "x$with_oracle" = "xyes"; then
3829 BUILD_WITH_ORACLE_CPPFLAGS="$with_oracle_cppflags"
3830 BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3833 AC_SUBST([BUILD_WITH_ORACLE_CPPFLAGS])
3834 AC_SUBST([BUILD_WITH_ORACLE_LIBS])
3837 # --with-libowcapi {{{
3838 AC_ARG_WITH([libowcapi],
3839 [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3841 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3842 with_libowcapi_cppflags="-I$withval/include"
3843 with_libowcapi_ldflags="-L$withval/lib"
3844 with_libowcapi="yes"
3846 with_libowcapi="$withval"
3849 [with_libowcapi="yes"]
3852 if test "x$with_libowcapi" = "xyes"; then
3853 SAVE_CPPFLAGS="$CPPFLAGS"
3854 CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
3856 AC_CHECK_HEADERS([owcapi.h],
3857 [with_libowcapi="yes"],
3858 [with_libowcapi="no (owcapi.h not found)"]
3861 CPPFLAGS="$SAVE_CPPFLAGS"
3864 if test "x$with_libowcapi" = "xyes"; then
3865 SAVE_LDFLAGS="$LDFLAGS"
3866 LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
3868 AC_CHECK_LIB([owcapi], [OW_get],
3869 [with_libowcapi="yes"],
3870 [with_libowcapi="no (libowcapi not found)"]
3873 LDFLAGS="$SAVE_LDFLAGS"
3876 if test "x$with_libowcapi" = "xyes"; then
3877 BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3878 BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
3879 BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
3882 AC_SUBST([BUILD_WITH_LIBOWCAPI_CPPFLAGS])
3883 AC_SUBST([BUILD_WITH_LIBOWCAPI_LDFLAGS])
3884 AC_SUBST([BUILD_WITH_LIBOWCAPI_LIBS])
3887 # --with-libpcap {{{
3888 AC_ARG_WITH([libpcap],
3889 [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3891 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3892 with_libpcap_cppflags="-I$withval/include"
3893 with_libpcap_ldflags="$LDFLAGS -L$withval/lib"
3896 with_libpcap="$withval"
3899 [with_libpcap="yes"]
3902 if test "x$with_libpcap" = "xyes"; then
3903 SAVE_CPPFLAGS="$CPPFLAGS"
3904 CPPFLAGS="$CPPFLAGS $with_libpcap_cppflags"
3906 AC_CHECK_HEADERS([pcap.h],
3907 [with_libpcap="yes"],
3908 [with_libpcap="no (pcap.h not found)"]
3911 CPPFLAGS="$SAVE_CPPFLAGS"
3914 if test "x$with_libpcap" = "xyes"; then
3915 SAVE_LDFLAGS="$LDFLAGS"
3916 LDFLAGS="$LDFLAGS $with_libpcap_ldflags"
3918 AC_CHECK_LIB([pcap], [pcap_open_live],
3919 [with_libpcap="yes"],
3920 [with_libpcap="no (libpcap not found)"]
3923 LDFLAGS="$SAVE_LDFLAGS"
3926 if test "x$with_libpcap" = "xyes"; then
3927 AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3928 [c_cv_libpcap_have_pcap_error_iface_not_up],
3933 [[#include <pcap.h>]],
3935 int val = PCAP_ERROR_IFACE_NOT_UP;
3940 [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3941 [c_cv_libpcap_have_pcap_error_iface_not_up="no"]
3947 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"; then
3948 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3951 if test "x$with_libpcap" = "xyes"; then
3952 BUILD_WITH_LIBPCAP_CPPFLAGS="$with_libpcap_cppflags"
3953 BUILD_WITH_LIBPCAP_LDFLAGS="$with_libpcap_ldflags"
3954 BUILD_WITH_LIBPCAP_LIBS="-lpcap"
3957 AC_SUBST([BUILD_WITH_LIBPCAP_CPPFLAGS])
3958 AC_SUBST([BUILD_WITH_LIBPCAP_LDFLAGS])
3959 AC_SUBST([BUILD_WITH_LIBPCAP_LIBS])
3962 # --with-libperl {{{
3963 AC_ARG_WITH([libperl],
3964 [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3966 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3967 LDFLAGS="$LDFLAGS -L$withval/lib"
3968 CPPFLAGS="$CPPFLAGS -I$withval/include"
3971 with_libperl="$withval"
3974 [with_libperl="yes"]
3977 AC_ARG_VAR([PERL], [path to Perl interpreter])
3978 AC_PATH_PROG([PERL], [perl])
3980 if test "x$PERL" = "x"; then
3981 with_libperl="no (no Perl interpreter found)"
3984 if test "x$with_libperl" = "xyes"; then
3985 SAVE_CFLAGS="$CFLAGS"
3987 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3988 PERL_CFLAGS=`ARCHFLAGS="" $PERL -MExtUtils::Embed -e perl_inc`
3989 PERL_LIBS=`ARCHFLAGS="" $PERL -MExtUtils::Embed -e ldopts`
3990 CFLAGS="$CFLAGS $PERL_CFLAGS"
3991 LIBS="$LIBS $PERL_LIBS"
3993 AC_CACHE_CHECK([for libperl],
3994 [c_cv_have_libperl],
4000 #define PERL_NO_GET_CONTEXT
4007 load_module (PERL_LOADMOD_NOIMPORT,
4008 newSVpv ("Collectd::Plugin::FooBar", 24),
4013 [c_cv_have_libperl="yes"],
4014 [c_cv_have_libperl="no"]
4019 CFLAGS="$SAVE_CFLAGS"
4022 if test "x$c_cv_have_libperl" = "xno"; then
4027 if test "x$with_libperl" = "xyes"; then
4028 SAVE_CFLAGS="$CFLAGS"
4030 CFLAGS="$CFLAGS $PERL_CFLAGS"
4031 LIBS="$LIBS $PERL_LIBS"
4033 AC_CACHE_CHECK([if Perl supports ithreads],
4034 [c_cv_have_perl_ithreads],
4044 #if !defined(USE_ITHREADS)
4045 # error "Perl does not support ithreads!"
4046 #endif /* !defined(USE_ITHREADS) */
4051 [c_cv_have_perl_ithreads="yes"],
4052 [c_cv_have_perl_ithreads="no"]
4057 CFLAGS="$SAVE_CFLAGS"
4061 if test "x$with_libperl" = "xyes"; then
4062 # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
4063 # (see issues #41 and #42)
4064 SAVE_CFLAGS="$CFLAGS"
4066 CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
4067 LIBS="$LIBS $PERL_LIBS"
4069 AC_CACHE_CHECK([for broken Perl_load_module()],
4070 [c_cv_have_broken_perl_load_module],
4076 #define PERL_NO_GET_CONTEXT
4083 load_module (PERL_LOADMOD_NOIMPORT,
4084 newSVpv ("Collectd::Plugin::FooBar", 24),
4089 [c_cv_have_broken_perl_load_module="no"],
4090 [c_cv_have_broken_perl_load_module="yes"]
4095 CFLAGS="$SAVE_CFLAGS"
4099 if test "x$c_cv_have_broken_perl_load_module" = "xyes"; then
4100 PERL_CFLAGS="$PERL_CFLAGS -Wno-nonnull"
4103 if test "x$with_libperl" = "xyes"; then
4104 SAVE_CFLAGS="$CFLAGS"
4106 CFLAGS="$CFLAGS $PERL_CFLAGS"
4107 LIBS="$LIBS $PERL_LIBS"
4110 [struct mgvtbl.svt_local],
4111 [have_struct_mgvtbl_svt_local="yes"],
4112 [have_struct_mgvtbl_svt_local="no"],
4120 if test "x$have_struct_mgvtbl_svt_local" = "xyes"; then
4121 AC_DEFINE([HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL], [1], [Define if Perls struct mgvtbl has member svt_local.])
4124 CFLAGS="$SAVE_CFLAGS"
4127 AC_SUBST([PERL_CFLAGS])
4128 AC_SUBST([PERL_LIBS])
4133 with_pg_config="pg_config"
4134 AC_ARG_WITH([libpq],
4135 [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@], [Path to libpq.])],
4137 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
4138 with_libpq="$withval"
4140 if test -f "$withval" && test -x "$withval"; then
4141 with_pg_config="$withval"
4142 else if test -x "$withval/bin/pg_config"; then
4143 with_pg_config="$withval/bin/pg_config"
4151 if test "x$with_libpq" = "xyes"; then
4152 with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
4155 if test $pg_config_status -eq 0; then
4156 if test -n "$with_libpq_includedir"; then
4157 for dir in $with_libpq_includedir; do
4158 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
4162 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
4165 SAVE_CPPFLAGS="$CPPFLAGS"
4166 CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
4168 AC_CHECK_HEADERS([libpq-fe.h],
4170 [with_libpq="no (libpq-fe.h not found)"]
4173 CPPFLAGS="$SAVE_CPPFLAGS"
4176 if test "x$with_libpq" = "xyes"; then
4177 with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
4180 if test $pg_config_status -eq 0
4182 if test -n "$with_libpq_libdir"; then
4183 for dir in $with_libpq_libdir; do
4184 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
4188 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
4191 SAVE_LDFLAGS="$LDFLAGS"
4192 LDFLAGS="$LDFLAGS $with_libpq_ldflags"
4194 AC_CHECK_LIB([pq], [PQserverVersion],
4196 [with_libpq="no (symbol 'PQserverVersion' not found)"])
4198 LDFLAGS="$SAVE_LDFLAGS"
4201 if test "x$with_libpq" = "xyes"; then
4202 BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
4203 BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
4204 BUILD_WITH_LIBPQ_LIBS="-lpq"
4207 AC_SUBST([BUILD_WITH_LIBPQ_CPPFLAGS])
4208 AC_SUBST([BUILD_WITH_LIBPQ_LDFLAGS])
4209 AC_SUBST([BUILD_WITH_LIBPQ_LIBS])
4212 # --with-libpqos {{{
4213 with_libpqos_cppflags=""
4214 with_libpqos_ldflags=""
4215 AC_ARG_WITH(libpqos, [AS_HELP_STRING([--with-libpqos@<:@=PREFIX@:>@], [Path to libpqos.])],
4217 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4219 with_libpqos_cppflags="-I$withval/include"
4220 with_libpqos_ldflags="-L$withval/lib"
4223 with_libpqos="$withval"
4229 if test "x$with_libpqos" = "xyes"
4231 SAVE_CPPFLAGS="$CPPFLAGS"
4232 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4234 AC_CHECK_HEADERS(pqos.h, [with_libpqos="yes"], [with_libpqos="no (pqos.h not found)"])
4236 CPPFLAGS="$SAVE_CPPFLAGS"
4238 if test "x$with_libpqos" = "xyes"
4240 SAVE_CPPFLAGS="$CPPFLAGS"
4241 SAVE_LDFLAGS="$LDFLAGS"
4242 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4243 LDFLAGS="$LDFLAGS $with_libpqos_ldflags"
4245 AC_CHECK_LIB(pqos, pqos_init, [with_libpqos="yes"], [with_libpqos="no (Can't find libpqos)"])
4247 CPPFLAGS="$SAVE_CPPFLAGS"
4248 LDFLAGS="$SAVE_LDFLAGS"
4250 if test "x$with_libpqos" = "xyes"
4252 SAVE_CPPFLAGS="$CPPFLAGS"
4253 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4254 AC_RUN_IFELSE([AC_LANG_PROGRAM(
4255 [[#include <pqos.h>]],
4256 [[return !(PQOS_VERSION >= 106)]])],
4257 [with_libpqos="yes"], [with_libpqos="no (pqos library version 1.06 or higher is required)"])
4258 CPPFLAGS="$SAVE_CPPFLAGS"
4260 if test "x$with_libpqos" = "xyes"
4262 BUILD_WITH_LIBPQOS_CPPFLAGS="$with_libpqos_cppflags"
4263 BUILD_WITH_LIBPQOS_LDFLAGS="$with_libpqos_ldflags"
4264 BUILD_WITH_LIBPQOS_LIBS="-lpqos"
4265 AC_SUBST(BUILD_WITH_LIBPQOS_CPPFLAGS)
4266 AC_SUBST(BUILD_WITH_LIBPQOS_LDFLAGS)
4267 AC_SUBST(BUILD_WITH_LIBPQOS_LIBS)
4271 # --with-libprotobuf {{{
4272 with_libprotobuf_cppflags=""
4273 with_libprotobuf_ldflags=""
4274 AC_ARG_WITH([libprotobuf],
4275 [AS_HELP_STRING([--with-libprotobuf@<:@=PREFIX@:>@], [Path to libprotobuf.])],
4277 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4278 with_libprotobuf_cppflags="-I$withval/include"
4279 with_libprotobuf_ldflags="-L$withval/lib"
4280 with_libprotobuf="yes"
4282 if test "x$withval" = "xno"; then
4283 with_libprotobuf="no (disabled on command line)"
4289 if test "x$withval" = "xyes"; then
4290 PKG_CHECK_MODULES([PROTOBUF], [protobuf],
4291 [with_libprotobuf="yes"],
4292 [with_libprotobuf="no (pkg-config could not find libprotobuf)"]
4296 if test "x$withval" != "xno"; then
4297 SAVE_LDFLAGS="$LDFLAGS"
4299 LDFLAGS="$with_libprotobuf_ldflags"
4300 LIBS="$PROTOBUF_LIBS $LIBS"
4302 AC_CHECK_LIB([protobuf], [main],
4304 SAVE_CPPFLAGS="$CPPFLAGS"
4305 CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4306 if test "x$PROTOBUF_LIBS" = "x"
4308 PROTOBUF_LIBS="-lprotobuf"
4310 AC_CHECK_HEADERS([google/protobuf/util/time_util.h],
4311 [with_libprotobuf="yes"],
4312 [with_libprotobuf="no (<google/protobuf/util/time_util.h> not found)"]
4314 CPPFLAGS="$SAVE_CPPFLAGS"
4316 [with_libprotobuf="no (libprotobuf not found)"]
4319 LDFLAGS="$SAVE_LDFLAGS"
4323 BUILD_WITH_LIBPROTOBUF_CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4324 BUILD_WITH_LIBPROTOBUF_LDFLAGS="$with_libprotobuf_ldflags"
4325 BUILD_WITH_LIBPROTOBUF_LIBS="$PROTOBUF_LIBS"
4326 AC_SUBST([BUILD_WITH_LIBPROTOBUF_CPPFLAGS])
4327 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LDFLAGS])
4328 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LIBS])
4331 AC_ARG_VAR([PROTOC], [path to the protoc binary])
4332 AC_PATH_PROG([PROTOC], [protoc])
4334 if test "x$PROTOC" != "x"; then
4335 AC_MSG_CHECKING([for protoc 3.0.0+])
4336 if $PROTOC --version | $EGREP libprotoc.3 >/dev/null; then
4337 protoc3="yes (`$PROTOC --version`)"
4340 protoc3="no (`$PROTOC --version`)"
4342 AC_MSG_RESULT([$protoc3])
4344 AM_CONDITIONAL([HAVE_PROTOC3], [test "x$have_protoc3" = "xyes"])
4346 # --with-libprotobuf-c {{{
4347 AC_ARG_WITH([libprotobuf-c],
4348 [AS_HELP_STRING([--with-libprotobuf-c@<:@=PREFIX@:>@], [Path to libprotobuf-c.])],
4350 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4351 with_libprotobuf_c_cppflags="-I$withval/include"
4352 with_libprotobuf_c_ldflags="-L$withval/lib"
4353 with_libprotobuf_c="yes"
4356 if test "x$withval" = "xno"; then
4357 with_libprotobuf_c="no (disabled on command line)"
4363 if test "x$withval" = "xyes"; then
4364 PKG_CHECK_MODULES([PROTOBUF_C], [libprotobuf-c],
4365 [with_libprotobuf_c="yes"],
4366 [with_libprotobuf_c="no (pkg-config could not find libprotobuf-c)"]
4370 if test "x$withval" != "xno"; then
4371 SAVE_LDFLAGS="$LDFLAGS"
4373 LDFLAGS="$with_libprotobuf_c_ldflags"
4374 LIBS="$PROTOBUF_C_LIBS $LIBS"
4375 AC_CHECK_LIB([protobuf-c], [protobuf_c_message_pack],
4377 SAVE_CPPFLAGS="$CPPFLAGS"
4378 CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4379 if test "x$PROTOBUF_C_LIBS" = "x"; then
4380 PROTOBUF_C_LIBS="-lprotobuf-c"
4383 AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
4385 with_libprotobuf_c="yes"
4388 [with_libprotobuf_c="no (<protobuf-c.h> not found)"]
4391 CPPFLAGS="$SAVE_CPPFLAGS"
4393 [with_libprotobuf_c="no (libprotobuf-c not found)"]
4395 LDFLAGS="$SAVE_LDFLAGS"
4399 BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4400 BUILD_WITH_LIBPROTOBUF_C_LDFLAGS="$with_libprotobuf_c_ldflags"
4401 BUILD_WITH_LIBPROTOBUF_C_LIBS="$PROTOBUF_C_LIBS"
4402 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS])
4403 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LDFLAGS])
4404 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LIBS])
4407 AC_ARG_VAR([PROTOC_C], [path to the protoc-c binary])
4408 AC_PATH_PROG([PROTOC_C], [protoc-c])
4409 if test "x$PROTOC_C" = "x"
4411 have_protoc_c="no (protoc-c compiler not found)"
4416 # --with-libpython {{{
4417 AC_ARG_VAR([LIBPYTHON_CPPFLAGS], [Preprocessor flags for libpython])
4418 AC_ARG_VAR([LIBPYTHON_LDFLAGS], [Linker flags for libpython])
4419 AC_ARG_VAR([LIBPYTHON_LIBS], [Libraries for libpython])
4421 AC_ARG_WITH([libpython],
4422 [AS_HELP_STRING([--with-libpython], [if we should build with libpython @<:@default=yes@:>@])],
4423 [with_libpython="$withval"],
4424 [with_libpython="check"]
4427 if test "$with_libpython" != "no"; then
4428 if test "$LIBPYTHON_CPPFLAGS" = "" && test "$LIBPYTHON_LDFLAGS" = ""; then
4429 AC_ARG_VAR([PYTHON_CONFIG], [path to python-config])
4430 AC_PATH_PROGS([PYTHON_CONFIG],
4431 [python3-config python2-config python-config]
4433 if test "$PYTHON_CONFIG" = ""; then
4434 if test "$with_libpython" = "yes"; then
4435 AC_MSG_ERROR([Unable to find python-config])
4442 if test "$PYTHON_CONFIG" != ""; then
4443 LIBPYTHON_CPPFLAGS="`${PYTHON_CONFIG} --includes`"
4444 if test $? -ne 0; then
4447 LIBPYTHON_LDFLAGS="`${PYTHON_CONFIG} --ldflags`"
4448 if test $? -ne 0; then
4451 LIBPYTHON_LIBS="`${PYTHON_CONFIG} --libs`"
4452 if test $? -ne 0; then
4457 if test "$with_libpython" != "xno"; then
4458 SAVE_CPPFLAGS="$CPPFLAGS"
4459 SAVE_LDFLAGS="$LDFLAGS"
4461 CPPFLAGS="$LIBPYTHON_CPPFLAGS $CPPFLAGS"
4462 LDFLAGS="$LIBPYTHON_LDFLAGS $LDFLAGS"
4463 LIBS="$LIBPYTHON_LIBS $LIBS"
4465 AC_CHECK_HEADERS([Python.h],
4467 AC_MSG_CHECKING([for libpython])
4468 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4469 [[#include <Python.h>]],
4470 [[Py_Initialize();]])
4472 [with_libpython="yes"],
4473 [with_libpython="no"]
4475 AC_MSG_RESULT([$with_libpython])
4477 [with_libpython="no"]
4480 CPPFLAGS="$SAVE_CPPFLAGS"
4481 LDFLAGS="$SAVE_LDFLAGS"
4484 # }}} --with-libpython
4486 # --with-librabbitmq {{{
4487 AC_ARG_WITH([librabbitmq],
4488 [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
4490 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4491 with_librabbitmq_cppflags="-I$withval/include"
4492 with_librabbitmq_ldflags="-L$withval/lib"
4493 with_librabbitmq="yes"
4495 with_librabbitmq="$withval"
4498 [with_librabbitmq="yes"]
4501 if test "x$with_librabbitmq" = "xyes"; then
4502 SAVE_CPPFLAGS="$CPPFLAGS"
4503 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4505 AC_CHECK_HEADERS([amqp.h],
4506 [with_librabbitmq="yes"],
4507 [with_librabbitmq="no (amqp.h not found)"]
4510 CPPFLAGS="$SAVE_CPPFLAGS"
4513 if test "x$with_librabbitmq" = "xyes"; then
4514 # librabbitmq up to version 0.9.1 provides "library_errno", later
4515 # versions use "library_error". The library does not provide a version
4518 SAVE_CPPFLAGS="$CPPFLAGS"
4519 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4521 AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],
4528 #include <inttypes.h>
4532 CPPFLAGS="$SAVE_CPPFLAGS"
4534 SAVE_LDFLAGS="$LDFLAGS"
4535 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4537 AC_CHECK_LIB([rabbitmq], [amqp_basic_publish],
4538 [with_librabbitmq="yes"],
4539 [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"]
4542 LDFLAGS="$SAVE_LDFLAGS"
4545 if test "x$with_librabbitmq" = "xyes"; then
4546 SAVE_CPPFLAGS="$CPPFLAGS"
4547 SAVE_LDFLAGS="$LDFLAGS"
4549 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4550 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4553 AC_CHECK_HEADERS([amqp_tcp_socket.h amqp_socket.h])
4554 AC_CHECK_FUNC([amqp_tcp_socket_new],
4556 AC_DEFINE([HAVE_AMQP_TCP_SOCKET], [1],
4557 [Define if librabbitmq provides the new TCP socket interface.])
4561 AC_CHECK_DECLS([amqp_socket_close],
4566 #ifdef HAVE_AMQP_TCP_SOCKET_H
4567 # include <amqp_tcp_socket.h>
4569 #ifdef HAVE_AMQP_SOCKET_H
4570 # include <amqp_socket.h>
4575 CPPFLAGS="$SAVE_CPPFLAGS"
4576 LDFLAGS="$SAVE_LDFLAGS"
4580 if test "x$with_librabbitmq" = "xyes"; then
4581 BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
4582 BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
4583 BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
4586 AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
4587 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
4588 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
4592 # --with-librdkafka {{{
4593 AC_ARG_WITH([librdkafka],
4594 [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
4596 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4597 with_librdkafka_cppflags="-I$withval/include"
4598 with_librdkafka_ldflags="-L$withval/lib"
4599 with_librdkafka_rpath="$withval/lib"
4600 with_librdkafka="yes"
4602 with_librdkafka="$withval"
4605 [with_librdkafka="yes"]
4608 if test "x$with_librdkafka" = "xyes"; then
4609 SAVE_CPPFLAGS="$CPPFLAGS"
4610 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
4612 AC_CHECK_HEADERS([librdkafka/rdkafka.h],
4613 [with_librdkafka="yes"],
4614 [with_librdkafka="no (librdkafka/rdkafka.h not found)"]
4617 CPPFLAGS="$SAVE_CPPFLAGS"
4620 if test "x$with_librdkafka" = "xyes"; then
4621 SAVE_LDFLAGS="$LDFLAGS"
4622 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
4624 AC_CHECK_LIB([rdkafka], [rd_kafka_new],
4625 [with_librdkafka="yes"],
4626 [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
4628 AC_CHECK_LIB([rdkafka], [rd_kafka_conf_set_log_cb],
4629 [with_librdkafka_log_cb="yes"],
4630 [with_librdkafka_log_cb="no"])
4632 AC_CHECK_LIB([rdkafka], [rd_kafka_set_logger],
4633 [with_librdkafka_logger="yes"],
4634 [with_librdkafka_logger="no"]
4637 LDFLAGS="$SAVE_LDFLAGS"
4640 if test "x$with_librdkafka" = "xyes"; then
4641 BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
4642 BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
4644 if test "x$with_librdkafka_rpath" != "x"; then
4645 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
4647 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
4650 if test "x$with_librdkafka_log_cb" = "xyes"; then
4651 AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
4652 else if test "x$with_librdkafka_logger" = "xyes"; then
4653 AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
4657 AC_SUBST([BUILD_WITH_LIBRDKAFKA_CPPFLAGS])
4658 AC_SUBST([BUILD_WITH_LIBRDKAFKA_LDFLAGS])
4659 AC_SUBST([BUILD_WITH_LIBRDKAFKA_LIBS])
4662 # --with-librouteros {{{
4663 AC_ARG_WITH([librouteros],
4664 [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
4666 if test "x$withval" = "xyes" || test "x$withval" = "xno"; then
4667 with_librouteros="$witval"
4669 with_librouteros_cppflags="-I$withval/include"
4670 with_librouteros_ldflags="-L$withval/lib"
4671 with_librouteros="yes"
4674 [with_librouteros="yes"]
4677 if test "x$with_librouteros" = "xyes"; then
4678 SAVE_CPPFLAGS="$CPPFLAGS"
4679 CPPFLAGS="$CPPFLAGS $with_librouteros_cppflags"
4681 AC_CHECK_HEADERS([routeros_api.h],
4682 [with_librouteros="yes"],
4683 [with_librouteros="no (routeros_api.h not found)"]
4686 CPPFLAGS="$SAVE_CPPFLAGS"
4689 if test "x$with_librouteros" = "xyes"; then
4690 SAVE_LDFLAGS="$LDFLAGS"
4691 LDFLAGS="$LDFLAGS $with_librouteros_ldflags"
4693 AC_CHECK_LIB([routeros], [ros_interface],
4694 [with_librouteros="yes"],
4695 [with_librouteros="no (symbol 'ros_interface' not found)"]
4698 LDFLAGS="$SAVE_LDFLAGS"
4701 if test "x$with_librouteros" = "xyes"; then
4702 BUILD_WITH_LIBROUTEROS_CPPFLAGS="$with_librouteros_cppflags"
4703 BUILD_WITH_LIBROUTEROS_LDFLAGS="$with_librouteros_ldflags"
4706 AC_SUBST([BUILD_WITH_LIBROUTEROS_CPPFLAGS])
4707 AC_SUBST([BUILD_WITH_LIBROUTEROS_LDFLAGS])
4711 librrd_threadsafe="no"
4712 librrd_rrdc_update="no"
4713 AC_ARG_WITH([librrd],
4714 [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4716 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4717 librrd_cflags="-I$withval/include"
4718 librrd_ldflags="-L$withval/lib"
4721 with_librrd="$withval"
4727 if test "x$with_librrd" = "xyes"; then
4728 SAVE_LDFLAGS="$LDFLAGS"
4729 LDFLAGS="$LDFLAGS $librrd_ldflags"
4730 PKG_CHECK_MODULES([RRD], [librrd >= 1.6.0],
4732 AC_CHECK_LIB([rrd], [rrd_update_r],
4733 [librrd_threadsafe="yes"],
4736 AC_CHECK_LIB([rrd], [rrdc_update],
4737 [librrd_rrdc_update="yes"],
4742 LDFLAGS="$SAVE_LDFLAGS"
4744 SAVE_CPPFLAGS="$CPPFLAGS"
4745 CPPFLAGS="$CPPFLAGS $RRD_CFLAGS $librrd_cflags"
4747 AC_CHECK_HEADERS([rrd.h],, [with_librrd="no (rrd.h not found)"])
4749 CPPFLAGS="$SAVE_CPPFLAGS"
4752 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"; then
4753 SAVE_LDFLAGS="$LDFLAGS"
4754 LDFLAGS="$LDFLAGS $librrd_ldflags"
4756 AC_CHECK_LIB([rrd_th], [rrd_update_r],
4758 librrd_ldflags="$librrd_ldflags -lrrd_th"
4759 librrd_threadsafe="yes"
4760 AC_CHECK_LIB([rrd_th], [rrdc_update],
4761 [librrd_rrdc_update="yes"],
4767 LDFLAGS="$SAVE_LDFLAGS"
4770 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"; then
4771 SAVE_LDFLAGS="$LDFLAGS"
4772 LDFLAGS="$LDFLAGS $librrd_ldflags"
4774 AC_CHECK_LIB([rrd], [rrd_update],
4776 librrd_ldflags="$librrd_ldflags -lrrd"
4777 AC_CHECK_LIB([rrd], [rrdc_update],
4778 [librrd_rrdc_update="yes"],
4782 [with_librrd="no (symbol 'rrd_update' not found)"]
4784 LDFLAGS="$SAVE_LDFLAGS"
4787 if test "x$with_librrd" = "xyes"; then
4788 BUILD_WITH_LIBRRD_CFLAGS="$RRD_CFLAGS $librrd_cflags"
4789 BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4790 BUILD_WITH_LIBRRD_LIBS="$RRD_LIBS"
4793 if test "x$librrd_threadsafe" = "xyes"; then
4794 AC_DEFINE([HAVE_THREADSAFE_LIBRRD], [1],
4795 [Define to 1 if the rrd library is thread-safe]
4799 AC_SUBST([BUILD_WITH_LIBRRD_CFLAGS])
4800 AC_SUBST([BUILD_WITH_LIBRRD_LDFLAGS])
4801 AC_SUBST([BUILD_WITH_LIBRRD_LIBS])
4804 # --with-libsensors {{{
4805 AC_ARG_WITH([libsensors],
4806 [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4808 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
4809 with_libsensors="$withval"
4811 with_sensors_cppflags="-I$withval/include"
4812 with_sensors_ldflags="-L$withval/lib"
4813 with_libsensors="yes"
4817 if test "x$ac_system" = "xLinux"; then
4818 with_libsensors="yes"
4820 with_libsensors="no (Linux only library)"
4825 if test "x$with_libsensors" = "xyes"; then
4826 SAVE_CPPFLAGS="$CPPFLAGS"
4827 CPPFLAGS="$CPPFLAGS $with_sensors_cppflags"
4829 AC_CHECK_HEADERS([sensors/sensors.h],
4830 [with_libsensors="yes"],
4831 [with_libsensors="no (sensors/sensors.h not found)"]
4834 CPPFLAGS="$SAVE_CPPFLAGS"
4837 if test "x$with_libsensors" = "xyes"; then
4838 SAVE_LDFLAGS="$LDFLAGS"
4839 LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4841 AC_CHECK_LIB([sensors], [sensors_init],
4842 [with_libsensors="yes"],
4843 [with_libsensors="no (libsensors not found)"]
4846 LDFLAGS="$SAVE_LDFLAGS"
4849 if test "x$with_libsensors" = "xyes"; then
4850 BUILD_WITH_LIBSENSORS_CPPFLAGS="$with_sensors_cppflags"
4851 BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4852 BUILD_WITH_LIBSENSORS_LIBS="-lsensors"
4855 AC_SUBST([BUILD_WITH_LIBSENSORS_CPPFLAGS])
4856 AC_SUBST([BUILD_WITH_LIBSENSORS_LDFLAGS])
4857 AC_SUBST([BUILD_WITH_LIBSENSORS_LIBS])
4862 AC_SUBST([LIBSIGROK_CFLAGS])
4863 AC_SUBST([LIBSIGROK_LIBS])
4864 PKG_CHECK_MODULES([LIBSIGROK], [libsigrok < 0.4],
4865 [with_libsigrok="yes"],
4866 [with_libsigrok="no (pkg-config could not find libsigrok)"]
4870 # --with-libstatgrab {{{
4871 AC_ARG_WITH([libstatgrab],
4872 [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4874 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4875 with_libstatgrab_cflags="-I$withval/include"
4876 with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4877 with_libstatgrab="yes"
4878 with_libstatgrab_pkg_config="no"
4880 with_libstatgrab="$withval"
4881 with_libstatgrab_pkg_config="yes"
4885 with_libstatgrab="yes"
4886 with_libstatgrab_pkg_config="yes"
4889 if test "x$with_libstatgrab" = "xyes" && test "x$with_libstatgrab_pkg_config" = "xyes"; then
4890 AC_MSG_CHECKING([pkg-config for libstatgrab])
4892 $PKG_CONFIG --exists libstatgrab 2>/dev/null
4893 if test "$?" != "0"; then
4894 with_libstatgrab_pkg_config="no"
4895 with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4896 temp_result="not found"
4898 AC_MSG_RESULT([$temp_result])
4901 if test "x$with_libstatgrab" = "xyes" && test "x$with_libstatgrab_pkg_config" = "xyes" && test "x$with_libstatgrab_cflags" = "x"; then
4902 AC_MSG_CHECKING([for libstatgrab CFLAGS])
4903 temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4904 if test "$?" = "0"; then
4905 with_libstatgrab_cflags="$temp_result"
4907 with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4908 temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4910 AC_MSG_RESULT([$temp_result])
4913 if test "x$with_libstatgrab" = "xyes" && test "x$with_libstatgrab_pkg_config" = "xyes" && test "x$with_libstatgrab_ldflags" = "x"; then
4914 AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4915 temp_result="`$PKG_CONFIG --libs libstatgrab`"
4918 with_libstatgrab_ldflags="$temp_result"
4920 with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4921 temp_result="$PKG_CONFIG --libs libstatgrab failed"
4923 AC_MSG_RESULT([$temp_result])
4926 if test "x$with_libstatgrab" = "xyes"; then
4927 SAVE_CPPFLAGS="$CPPFLAGS"
4928 CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4930 AC_CHECK_HEADERS([statgrab.h],
4931 [with_libstatgrab="yes"],
4932 [with_libstatgrab="no (statgrab.h not found)"]
4935 CPPFLAGS="$SAVE_CPPFLAGS"
4938 if test "x$with_libstatgrab" = "xyes"; then
4939 SAVE_LDFLAGS="$LDFLAGS"
4940 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4942 AC_CHECK_LIB([statgrab], [sg_init],
4943 [with_libstatgrab="yes"],
4944 [with_libstatgrab="no (symbol sg_init not found)"]
4947 LDFLAGS="$SAVE_LDFLAGS"
4950 if test "x$with_libstatgrab" = "xyes"; then
4951 SAVE_CFLAGS="$CFLAGS"
4952 SAVE_LDFLAGS="$LDFLAGS"
4955 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4956 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4957 LIBS="-lstatgrab $LIBS"
4959 AC_CACHE_CHECK([if libstatgrab >= 0.90],
4960 [c_cv_have_libstatgrab_0_90],
4967 #include <statgrab.h>
4970 if (sg_init()) return 0;
4974 [c_cv_have_libstatgrab_0_90="no"],
4975 [c_cv_have_libstatgrab_0_90="yes"]
4980 CFLAGS="$SAVE_CFLAGS"
4981 LDFLAGS="$SAVE_LDFLAGS"
4985 AM_CONDITIONAL([BUILD_WITH_LIBSTATGRAB], [test "x$with_libstatgrab" = "xyes"])
4987 if test "x$with_libstatgrab" = "xyes"; then
4988 AC_DEFINE([HAVE_LIBSTATGRAB], [1],
4989 [Define to 1 if you have the 'statgrab' library (-lstatgrab)]
4992 if test "x$c_cv_have_libstatgrab_0_90" = "xyes"; then
4993 AC_DEFINE([HAVE_LIBSTATGRAB_0_90], [1],
4994 [Define to 1 if libstatgrab version >= 0.90]
4998 BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4999 BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
5003 AC_SUBST([BUILD_WITH_LIBSTATGRAB_CFLAGS])
5004 AC_SUBST([BUILD_WITH_LIBSTATGRAB_LDFLAGS])
5007 # --with-libtokyotyrant {{{
5008 AC_ARG_WITH([libtokyotyrant],
5009 [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
5011 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5012 with_libtokyotyrant="$withval"
5014 with_libtokyotyrant_cppflags="-I$withval/include"
5015 with_libtokyotyrant_ldflags="-L$withval/include"
5016 with_libtokyotyrant_libs="-ltokyotyrant"
5017 with_libtokyotyrant="yes"
5020 [with_libtokyotyrant="yes"]
5023 if test "x$with_libtokyotyrant" = "xyes"; then
5024 if $PKG_CONFIG --exists tokyotyrant; then
5025 with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
5026 with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
5027 with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
5031 if test "x$with_libtokyotyrant" = "xyes"; then
5032 SAVE_CPPFLAGS="$CPPFLAGS"
5033 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
5035 AC_CHECK_HEADERS([tcrdb.h],
5036 [with_libtokyotyrant="yes"],
5037 [with_libtokyotyrant="no (tcrdb.h not found)"]
5040 CPPFLAGS="$SAVE_CPPFLAGS"
5043 if test "x$with_libtokyotyrant" = "xyes"; then
5044 SAVE_LDFLAGS="$LDFLAGS"
5045 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
5047 AC_CHECK_LIB([tokyotyrant], [tcrdbrnum],
5048 [with_libtokyotyrant="yes"],
5049 [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
5050 [$with_libtokyotyrant_libs]
5053 LDFLAGS="$SAVE_LDFLAGS"
5056 if test "x$with_libtokyotyrant" = "xyes"; then
5057 BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
5058 BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
5059 BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
5061 AC_SUBST([BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS])
5062 AC_SUBST([BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS])
5063 AC_SUBST([BUILD_WITH_LIBTOKYOTYRANT_LIBS])
5066 # --with-libudev {{{
5067 AC_ARG_WITH([libudev],
5068 [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
5070 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5071 with_libudev="$withval"
5073 with_libudev_cppflags="-I$withval/include"
5074 with_libudev_ldflags="-L$withval/lib"
5079 if test "x$ac_system" = "xLinux"; then
5082 with_libudev="no (Linux only library)"
5087 if test "x$with_libudev" = "xyes"; then
5088 SAVE_CPPFLAGS="$CPPFLAGS"
5089 CPPFLAGS="$CPPFLAGS $with_libudev_cppflags"
5091 AC_CHECK_HEADERS([libudev.h],
5092 [with_libudev="yes"],
5093 [with_libudev="no (libudev.h not found)"]
5096 CPPFLAGS="$SAVE_CPPFLAGS"
5099 if test "x$with_libudev" = "xyes"; then
5100 SAVE_LDFLAGS="$LDFLAGS"
5101 LDFLAGS="$LDFLAGS $with_libudev_ldflags"
5103 AC_CHECK_LIB([udev], [udev_new],
5104 [with_libudev="yes"],
5105 [with_libudev="no (libudev not found)"]
5108 LDFLAGS="$SAVE_LDFLAGS"
5111 if test "x$with_libudev" = "xyes"; then
5112 BUILD_WITH_LIBUDEV_CPPFLAGS="$with_libudev_cppflags"
5113 BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
5114 BUILD_WITH_LIBUDEV_LIBS="-ludev"
5117 AC_SUBST([BUILD_WITH_LIBUDEV_CPPFLAGS])
5118 AC_SUBST([BUILD_WITH_LIBUDEV_LDFLAGS])
5119 AC_SUBST([BUILD_WITH_LIBUDEV_LIBS])
5121 AM_CONDITIONAL([BUILD_WITH_LIBUDEV], [test "x$with_libudev" = "xyes"])
5124 # --with-libupsclient {{{
5125 with_libupsclient_config=""
5126 AC_ARG_WITH([libupsclient],
5127 [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
5129 if test "x$withval" = "xno"; then
5130 with_libupsclient="no"
5131 else if test "x$withval" = "xyes"; then
5132 with_libupsclient="use_pkgconfig"
5134 if test -x "$withval"; then
5135 with_libupsclient_config="$withval"
5136 with_libupsclient="use_libupsclient_config"
5137 else if test -x "$withval/bin/libupsclient-config"; then
5138 with_libupsclient_config="$withval/bin/libupsclient-config"
5139 with_libupsclient="use_libupsclient_config"
5141 AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
5142 with_libupsclient_cflags="-I$withval/include"
5143 with_libupsclient_libs="-L$withval/lib -lupsclient"
5144 with_libupsclient="yes"
5148 [with_libupsclient="use_pkgconfig"]
5151 # configure using libupsclient-config
5152 if test "x$with_libupsclient" = "xuse_libupsclient_config"; then
5153 with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
5154 if test $? -ne 0; then
5155 with_libupsclient="no ($with_libupsclient_config failed)"
5157 with_libupsclient_libs="`$with_libupsclient_config --libs`"
5158 if test $? -ne 0; then
5159 with_libupsclient="no ($with_libupsclient_config failed)"
5163 if test "x$with_libupsclient" = "xuse_libupsclient_config"; then
5164 with_libupsclient="yes"
5167 # configure using pkg-config
5168 if test "x$with_libupsclient" = "xuse_pkgconfig"; then
5169 AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
5170 $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
5171 if test $? -ne 0; then
5172 with_libupsclient="no (pkg-config doesn't know libupsclient)"
5176 if test "x$with_libupsclient" = "xuse_pkgconfig"; then
5177 with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
5178 if test $? -ne 0; then
5179 with_libupsclient="no ($PKG_CONFIG failed)"
5182 with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
5183 if test $? -ne 0; then
5184 with_libupsclient="no ($PKG_CONFIG failed)"
5188 if test "x$with_libupsclient" = "xuse_pkgconfig"; then
5189 with_libupsclient="yes"
5192 if test "x$with_libupsclient" = "xyes"; then
5193 SAVE_CPPFLAGS="$CPPFLAGS"
5194 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
5196 AC_CHECK_HEADERS([upsclient.h],
5197 [with_libupsclient="yes"],
5198 [with_libupsclient="no (upsclient.h not found)"]
5201 CPPFLAGS="$SAVE_CPPFLAGS"
5204 if test "x$with_libupsclient" = "xyes"; then
5205 SAVE_LDFLAGS="$LDFLAGS"
5206 LDFLAGS="$LDFLAGS $with_libupsclient_libs"
5208 AC_CHECK_LIB([upsclient], [upscli_connect],
5209 [with_libupsclient="yes"],
5210 [with_libupsclient="no (symbol upscli_connect not found)"]
5213 AC_CHECK_LIB([upsclient], [upscli_init],
5214 [AC_DEFINE([WITH_UPSCLIENT_27], [1], [At least version 2-7])],
5218 LDFLAGS="$SAVE_LDFLAGS"
5221 if test "x$with_libupsclient" = "xyes"; then
5222 SAVE_CPPFLAGS="$CPPFLAGS"
5223 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
5225 AC_CHECK_TYPES([UPSCONN_t, UPSCONN],
5231 #include <upsclient.h>
5235 CPPFLAGS="$SAVE_CPPFLAGS"
5238 if test "x$with_libupsclient" = "xyes"; then
5239 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
5240 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
5243 AC_SUBST([BUILD_WITH_LIBUPSCLIENT_CFLAGS])
5244 AC_SUBST([BUILD_WITH_LIBUPSCLIENT_LIBS])
5247 # --with-libxenctrl {{{
5248 AC_ARG_WITH([libxenctrl],
5249 [AS_HELP_STRING([--with-libxenctrl@<:@=PREFIX@:>@], [Path to libxenctrl.])],
5251 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5252 with_libxenctrl_cppflags="-I$withval/include"
5253 with_libxenctrl_ldflags="-L$withval/lib"
5254 with_libxenctrl="yes"
5256 with_libxenctrl="$withval"
5259 [with_libxenctrl="yes"]
5262 if test "x$with_libxenctrl" = "xyes"; then
5263 SAVE_CPPFLAGS="$CPPFLAGS"
5264 CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
5266 AC_CHECK_HEADERS([xenctrl.h],
5267 [with_libxenctrl="yes"],
5268 [with_libxenctrl="no (xenctrl.h not found)"]
5271 CPPFLAGS="$SAVE_CPPFLAGS"
5274 if test "x$with_libxenctrl" = "xyes"; then
5275 SAVE_LDFLAGS="$LDFLAGS"
5276 LDFLAGS="$LDFLAGS $with_libxenctrl_ldflags"
5278 #Xen versions older than 3.4 has no xc_getcpuinfo()
5279 AC_CHECK_LIB([xenctrl], [xc_getcpuinfo],
5280 [with_libxenctrl="yes"],
5281 [with_libxenctrl="no (symbol 'xc_getcpuinfo' not found)"]
5284 LDFLAGS="$SAVE_LDFLAGS"
5287 LIBXENCTL_CPPFLAGS="$with_libxenctl_cppflags"
5288 LIBXENCTL_LDFLAGS="$with_libxenctl_ldflags"
5289 AC_SUBST([LIBXENCTL_CPPFLAGS])
5290 AC_SUBST([LIBXENCTL_LDFLAGS])
5293 # --with-libxmms {{{
5294 with_xmms_config="xmms-config"
5295 AC_ARG_WITH([libxmms],
5296 [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
5298 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5299 with_libxmms="$withval"
5301 if test -f "$withval" && test -x "$withval"; then
5302 with_xmms_config="$withval"
5303 else if test -x "$withval/bin/xmms-config"; then
5304 with_xmms_config="$withval/bin/xmms-config"
5309 [with_libxmms="yes"]
5312 if test "x$with_libxmms" = "xyes"; then
5313 with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
5314 if test $? -ne 0; then
5319 if test "x$with_libxmms" = "xyes"; then
5320 with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
5321 if test $? -ne 0; then
5326 if test "x$with_libxmms" = "xyes"; then
5327 SAVE_CFLAGS="$CFLAGS"
5328 CFLAGS="$with_xmms_cflags"
5330 AC_CHECK_HEADER([xmmsctrl.h],
5331 [with_libxmms="yes"],
5332 [with_libxmms="no"],
5335 CFLAGS="$SAVE_CFLAGS"
5338 if test "x$with_libxmms" = "xyes"; then
5340 LIBS="$with_xmms_libs"
5342 AC_CHECK_LIB([xmms], [xmms_remote_get_info],
5343 [with_libxmss="yes"],
5344 [with_libxmms="no"],
5352 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
5353 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
5355 AC_SUBST([BUILD_WITH_LIBXMMS_CFLAGS])
5356 AC_SUBST([BUILD_WITH_LIBXMMS_LIBS])
5359 # --with-libyajl {{{
5360 AC_ARG_WITH([libyajl],
5361 [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
5363 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5364 with_libyajl_cppflags="-I$withval/include"
5365 with_libyajl_ldflags="-L$withval/lib"
5368 with_libyajl="$withval"
5371 [with_libyajl="yes"]
5374 if test "x$with_libyajl" = "xyes"; then
5375 SAVE_CPPFLAGS="$CPPFLAGS"
5376 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5378 AC_CHECK_HEADERS([yajl/yajl_parse.h],
5379 [with_libyajl="yes"],
5380 [with_libyajl="no (yajl/yajl_parse.h not found)"]
5383 AC_CHECK_HEADERS([yajl/yajl_tree.h],
5384 [with_libyajl2="yes"],
5385 [with_libyajl2="no (yajl/yajl_tree.h not found)"]
5388 AC_CHECK_HEADERS([yajl/yajl_version.h])
5390 CPPFLAGS="$SAVE_CPPFLAGS"
5393 if test "x$with_libyajl" = "xyes"; then
5394 SAVE_LDFLAGS="$LDFLAGS"
5395 LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
5397 AC_CHECK_LIB([yajl], [yajl_alloc],
5398 [with_libyajl="yes"],
5399 [with_libyajl="no (Symbol 'yajl_alloc' not found)"]
5402 AC_CHECK_LIB([yajl], [yajl_tree_parse],
5403 [with_libyajl2="yes"],
5404 [with_libyajl2="no (Symbol 'yajl_tree_parse' not found)"]
5407 LDFLAGS="$SAVE_LDFLAGS"
5410 if test "x$with_libyajl" = "xyes"; then
5411 BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
5412 BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
5413 BUILD_WITH_LIBYAJL_LIBS="-lyajl"
5414 AC_DEFINE([HAVE_LIBYAJL], [1], [Define if libyajl is present and usable.])
5417 AC_SUBST([BUILD_WITH_LIBYAJL_CPPFLAGS])
5418 AC_SUBST([BUILD_WITH_LIBYAJL_LDFLAGS])
5419 AC_SUBST([BUILD_WITH_LIBYAJL_LIBS])
5421 AM_CONDITIONAL([BUILD_WITH_LIBYAJL], [test "x$with_libyajl" = "xyes"])
5425 with_mic_cppflags="-I/opt/intel/mic/sysmgmt/sdk/include"
5426 with_mic_ldflags="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
5427 with_mic_libs="-lMicAccessSDK -scif"
5429 [AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
5431 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5433 else if test -d "$with_mic/lib"; then
5434 with_mic_cppflags="-I$withval/include"
5435 with_mic_ldflags="-L$withval/lib/Linux"
5442 if test "x$with_mic" = "xyes"; then
5443 SAVE_CPPFLAGS="$CPPFLAGS"
5444 CPPFLAGS="$CPPFLAGS $with_mic_cppflags"
5446 AC_CHECK_HEADERS([MicAccessApi.h],
5448 [with_mic="no (MicAccessApi not found)"]
5451 CPPFLAGS="$SAVE_CPPFLAGS"
5454 if test "x$with_mic" = "xyes"; then
5455 SAVE_LDFLAGS="$LDFLAGS"
5456 LDFLAGS="$LDFLAGS $with_mic_ldflags"
5458 AC_CHECK_LIB([MicAccessSDK], [MicInitAPI],
5460 [with_mic="no (symbol MicInitAPI not found)"],
5461 [$PTHREAD_LIBS -lscif]
5464 LDFLAGS="$SAVE_LDFLAGS"
5467 if test "x$with_mic" = "xyes"; then
5468 BUILD_WITH_MIC_CPPFLAGS="$with_mic_cppflags"
5469 BUILD_WITH_MIC_LDFLAGS="$with_mic_ldflags"
5470 BUILD_WITH_MIC_LIBS="$with_mic_libs"
5472 AC_SUBST([BUILD_WITH_MIC_CPPFLAGS])
5473 AC_SUBST([BUILD_WITH_MIC_LDFLAGS])
5474 AC_SUBST([BUILD_WITH_MIC_LIBS])
5477 # --with-libvarnish {{{
5478 AC_ARG_WITH([libvarnish],
5479 [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
5481 if test "x$withval" = "xno"; then
5482 with_libvarnish="no"
5483 else if test "x$withval" = "xyes"; then
5484 with_libvarnish="use_pkgconfig"
5485 else if test -d "$with_libvarnish/lib"; then
5486 with_libvarnish_cflags="-I$withval/include"
5487 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
5488 with_libvarnish="yes"
5491 [with_libvarnish="use_pkgconfig"]
5494 # configure using pkg-config
5495 if test "x$with_libvarnish" = "xuse_pkgconfig"; then
5496 $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
5497 if test $? -ne 0; then
5498 with_libvarnish="no (pkg-config doesn't know varnishapi)"
5502 if test "x$with_libvarnish" = "xuse_pkgconfig"; then
5503 with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
5504 if test $? -ne 0; then
5505 with_libvarnish="no ($PKG_CONFIG failed)"
5508 with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
5509 if test $? -ne 0; then
5510 with_libvarnish="no ($PKG_CONFIG failed)"
5513 if test "x$with_libvarnish" = "xuse_pkgconfig"; then
5514 with_libvarnish="yes"
5517 if test "x$with_libvarnish" = "xyes"; then
5518 SAVE_CPPFLAGS="$CPPFLAGS"
5519 CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
5521 AC_CHECK_HEADERS([vapi/vsc.h],
5522 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
5524 AC_CHECK_HEADERS([vsc.h],
5525 [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support]) ],
5527 AC_CHECK_HEADERS([varnishapi.h],
5528 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
5529 [with_libvarnish="no (found none of the varnish header files)"]
5536 CPPFLAGS="$SAVE_CPPFLAGS"
5539 if test "x$with_libvarnish" = "xyes"; then
5540 BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
5541 BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
5544 AC_SUBST([BUILD_WITH_LIBVARNISH_CFLAGS])
5545 AC_SUBST([BUILD_WITH_LIBVARNISH_LIBS])
5548 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
5549 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
5550 if test $? -eq 0; then
5553 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
5556 $PKG_CONFIG --exists libvirt 2>/dev/null
5557 if test $? = 0; then
5560 with_libvirt="no (pkg-config doesn't know libvirt)"
5563 if test "x$with_libxml2" = "xyes"; then
5564 with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
5565 if test $? -ne 0; then
5569 with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
5570 if test $? -ne 0; then
5575 if test "x$with_libxml2" = "xyes"; then
5576 SAVE_CPPFLAGS="$CPPFLAGS"
5577 CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
5579 AC_CHECK_HEADERS([libxml/parser.h],
5580 [with_libxml2="yes"],
5581 [with_libxml2="no (libxml/parser.h not found)"]
5584 CPPFLAGS="$SAVE_CPPFLAGS"
5587 if test "x$with_libxml2" = "xyes"; then
5588 SAVE_LDFLAGS="$LDFLAGS"
5589 LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
5591 AC_CHECK_LIB([xml2], [xmlXPathEval],
5592 [with_libxml2="yes"],
5593 [with_libxml2="no (symbol xmlXPathEval not found)"]
5596 LDFLAGS="$SAVE_LDFLAGS"
5599 if test "x$with_libxml2" = "xyes"; then
5600 BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
5601 BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
5604 AC_SUBST([BUILD_WITH_LIBXML2_CFLAGS])
5605 AC_SUBST([BUILD_WITH_LIBXML2_LIBS])
5607 if test "x$with_libvirt" = "xyes"; then
5608 with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
5609 if test $? -ne 0; then
5613 with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
5614 if test $? -ne 0; then
5619 if test "x$with_libvirt" = "xyes"; then
5620 SAVE_CPPFLAGS="$CPPFLAGS"
5621 CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
5623 AC_CHECK_HEADERS([libvirt/libvirt.h],
5624 [with_libvirt="yes"],
5625 [with_libvirt="no (libvirt/libvirt.h not found)"]
5628 CPPFLAGS="$SAVE_CPPFLAGS"
5631 if test "x$with_libvirt" = "xyes"; then
5632 SAVE_LDFLAGS="$LDFLAGS"
5633 LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
5635 AC_CHECK_LIB([virt], [virDomainBlockStats],
5636 [with_libvirt="yes"],
5637 [with_libvirt="no (symbol virDomainBlockStats not found)"]
5640 LDFLAGS="$SAVE_LDFLAGS"
5643 if test "x$with_libvirt" = "xyes"; then
5644 BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
5645 BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
5648 AC_SUBST([BUILD_WITH_LIBVIRT_CFLAGS])
5649 AC_SUBST([BUILD_WITH_LIBVIRT_LIBS])
5652 # $PKG_CONFIG --exists OpenIPMIpthread {{{
5653 with_libopenipmipthread="yes"
5654 AC_MSG_CHECKING([for libOpenIPMIpthread])
5655 $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
5656 if test $? -ne 0; then
5657 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
5659 AC_MSG_RESULT([$with_libopenipmipthread])
5661 if test "x$with_libopenipmipthread" = "xyes"; then
5662 AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
5663 temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
5664 if test $? -eq 0; then
5665 with_libopenipmipthread_cflags="$temp_result"
5667 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
5668 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
5670 AC_MSG_RESULT([$temp_result])
5673 if test "x$with_libopenipmipthread" = "xyes"; then
5674 AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
5675 temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
5676 if test $? -eq 0; then
5677 with_libopenipmipthread_ldflags="$temp_result"
5679 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
5680 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
5682 AC_MSG_RESULT([$temp_result])
5685 if test "x$with_libopenipmipthread" = "xyes"; then
5686 SAVE_CPPFLAGS="$CPPFLAGS"
5687 CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
5689 AC_CHECK_HEADERS([OpenIPMI/ipmi_smi.h],
5690 [with_libopenipmipthread="yes"],
5691 [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
5693 #include <OpenIPMI/ipmiif.h>
5694 #include <OpenIPMI/ipmi_err.h>
5695 #include <OpenIPMI/ipmi_posix.h>
5696 #include <OpenIPMI/ipmi_conn.h>
5700 CPPFLAGS="$SAVE_CPPFLAGS"
5703 if test "x$with_libopenipmipthread" = "xyes"; then
5704 BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
5705 BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
5708 AC_SUBST([BUILD_WITH_OPENIPMI_CFLAGS])
5709 AC_SUBST([BUILD_WITH_OPENIPMI_LIBS])
5712 # --with-libatasmart {{{
5713 AC_ARG_WITH([libatasmart],
5714 [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
5716 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5717 with_libatasmart_cppflags="-I$withval/include"
5718 with_libatasmart_ldflags="-L$withval/lib"
5719 with_libatasmart="yes"
5721 with_libatasmart="$withval"
5725 if test "x$ac_system" = "xLinux"; then
5726 with_libatasmart="yes"
5728 with_libatasmart="no (Linux only library)"
5733 if test "x$with_libatasmart" = "xyes"; then
5734 SAVE_CPPFLAGS="$CPPFLAGS"
5735 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5737 AC_CHECK_HEADERS([atasmart.h],
5738 [with_libatasmart="yes"],
5739 [with_libatasmart="no (atasmart.h not found)"])
5741 CPPFLAGS="$SAVE_CPPFLAGS"
5744 if test "x$with_libatasmart" = "xyes"; then
5745 SAVE_LDFLAGS="$LDFLAGS"
5746 LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
5748 AC_CHECK_LIB([atasmart], [sk_disk_open],
5749 [with_libatasmart="yes"],
5750 [with_libatasmart="no (Symbol 'sk_disk_open' not found)"]
5753 LDFLAGS="$SAVE_LDFLAGS"
5756 if test "x$with_libatasmart" = "xyes"; then
5757 BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
5758 BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
5759 BUILD_WITH_LIBATASMART_LIBS="-latasmart"
5762 AC_SUBST([BUILD_WITH_LIBATASMART_CPPFLAGS])
5763 AC_SUBST([BUILD_WITH_LIBATASMART_LDFLAGS])
5764 AC_SUBST([BUILD_WITH_LIBATASMART_LIBS])
5767 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
5768 [with_libnotify="yes"],
5769 [with_libnotify="no (pkg-config doesn't know libnotify)"]
5772 PKG_CHECK_MODULES([LIBRIEMANN_CLIENT], [riemann-client >= 1.6.0],
5773 [with_libriemann_client="yes"],
5774 [with_libriemann_client="no (pkg-config doesn't know libriemann-client)"]
5777 # Check for enabled/disabled features
5780 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
5781 # ------------------------------------------------------------
5783 m4_define([my_toupper],[m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
5788 m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
5793 m4_define([EnDis],[disabled])dnl
5794 m4_define([YesNo],[no])dnl
5800 m4_define([EnDis],[enabled])dnl
5801 m4_define([YesNo],[yes])dnl
5804 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
5808 m4_if([$3], [feature], [],
5812 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
5818 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
5820 enable_$1='[YesNo]'dnl
5822 if test "x$enable_$1" = "xno"; then
5825 if test "x$enable_$1" = "xyes"; then
5828 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
5833 AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [whether or not to enable $3 $4])
5834 AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
5836 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
5838 # AC_PLUGIN(name, default, info)
5839 # ------------------------------------------------------------
5847 [AS_HELP_STRING([--enable-$1],[$3])],
5849 if test "x$enableval" = "xyes"; then
5851 else if test "x$enableval" = "xforce"; then
5855 enable_plugin="no (disabled on command line)"
5859 if test "x$enable_all_plugins" = "xauto"; then
5860 if test "x$2" = "xyes"; then
5866 enable_plugin="$enable_all_plugins"
5870 if test "x$enable_plugin" = "xyes"; then
5871 if test "x$2" = "xyes" || test "x$force" = "xyes"; then
5872 AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
5873 if test "x$2" != "xyes"; then
5874 dependency_warning="yes"
5876 else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
5877 dependency_error="yes"
5878 enable_plugin="$2 (dependency error)"
5881 AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), [test "x$enable_plugin" = "xyes"])
5882 enable_$1="$enable_plugin"
5884 )# AC_PLUGIN(name, default, info)
5886 m4_divert_once([HELP_ENABLE], [
5887 collectd features:])
5888 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
5889 AC_COLLECTD([debug], [enable], [feature], [debugging])
5890 AC_COLLECTD([daemon], [disable], [feature], [daemon mode])
5891 AC_COLLECTD([getifaddrs],[enable], [feature], [getifaddrs under Linux])
5892 AC_COLLECTD([werror], [disable], [feature], [building with -Werror])
5894 dependency_warning="no"
5895 dependency_error="no"
5898 plugin_barometer="no"
5903 plugin_conntrack="no"
5904 plugin_contextswitch="no"
5907 plugin_cpusleep="no"
5908 plugin_curl_json="no"
5909 plugin_curl_xml="no"
5913 plugin_dpdkevents="no"
5914 plugin_dpdkstat="no"
5921 plugin_hugepages="no"
5922 plugin_intel_rdt="no"
5923 plugin_interface="no"
5929 plugin_log_logstash="no"
5932 plugin_multimeter="no"
5935 plugin_ovs_events="no"
5936 plugin_ovs_stats="no"
5939 plugin_processes="no"
5940 plugin_protocols="no"
5946 plugin_tcpconns="no"
5949 plugin_turbostat="no"
5955 plugin_wireless="no"
5956 plugin_write_prometheus="no"
5960 plugin_zookeeper="no"
5963 if test "x$ac_system" = "xLinux"; then
5964 plugin_battery="yes"
5965 plugin_cgroups="yes"
5966 plugin_conntrack="yes"
5967 plugin_contextswitch="yes"
5969 plugin_cpufreq="yes"
5972 plugin_entropy="yes"
5973 plugin_fhcount="yes"
5974 plugin_fscache="yes"
5975 plugin_hugepages="yes"
5976 plugin_interface="yes"
5985 plugin_processes="yes"
5986 plugin_protocols="yes"
5989 plugin_tcpconns="yes"
5990 plugin_thermal="yes"
5993 plugin_vserver="yes"
5994 plugin_wireless="yes"
5995 plugin_zfs_arc="yes"
5997 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
6001 if test "x$c_cv_have_usable_asm_msrindex_h" = "xyes" && test "x$have_cpuid_h" = "xyes"; then
6002 plugin_turbostat="yes"
6005 if test "x$c_cv_have_clock_boottime_monotonic" = "xyes"; then
6006 plugin_cpusleep="yes"
6010 if test "x$ac_system" = "xOpenBSD"; then
6011 plugin_tcpconns="yes"
6014 if test "x$ac_system" = "xNetBSD"; then
6016 plugin_entropy="yes"
6018 plugin_processes="yes"
6022 if test "x$with_libiokit" = "xyes"; then
6023 plugin_battery="yes"
6029 if test "x$ac_system" = "xAIX"; then
6031 plugin_tcpconns="yes"
6036 if test "x$ac_system" = "xFreeBSD"; then
6038 plugin_zfs_arc="yes"
6042 if test "x$with_perfstat" = "xyes"; then
6043 plugin_contextswitch="yes"
6046 plugin_interface="yes"
6053 if test "x$with_procinfo" = "xyes"; then
6054 plugin_processes="yes"
6058 if test "x$with_kstat" = "xyes"; then
6060 plugin_processes="yes"
6062 plugin_zfs_arc="yes"
6066 if test "x$with_devinfo" = "xyes" && test "x$with_kstat" = "xyes"; then
6069 plugin_interface="yes"
6074 if test "x$with_libi2c" = "xyes"; then
6075 plugin_barometer="yes"
6080 if test "x$with_libstatgrab" = "xyes"; then
6083 plugin_interface="yes"
6090 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"; then
6092 if test "x$have_strptime" = "xyes"; then
6097 if test "x$with_libopenipmipthread" = "xyes"; then
6101 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"; then
6102 plugin_curl_json="yes"
6105 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"; then
6106 plugin_curl_xml="yes"
6109 if test "x$with_libyajl" = "xyes"; then
6113 if test "x$have_processor_info" = "xyes"; then
6117 if test "x$have_sysctl" = "xyes"; then
6121 if test "x$ac_system" = "xDarwin"; then
6126 if test "x$have_sysctlbyname" = "xyes"; then
6127 plugin_contextswitch="yes"
6130 plugin_tcpconns="yes"
6133 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"; then
6137 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"; then
6141 if test "x$c_cv_have_one_getmntent" = "xyes"; then
6145 if test "x$c_cv_have_getmntent_r" = "xyes"; then
6149 if test "x$plugin_df" = "xyes"; then
6151 if test "x$have_statfs" = "xyes"; then
6155 if test "x$have_statvfs" = "xyes"; then
6160 if test "x$have_linux_sockios_h" = "xyes" && test "x$have_linux_ethtool_h" = "xyes"; then
6161 plugin_ethstat="yes"
6164 if test "x$with_libgps" = "xyes"; then
6168 if test "x$with_libgrpcpp" = "xyes" && test "x$with_libprotobuf" = "xyes" && test "x$have_protoc3" = "xyes" && test "x$GRPC_CPP_PLUGIN" != "x"; then
6172 if test "x$have_getifaddrs" = "xyes"; then
6173 plugin_interface="yes"
6176 if test "x$have_getloadavg" = "xyes"; then
6180 if test "x$with_libyajl" = "xyes"; then
6181 plugin_log_logstash="yes"
6184 if test "x$with_libyajl" = "xyes" && test "x$with_libyajl2" = "xyes"; then
6185 plugin_ovs_events="yes"
6186 plugin_ovs_stats="yes"
6189 if test "x$with_libperl" = "xyes" && test "x$c_cv_have_perl_ithreads" = "xyes"; then
6193 if test "x$have_protoc_c" = "xyes" && test "x$with_libprotobuf_c" = "xyes"; then
6195 if test "x$with_libmicrohttpd" = "xyes"; then
6196 plugin_write_prometheus="yes"
6200 # Mac OS X memory interface
6201 if test "x$have_host_statistics" = "xyes"; then
6205 if test "x$have_termios_h" = "xyes"; then
6206 if test "x$ac_system" != "xAIX"; then
6207 plugin_multimeter="yes"
6212 if test "x$have_thread_info" = "xyes"; then
6213 plugin_processes="yes"
6216 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"; then
6217 plugin_processes="yes"
6220 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"; then
6221 plugin_processes="yes"
6224 if test "x$with_libpython" != "xno"; then
6228 if test "x$with_libatasmart" = "xyes" && test "x$with_libudev" = "xyes"; then
6232 if test "x$with_kvm_getswapinfo" = "xyes"; then
6236 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"; then
6240 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_three_args" = "xyes"; then
6244 if test "x$with_kvm_openfiles = "xyes" && $with_kvm_nlist" = "xyes"; then
6245 plugin_tcpconns="yes"
6248 if test "x$have_getutent" = "xyes"; then
6252 if test "x$have_getutxent" = "xyes"; then
6256 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"; then
6260 if test "x$with_libxenctrl" = "xyes"; then
6264 if test "x$with_libdpdk" = "xyes"
6266 plugin_dpdkevents="$dpdk_keepalive"
6267 plugin_dpdkstat="yes"
6270 m4_divert_once([HELP_ENABLE], [
6273 AC_ARG_ENABLE([all-plugins],
6274 [AS_HELP_STRING([--enable-all-plugins], [enable all plugins @<:@default=yes@:>@])],
6276 if test "x$enableval" = "xyes"; then
6277 enable_all_plugins="yes"
6278 else if test "x$enableval" = "xauto"; then
6279 enable_all_plugins="auto"
6281 enable_all_plugins="no"
6284 [enable_all_plugins="auto"]
6287 m4_divert_once([HELP_ENABLE], [])
6289 AC_PLUGIN([aggregation], [yes], [Aggregation plugin])
6290 AC_PLUGIN([amqp], [$with_librabbitmq], [AMQP output plugin])
6291 AC_PLUGIN([apache], [$with_libcurl], [Apache httpd statistics])
6292 AC_PLUGIN([apcups], [yes], [Statistics of UPSes by APC])
6293 AC_PLUGIN([apple_sensors], [$with_libiokit], [Apple hardware sensors])
6294 AC_PLUGIN([aquaero], [$with_libaquaero5], [Aquaero hardware sensors])
6295 AC_PLUGIN([ascent], [$plugin_ascent], [AscentEmu player statistics])
6296 AC_PLUGIN([barometer], [$plugin_barometer], [Barometer sensor on I2C])
6297 AC_PLUGIN([battery], [$plugin_battery], [Battery statistics])
6298 AC_PLUGIN([bind], [$plugin_bind], [ISC Bind nameserver statistics])
6299 AC_PLUGIN([ceph], [$plugin_ceph], [Ceph daemon statistics])
6300 AC_PLUGIN([cgroups], [$plugin_cgroups], [CGroups CPU usage accounting])
6301 AC_PLUGIN([chrony], [yes], [Chrony statistics])
6302 AC_PLUGIN([conntrack], [$plugin_conntrack], [nf_conntrack statistics])
6303 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
6304 AC_PLUGIN([cpu], [$plugin_cpu], [CPU usage statistics])
6305 AC_PLUGIN([cpufreq], [$plugin_cpufreq], [CPU frequency statistics])
6306 AC_PLUGIN([cpusleep], [$plugin_cpusleep], [CPU sleep statistics])
6307 AC_PLUGIN([csv], [yes], [CSV output plugin])
6308 AC_PLUGIN([curl], [$with_libcurl], [CURL generic web statistics])
6309 AC_PLUGIN([curl_json], [$plugin_curl_json], [CouchDB statistics])
6310 AC_PLUGIN([curl_xml], [$plugin_curl_xml], [CURL generic xml statistics])
6311 AC_PLUGIN([dbi], [$with_libdbi], [General database statistics])
6312 AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics])
6313 AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics])
6314 AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis])
6315 AC_PLUGIN([dpdkevents], [$plugin_dpdkevents], [Events from DPDK])
6316 AC_PLUGIN([dpdkstat], [$plugin_dpdkstat], [Stats from DPDK])
6317 AC_PLUGIN([drbd], [$plugin_drbd], [DRBD statistics])
6318 AC_PLUGIN([email], [yes], [EMail statistics])
6319 AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics])
6320 AC_PLUGIN([ethstat], [$plugin_ethstat], [Stats from NIC driver])
6321 AC_PLUGIN([exec], [yes], [Execution of external programs])
6322 AC_PLUGIN([fhcount], [$plugin_fhcount], [File handles statistics])
6323 AC_PLUGIN([filecount], [yes], [Count files in directories])
6324 AC_PLUGIN([fscache], [$plugin_fscache], [fscache statistics])
6325 AC_PLUGIN([gmond], [$with_libganglia], [Ganglia plugin])
6326 AC_PLUGIN([gps], [$plugin_gps], [GPS plugin])
6327 AC_PLUGIN([grpc], [$plugin_grpc], [gRPC plugin])
6328 AC_PLUGIN([hddtemp], [yes], [Query hddtempd])
6329 AC_PLUGIN([hugepages], [$plugin_hugepages], [Hugepages statistics])
6330 AC_PLUGIN([intel_rdt], [$with_libpqos], [Intel RDT monitor plugin])
6331 AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics])
6332 AC_PLUGIN([ipc], [$plugin_ipc], [IPC statistics])
6333 AC_PLUGIN([ipmi], [$plugin_ipmi], [IPMI sensor statistics])
6334 AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
6335 AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
6336 AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
6337 AC_PLUGIN([java], [$with_java], [Embed the Java Virtual Machine])
6338 AC_PLUGIN([load], [$plugin_load], [System load])
6339 AC_PLUGIN([log_logstash], [$plugin_log_logstash], [Logstash json_event compatible logging])
6340 AC_PLUGIN([logfile], [yes], [File logging plugin])
6341 AC_PLUGIN([lpar], [$with_perfstat], [AIX logical partitions statistics])
6342 AC_PLUGIN([lua], [$with_liblua], [Lua plugin])
6343 AC_PLUGIN([lvm], [$with_liblvm2app], [LVM statistics])
6344 AC_PLUGIN([madwifi], [$have_linux_wireless_h], [Madwifi wireless statistics])
6345 AC_PLUGIN([match_empty_counter], [yes], [The empty counter match])
6346 AC_PLUGIN([match_hashed], [yes], [The hashed match])
6347 AC_PLUGIN([match_regex], [yes], [The regex match])
6348 AC_PLUGIN([match_timediff], [yes], [The timediff match])
6349 AC_PLUGIN([match_value], [yes], [The value match])
6350 AC_PLUGIN([mbmon], [yes], [Query mbmond])
6351 AC_PLUGIN([mcelog], [$plugin_mcelog], [Machine Check Exceptions notifications])
6352 AC_PLUGIN([md], [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
6353 AC_PLUGIN([memcachec], [$with_libmemcached], [memcachec statistics])
6354 AC_PLUGIN([memcached], [yes], [memcached statistics])
6355 AC_PLUGIN([memory], [$plugin_memory], [Memory usage])
6356 AC_PLUGIN([mic], [$with_mic], [Intel Many Integrated Core stats])
6357 AC_PLUGIN([modbus], [$with_libmodbus], [Modbus plugin])
6358 AC_PLUGIN([mqtt], [$with_libmosquitto], [MQTT output plugin])
6359 AC_PLUGIN([multimeter], [$plugin_multimeter], [Read multimeter values])
6360 AC_PLUGIN([mysql], [$with_libmysql], [MySQL statistics])
6361 AC_PLUGIN([netapp], [$with_libnetapp], [NetApp plugin])
6362 AC_PLUGIN([netlink], [$with_libmnl], [Enhanced Linux network statistics])
6363 AC_PLUGIN([network], [yes], [Network communication plugin])
6364 AC_PLUGIN([nfs], [$plugin_nfs], [NFS statistics])
6365 AC_PLUGIN([nginx], [$with_libcurl], [nginx statistics])
6366 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
6367 AC_PLUGIN([notify_email], [$with_libesmtp], [Email notifier])
6368 AC_PLUGIN([notify_nagios], [yes], [Nagios notification plugin])
6369 AC_PLUGIN([ntpd], [yes], [NTPd statistics])
6370 AC_PLUGIN([numa], [$plugin_numa], [NUMA virtual memory statistics])
6371 AC_PLUGIN([nut], [$with_libupsclient], [Network UPS tools statistics])
6372 AC_PLUGIN([olsrd], [yes], [olsrd statistics])
6373 AC_PLUGIN([onewire], [$with_libowcapi], [OneWire sensor statistics])
6374 AC_PLUGIN([openldap], [$with_libldap], [OpenLDAP statistics])
6375 AC_PLUGIN([openvpn], [yes], [OpenVPN client statistics])
6376 AC_PLUGIN([oracle], [$with_oracle], [Oracle plugin])
6377 AC_PLUGIN([ovs_events], [$plugin_ovs_events], [OVS events plugin])
6378 AC_PLUGIN([ovs_stats], [$plugin_ovs_stats], [OVS statistics plugin])
6379 AC_PLUGIN([perl], [$plugin_perl], [Embed a Perl interpreter])
6380 AC_PLUGIN([pf], [$have_net_pfvar_h], [BSD packet filter (PF) statistics])
6381 # FIXME: Check for libevent, too.
6382 AC_PLUGIN([pinba], [$plugin_pinba], [Pinba statistics])
6383 AC_PLUGIN([ping], [$with_liboping], [Network latency statistics])
6384 AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics])
6385 AC_PLUGIN([powerdns], [yes], [PowerDNS statistics])
6386 AC_PLUGIN([processes], [$plugin_processes], [Process statistics])
6387 AC_PLUGIN([protocols], [$plugin_protocols], [Protocol (IP, TCP, ...) statistics])
6388 AC_PLUGIN([python], [$plugin_python], [Embed a Python interpreter])
6389 AC_PLUGIN([redis], [$with_libhiredis], [Redis plugin])
6390 AC_PLUGIN([routeros], [$with_librouteros], [RouterOS plugin])
6391 AC_PLUGIN([rrdcached], [$librrd_rrdc_update], [RRDTool output plugin])
6392 AC_PLUGIN([rrdtool], [$with_librrd], [RRDTool output plugin])
6393 AC_PLUGIN([sensors], [$with_libsensors], [lm_sensors statistics])
6394 AC_PLUGIN([serial], [$plugin_serial], [serial port traffic])
6395 AC_PLUGIN([sigrok], [$with_libsigrok], [sigrok acquisition sources])
6396 AC_PLUGIN([smart], [$plugin_smart], [SMART statistics])
6397 AC_PLUGIN([snmp], [$with_libnetsnmp], [SNMP querying plugin])
6398 AC_PLUGIN([statsd], [yes], [StatsD plugin])
6399 AC_PLUGIN([swap], [$plugin_swap], [Swap usage statistics])
6400 AC_PLUGIN([syslog], [$have_syslog], [Syslog logging plugin])
6401 AC_PLUGIN([table], [yes], [Parsing of tabular data])
6402 AC_PLUGIN([tail], [yes], [Parsing of logfiles])
6403 AC_PLUGIN([tail_csv], [yes], [Parsing of CSV files])
6404 AC_PLUGIN([tape], [$plugin_tape], [Tape drive statistics])
6405 AC_PLUGIN([target_notification], [yes], [The notification target])
6406 AC_PLUGIN([target_replace], [yes], [The replace target])
6407 AC_PLUGIN([target_scale], [yes], [The scale target])
6408 AC_PLUGIN([target_set], [yes], [The set target])
6409 AC_PLUGIN([target_v5upgrade], [yes], [The v5upgrade target])
6410 AC_PLUGIN([tcpconns], [$plugin_tcpconns], [TCP connection statistics])
6411 AC_PLUGIN([teamspeak2], [yes], [TeamSpeak2 server statistics])
6412 AC_PLUGIN([ted], [$plugin_ted], [Read The Energy Detective values])
6413 AC_PLUGIN([thermal], [$plugin_thermal], [Linux ACPI thermal zone statistics])
6414 AC_PLUGIN([threshold], [yes], [Threshold checking plugin])
6415 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant], [TokyoTyrant database statistics])
6416 AC_PLUGIN([turbostat], [$plugin_turbostat], [Advanced statistic on Intel cpu states])
6417 AC_PLUGIN([unixsock], [yes], [Unixsock communication plugin])
6418 AC_PLUGIN([uptime], [$plugin_uptime], [Uptime statistics])
6419 AC_PLUGIN([users], [$plugin_users], [User statistics])
6420 AC_PLUGIN([uuid], [yes], [UUID as hostname plugin])
6421 AC_PLUGIN([varnish], [$with_libvarnish], [Varnish cache statistics])
6422 AC_PLUGIN([virt], [$plugin_virt], [Virtual machine statistics])
6423 AC_PLUGIN([vmem], [$plugin_vmem], [Virtual memory statistics])
6424 AC_PLUGIN([vserver], [$plugin_vserver], [Linux VServer statistics])
6425 AC_PLUGIN([wireless], [$plugin_wireless], [Wireless statistics])
6426 AC_PLUGIN([write_graphite], [yes], [Graphite / Carbon output plugin])
6427 AC_PLUGIN([write_http], [$with_libcurl], [HTTP output plugin])
6428 AC_PLUGIN([write_kafka], [$with_librdkafka], [Kafka output plugin])
6429 AC_PLUGIN([write_log], [yes], [Log output plugin])
6430 AC_PLUGIN([write_mongodb], [$with_libmongoc], [MongoDB output plugin])
6431 AC_PLUGIN([write_prometheus], [$plugin_write_prometheus], [Prometheus write plugin])
6432 AC_PLUGIN([write_redis], [$with_libhiredis], [Redis output plugin])
6433 AC_PLUGIN([write_riemann], [$with_libriemann_client], [Riemann output plugin])
6434 AC_PLUGIN([write_sensu], [yes], [Sensu output plugin])
6435 AC_PLUGIN([write_tsdb], [yes], [TSDB output plugin])
6436 AC_PLUGIN([xencpu], [$plugin_xencpu], [Xen Host CPU usage])
6437 AC_PLUGIN([xmms], [$with_libxmms], [XMMS statistics])
6438 AC_PLUGIN([zfs_arc], [$plugin_zfs_arc], [ZFS ARC statistics])
6439 AC_PLUGIN([zone], [$plugin_zone], [Solaris container statistics])
6440 AC_PLUGIN([zookeeper], [yes], [Zookeeper statistics])
6442 dnl Default configuration file
6443 # Load either syslog or logfile
6444 LOAD_PLUGIN_SYSLOG=""
6445 LOAD_PLUGIN_LOGFILE=""
6446 LOAD_PLUGIN_LOG_LOGSTASH=""
6448 AC_MSG_CHECKING([which default log plugin to load])
6449 default_log_plugin="none"
6450 if test "x$enable_syslog" = "xyes"; then
6451 default_log_plugin="syslog"
6453 LOAD_PLUGIN_SYSLOG="##"
6456 if test "x$enable_logfile" = "xyes"; then
6457 if test "x$default_log_plugin" = "xnone"; then
6458 default_log_plugin="logfile"
6460 LOAD_PLUGIN_LOGFILE="#"
6463 LOAD_PLUGIN_LOGFILE="##"
6466 if test "x$enable_log_logstash" = "xyes"; then
6467 LOAD_PLUGIN_LOG_LOGSTASH="#"
6469 LOAD_PLUGIN_LOG_LOGSTASH="##"
6472 AC_MSG_RESULT([$default_log_plugin])
6474 AC_SUBST([LOAD_PLUGIN_SYSLOG])
6475 AC_SUBST([LOAD_PLUGIN_LOGFILE])
6476 AC_SUBST([LOAD_PLUGIN_LOG_LOGSTASH])
6478 if test "x$enable_debug" = "xyes"
6480 DEFAULT_LOG_LEVEL="debug"
6482 DEFAULT_LOG_LEVEL="info"
6484 AC_SUBST([DEFAULT_LOG_LEVEL])
6486 # Load only one of rrdtool, network, csv in the default config.
6487 LOAD_PLUGIN_RRDTOOL=""
6488 LOAD_PLUGIN_NETWORK=""
6491 AC_MSG_CHECKING([which default write plugin to load])
6492 default_write_plugin="none"
6493 if test "x$enable_rrdtool" = "xyes"; then
6494 default_write_plugin="rrdtool"
6496 LOAD_PLUGIN_RRDTOOL="##"
6499 if test "x$enable_network" = "xyes"; then
6500 if test "x$default_write_plugin" = "xnone"; then
6501 default_write_plugin="network"
6503 LOAD_PLUGIN_NETWORK="#"
6506 LOAD_PLUGIN_NETWORK="##"
6509 if test "x$enable_csv" = "xyes"; then
6510 if test "x$default_write_plugin" = "xnone"; then
6511 default_write_plugin="csv"
6516 LOAD_PLUGIN_CSV="##"
6518 AC_MSG_RESULT([$default_write_plugin])
6520 AC_SUBST([LOAD_PLUGIN_RRDTOOL])
6521 AC_SUBST([LOAD_PLUGIN_NETWORK])
6522 AC_SUBST([LOAD_PLUGIN_CSV])
6525 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
6526 enable_ipvs="$enable_ipvs (ip_vs.h not found)"
6529 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"; then
6530 enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
6534 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
6535 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
6537 if test "x$withval" != "xno" && test "x$withval" != "xyes"
6539 PERL_BINDINGS_OPTIONS="$withval"
6540 with_perl_bindings="yes"
6542 with_perl_bindings="$withval"
6546 if test "x$PERL" != "x"
6548 with_perl_bindings="yes"
6550 with_perl_bindings="no (no perl interpreter found)"
6554 if test "x$with_perl_bindings" = "xyes"
6556 AC_MSG_CHECKING([for the ExtUtils::MakeMaker module])
6557 if $PERL -MExtUtils::MakeMaker -e '' 2>/dev/null; then
6558 AC_MSG_RESULT([yes])
6561 with_perl_bindings="no (ExtUtils::MakeMaker not found)"
6565 if test "x$with_perl_bindings" = "xyes"
6567 PERL_BINDINGS="perl"
6572 AC_SUBST([PERL_BINDINGS])
6573 AC_SUBST([PERL_BINDINGS_OPTIONS])
6575 dnl libcollectdclient
6576 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
6577 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
6578 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
6580 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
6582 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
6584 AC_SUBST([LCC_VERSION_MAJOR])
6585 AC_SUBST([LCC_VERSION_MINOR])
6586 AC_SUBST([LCC_VERSION_PATCH])
6587 AC_SUBST([LCC_VERSION_EXTRA])
6588 AC_SUBST([LCC_VERSION_STRING])
6590 AC_CONFIG_FILES([src/libcollectdclient/collectd/lcc_features.h])
6594 if test "x$enable_werror" != "xno"; then
6595 AM_CFLAGS="$AM_CFLAGS -Werror"
6596 AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
6599 AC_SUBST([AM_CFLAGS])
6600 AC_SUBST([AM_CXXFLAGS])
6605 src/libcollectdclient/libcollectdclient.pc \
6610 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" != "xyes"; then
6611 with_librrd="yes (warning: librrd is not thread-safe)"
6614 if test "x$with_libperl" = "xyes"; then
6615 with_libperl="yes (version `$PERL -MConfig -e 'print $Config{version};'`)"
6617 enable_perl="no (needs libperl)"
6620 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"; then
6621 enable_perl="no (libperl doesn't support ithreads)"
6624 if test "x$with_perl_bindings" = "xyes" && test "x$PERL_BINDINGS_OPTIONS" != "x"; then
6625 with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
6629 AC_MSG_RESULT([Configuration:])
6630 AC_MSG_RESULT([ Build:])
6631 AC_MSG_RESULT([ Platform . . . . . . $ac_system])
6632 AC_MSG_RESULT([ CC . . . . . . . . . $CC])
6633 AC_MSG_RESULT([ CFLAGS . . . . . . . $AM_CFLAGS $CFLAGS])
6634 AC_MSG_RESULT([ CXXFLAGS . . . . . . $AM_CXXFLAGS $CXXFLAGS])
6635 AC_MSG_RESULT([ CPP . . . . . . . . . $CPP])
6636 AC_MSG_RESULT([ CPPFLAGS . . . . . . $CPPFLAGS])
6637 AC_MSG_RESULT([ GRPC_CPP_PLUGIN . . . $GRPC_CPP_PLUGIN])
6638 AC_MSG_RESULT([ LD . . . . . . . . . $LD])
6639 AC_MSG_RESULT([ LDFLAGS . . . . . . . $LDFLAGS])
6640 AC_MSG_RESULT([ PROTOC . . . . . . . $PROTOC])
6641 AC_MSG_RESULT([ YACC . . . . . . . . $YACC])
6642 AC_MSG_RESULT([ YFLAGS . . . . . . . $YFLAGS])
6644 AC_MSG_RESULT([ Libraries:])
6645 AC_MSG_RESULT([ intel mic . . . . . . $with_mic])
6646 AC_MSG_RESULT([ libaquaero5 . . . . . $with_libaquaero5])
6647 AC_MSG_RESULT([ libatasmart . . . . . $with_libatasmart])
6648 AC_MSG_RESULT([ libcurl . . . . . . . $with_libcurl])
6649 AC_MSG_RESULT([ libdbi . . . . . . . $with_libdbi])
6650 AC_MSG_RESULT([ libdpdk . . . . . . . $with_libdpdk])
6651 AC_MSG_RESULT([ libesmtp . . . . . . $with_libesmtp])
6652 AC_MSG_RESULT([ libganglia . . . . . $with_libganglia])
6653 AC_MSG_RESULT([ libgcrypt . . . . . . $with_libgcrypt])
6654 AC_MSG_RESULT([ libgps . . . . . . . $with_libgps])
6655 AC_MSG_RESULT([ libgrpc++ . . . . . . $with_libgrpcpp])
6656 AC_MSG_RESULT([ libhiredis . . . . . $with_libhiredis])
6657 AC_MSG_RESULT([ libi2c-dev . . . . . $with_libi2c])
6658 AC_MSG_RESULT([ libiokit . . . . . . $with_libiokit])
6659 AC_MSG_RESULT([ libiptc . . . . . . . $with_libiptc])
6660 AC_MSG_RESULT([ libjvm . . . . . . . $with_java])
6661 AC_MSG_RESULT([ libkstat . . . . . . $with_kstat])
6662 AC_MSG_RESULT([ libkvm . . . . . . . $with_libkvm])
6663 AC_MSG_RESULT([ libldap . . . . . . . $with_libldap])
6664 AC_MSG_RESULT([ liblua . . . . . . . $with_liblua])
6665 AC_MSG_RESULT([ liblvm2app . . . . . $with_liblvm2app])
6666 AC_MSG_RESULT([ libmemcached . . . . $with_libmemcached])
6667 AC_MSG_RESULT([ libmicrohttpd . . . . $with_libmicrohttpd])
6668 AC_MSG_RESULT([ libmnl . . . . . . . $with_libmnl])
6669 AC_MSG_RESULT([ libmodbus . . . . . . $with_libmodbus])
6670 AC_MSG_RESULT([ libmongoc . . . . . . $with_libmongoc])
6671 AC_MSG_RESULT([ libmosquitto . . . . $with_libmosquitto])
6672 AC_MSG_RESULT([ libmysql . . . . . . $with_libmysql])
6673 AC_MSG_RESULT([ libnetapp . . . . . . $with_libnetapp])
6674 AC_MSG_RESULT([ libnetsnmp . . . . . $with_libnetsnmp])
6675 AC_MSG_RESULT([ libnotify . . . . . . $with_libnotify])
6676 AC_MSG_RESULT([ libopenipmi . . . . . $with_libopenipmipthread])
6677 AC_MSG_RESULT([ liboping . . . . . . $with_liboping])
6678 AC_MSG_RESULT([ libowcapi . . . . . . $with_libowcapi])
6679 AC_MSG_RESULT([ libpcap . . . . . . . $with_libpcap])
6680 AC_MSG_RESULT([ libperfstat . . . . . $with_perfstat])
6681 AC_MSG_RESULT([ libperl . . . . . . . $with_libperl])
6682 AC_MSG_RESULT([ libpq . . . . . . . . $with_libpq])
6683 AC_MSG_RESULT([ libpqos . . . . . . . $with_libpqos])
6684 AC_MSG_RESULT([ libprotobuf . . . . . $with_libprotobuf])
6685 AC_MSG_RESULT([ libprotobuf-c . . . . $with_libprotobuf_c])
6686 AC_MSG_RESULT([ libpython . . . . . . $with_libpython])
6687 AC_MSG_RESULT([ librabbitmq . . . . . $with_librabbitmq])
6688 AC_MSG_RESULT([ libriemann-client . . $with_libriemann_client])
6689 AC_MSG_RESULT([ librdkafka . . . . . $with_librdkafka])
6690 AC_MSG_RESULT([ librouteros . . . . . $with_librouteros])
6691 AC_MSG_RESULT([ librrd . . . . . . . $with_librrd])
6692 AC_MSG_RESULT([ libsensors . . . . . $with_libsensors])
6693 AC_MSG_RESULT([ libsigrok . . . . . $with_libsigrok])
6694 AC_MSG_RESULT([ libstatgrab . . . . . $with_libstatgrab])
6695 AC_MSG_RESULT([ libtokyotyrant . . . $with_libtokyotyrant])
6696 AC_MSG_RESULT([ libudev . . . . . . . $with_libudev])
6697 AC_MSG_RESULT([ libupsclient . . . . $with_libupsclient])
6698 AC_MSG_RESULT([ libvarnish . . . . . $with_libvarnish])
6699 AC_MSG_RESULT([ libvirt . . . . . . . $with_libvirt])
6700 AC_MSG_RESULT([ libxenctrl . . . . . $with_libxenctrl])
6701 AC_MSG_RESULT([ libxml2 . . . . . . . $with_libxml2])
6702 AC_MSG_RESULT([ libxmms . . . . . . . $with_libxmms])
6703 AC_MSG_RESULT([ libyajl . . . . . . . $with_libyajl])
6704 AC_MSG_RESULT([ oracle . . . . . . . $with_oracle])
6705 AC_MSG_RESULT([ protobuf-c . . . . . $have_protoc_c])
6706 AC_MSG_RESULT([ protoc 3 . . . . . . $have_protoc3])
6708 AC_MSG_RESULT([ Features:])
6709 AC_MSG_RESULT([ daemon mode . . . . . $enable_daemon])
6710 AC_MSG_RESULT([ debug . . . . . . . . $enable_debug])
6712 AC_MSG_RESULT([ Bindings:])
6713 AC_MSG_RESULT([ perl . . . . . . . . $with_perl_bindings])
6715 AC_MSG_RESULT([ Modules:])
6716 AC_MSG_RESULT([ aggregation . . . . . $enable_aggregation])
6717 AC_MSG_RESULT([ amqp . . . . . . . $enable_amqp])
6718 AC_MSG_RESULT([ apache . . . . . . . $enable_apache])
6719 AC_MSG_RESULT([ apcups . . . . . . . $enable_apcups])
6720 AC_MSG_RESULT([ apple_sensors . . . . $enable_apple_sensors])
6721 AC_MSG_RESULT([ aquaero . . . . . . . $enable_aquaero])
6722 AC_MSG_RESULT([ ascent . . . . . . . $enable_ascent])
6723 AC_MSG_RESULT([ barometer . . . . . . $enable_barometer])
6724 AC_MSG_RESULT([ battery . . . . . . . $enable_battery])
6725 AC_MSG_RESULT([ bind . . . . . . . . $enable_bind])
6726 AC_MSG_RESULT([ ceph . . . . . . . . $enable_ceph])
6727 AC_MSG_RESULT([ cgroups . . . . . . . $enable_cgroups])
6728 AC_MSG_RESULT([ chrony. . . . . . . . $enable_chrony])
6729 AC_MSG_RESULT([ conntrack . . . . . . $enable_conntrack])
6730 AC_MSG_RESULT([ contextswitch . . . . $enable_contextswitch])
6731 AC_MSG_RESULT([ cpu . . . . . . . . . $enable_cpu])
6732 AC_MSG_RESULT([ cpufreq . . . . . . . $enable_cpufreq])
6733 AC_MSG_RESULT([ cpusleep . . . . . . $enable_cpusleep])
6734 AC_MSG_RESULT([ csv . . . . . . . . . $enable_csv])
6735 AC_MSG_RESULT([ curl . . . . . . . . $enable_curl])
6736 AC_MSG_RESULT([ curl_json . . . . . . $enable_curl_json])
6737 AC_MSG_RESULT([ curl_xml . . . . . . $enable_curl_xml])
6738 AC_MSG_RESULT([ dbi . . . . . . . . . $enable_dbi])
6739 AC_MSG_RESULT([ df . . . . . . . . . $enable_df])
6740 AC_MSG_RESULT([ disk . . . . . . . . $enable_disk])
6741 AC_MSG_RESULT([ dns . . . . . . . . . $enable_dns])
6742 AC_MSG_RESULT([ dpdkevents. . . . . . $enable_dpdkevents])
6743 AC_MSG_RESULT([ dpdkstat . . . . . . $enable_dpdkstat])
6744 AC_MSG_RESULT([ drbd . . . . . . . . $enable_drbd])
6745 AC_MSG_RESULT([ email . . . . . . . . $enable_email])
6746 AC_MSG_RESULT([ entropy . . . . . . . $enable_entropy])
6747 AC_MSG_RESULT([ ethstat . . . . . . . $enable_ethstat])
6748 AC_MSG_RESULT([ exec . . . . . . . . $enable_exec])
6749 AC_MSG_RESULT([ fhcount . . . . . . . $enable_fhcount])
6750 AC_MSG_RESULT([ filecount . . . . . . $enable_filecount])
6751 AC_MSG_RESULT([ fscache . . . . . . . $enable_fscache])
6752 AC_MSG_RESULT([ gmond . . . . . . . . $enable_gmond])
6753 AC_MSG_RESULT([ gps . . . . . . . . . $enable_gps])
6754 AC_MSG_RESULT([ grpc . . . . . . . . $enable_grpc])
6755 AC_MSG_RESULT([ hddtemp . . . . . . . $enable_hddtemp])
6756 AC_MSG_RESULT([ hugepages . . . . . . $enable_hugepages])
6757 AC_MSG_RESULT([ intel_rdt . . . . . . $enable_intel_rdt])
6758 AC_MSG_RESULT([ interface . . . . . . $enable_interface])
6759 AC_MSG_RESULT([ ipc . . . . . . . . . $enable_ipc])
6760 AC_MSG_RESULT([ ipmi . . . . . . . . $enable_ipmi])
6761 AC_MSG_RESULT([ iptables . . . . . . $enable_iptables])
6762 AC_MSG_RESULT([ ipvs . . . . . . . . $enable_ipvs])
6763 AC_MSG_RESULT([ irq . . . . . . . . . $enable_irq])
6764 AC_MSG_RESULT([ java . . . . . . . . $enable_java])
6765 AC_MSG_RESULT([ load . . . . . . . . $enable_load])
6766 AC_MSG_RESULT([ logfile . . . . . . . $enable_logfile])
6767 AC_MSG_RESULT([ log_logstash . . . . $enable_log_logstash])
6768 AC_MSG_RESULT([ lpar . . . . . . . . $enable_lpar])
6769 AC_MSG_RESULT([ lua . . . . . . . . . $enable_lua])
6770 AC_MSG_RESULT([ lvm . . . . . . . . . $enable_lvm])
6771 AC_MSG_RESULT([ madwifi . . . . . . . $enable_madwifi])
6772 AC_MSG_RESULT([ match_empty_counter . $enable_match_empty_counter])
6773 AC_MSG_RESULT([ match_hashed . . . . $enable_match_hashed])
6774 AC_MSG_RESULT([ match_regex . . . . . $enable_match_regex])
6775 AC_MSG_RESULT([ match_timediff . . . $enable_match_timediff])
6776 AC_MSG_RESULT([ match_value . . . . . $enable_match_value])
6777 AC_MSG_RESULT([ mbmon . . . . . . . . $enable_mbmon])
6778 AC_MSG_RESULT([ mcelog . . . . . . . $enable_mcelog])
6779 AC_MSG_RESULT([ md . . . . . . . . . $enable_md])
6780 AC_MSG_RESULT([ memcachec . . . . . . $enable_memcachec])
6781 AC_MSG_RESULT([ memcached . . . . . . $enable_memcached])
6782 AC_MSG_RESULT([ memory . . . . . . . $enable_memory])
6783 AC_MSG_RESULT([ mic . . . . . . . . . $enable_mic])
6784 AC_MSG_RESULT([ modbus . . . . . . . $enable_modbus])
6785 AC_MSG_RESULT([ mqtt . . . . . . . . $enable_mqtt])
6786 AC_MSG_RESULT([ multimeter . . . . . $enable_multimeter])
6787 AC_MSG_RESULT([ mysql . . . . . . . . $enable_mysql])
6788 AC_MSG_RESULT([ netapp . . . . . . . $enable_netapp])
6789 AC_MSG_RESULT([ netlink . . . . . . . $enable_netlink])
6790 AC_MSG_RESULT([ network . . . . . . . $enable_network])
6791 AC_MSG_RESULT([ nfs . . . . . . . . . $enable_nfs])
6792 AC_MSG_RESULT([ nginx . . . . . . . . $enable_nginx])
6793 AC_MSG_RESULT([ notify_desktop . . . $enable_notify_desktop])
6794 AC_MSG_RESULT([ notify_email . . . . $enable_notify_email])
6795 AC_MSG_RESULT([ notify_nagios . . . . $enable_notify_nagios])
6796 AC_MSG_RESULT([ ntpd . . . . . . . . $enable_ntpd])
6797 AC_MSG_RESULT([ numa . . . . . . . . $enable_numa])
6798 AC_MSG_RESULT([ nut . . . . . . . . . $enable_nut])
6799 AC_MSG_RESULT([ olsrd . . . . . . . . $enable_olsrd])
6800 AC_MSG_RESULT([ onewire . . . . . . . $enable_onewire])
6801 AC_MSG_RESULT([ openldap . . . . . . $enable_openldap])
6802 AC_MSG_RESULT([ openvpn . . . . . . . $enable_openvpn])
6803 AC_MSG_RESULT([ oracle . . . . . . . $enable_oracle])
6804 AC_MSG_RESULT([ ovs_events . . . . . $enable_ovs_events])
6805 AC_MSG_RESULT([ ovs_stats . . . . . . $enable_ovs_stats])
6806 AC_MSG_RESULT([ perl . . . . . . . . $enable_perl])
6807 AC_MSG_RESULT([ pf . . . . . . . . . $enable_pf])
6808 AC_MSG_RESULT([ pinba . . . . . . . . $enable_pinba])
6809 AC_MSG_RESULT([ ping . . . . . . . . $enable_ping])
6810 AC_MSG_RESULT([ postgresql . . . . . $enable_postgresql])
6811 AC_MSG_RESULT([ powerdns . . . . . . $enable_powerdns])
6812 AC_MSG_RESULT([ processes . . . . . . $enable_processes])
6813 AC_MSG_RESULT([ protocols . . . . . . $enable_protocols])
6814 AC_MSG_RESULT([ python . . . . . . . $enable_python])
6815 AC_MSG_RESULT([ redis . . . . . . . . $enable_redis])
6816 AC_MSG_RESULT([ routeros . . . . . . $enable_routeros])
6817 AC_MSG_RESULT([ rrdcached . . . . . . $enable_rrdcached])
6818 AC_MSG_RESULT([ rrdtool . . . . . . . $enable_rrdtool])
6819 AC_MSG_RESULT([ sensors . . . . . . . $enable_sensors])
6820 AC_MSG_RESULT([ serial . . . . . . . $enable_serial])
6821 AC_MSG_RESULT([ sigrok . . . . . . . $enable_sigrok])
6822 AC_MSG_RESULT([ smart . . . . . . . . $enable_smart])
6823 AC_MSG_RESULT([ snmp . . . . . . . . $enable_snmp])
6824 AC_MSG_RESULT([ statsd . . . . . . . $enable_statsd])
6825 AC_MSG_RESULT([ swap . . . . . . . . $enable_swap])
6826 AC_MSG_RESULT([ syslog . . . . . . . $enable_syslog])
6827 AC_MSG_RESULT([ table . . . . . . . . $enable_table])
6828 AC_MSG_RESULT([ tail_csv . . . . . . $enable_tail_csv])
6829 AC_MSG_RESULT([ tail . . . . . . . . $enable_tail])
6830 AC_MSG_RESULT([ tape . . . . . . . . $enable_tape])
6831 AC_MSG_RESULT([ target_notification . $enable_target_notification])
6832 AC_MSG_RESULT([ target_replace . . . $enable_target_replace])
6833 AC_MSG_RESULT([ target_scale . . . . $enable_target_scale])
6834 AC_MSG_RESULT([ target_set . . . . . $enable_target_set])
6835 AC_MSG_RESULT([ target_v5upgrade . . $enable_target_v5upgrade])
6836 AC_MSG_RESULT([ tcpconns . . . . . . $enable_tcpconns])
6837 AC_MSG_RESULT([ teamspeak2 . . . . . $enable_teamspeak2])
6838 AC_MSG_RESULT([ ted . . . . . . . . . $enable_ted])
6839 AC_MSG_RESULT([ thermal . . . . . . . $enable_thermal])
6840 AC_MSG_RESULT([ threshold . . . . . . $enable_threshold])
6841 AC_MSG_RESULT([ tokyotyrant . . . . . $enable_tokyotyrant])
6842 AC_MSG_RESULT([ turbostat . . . . . . $enable_turbostat])
6843 AC_MSG_RESULT([ unixsock . . . . . . $enable_unixsock])
6844 AC_MSG_RESULT([ uptime . . . . . . . $enable_uptime])
6845 AC_MSG_RESULT([ users . . . . . . . . $enable_users])
6846 AC_MSG_RESULT([ uuid . . . . . . . . $enable_uuid])
6847 AC_MSG_RESULT([ varnish . . . . . . . $enable_varnish])
6848 AC_MSG_RESULT([ virt . . . . . . . . $enable_virt])
6849 AC_MSG_RESULT([ vmem . . . . . . . . $enable_vmem])
6850 AC_MSG_RESULT([ vserver . . . . . . . $enable_vserver])
6851 AC_MSG_RESULT([ wireless . . . . . . $enable_wireless])
6852 AC_MSG_RESULT([ write_graphite . . . $enable_write_graphite])
6853 AC_MSG_RESULT([ write_http . . . . . $enable_write_http])
6854 AC_MSG_RESULT([ write_kafka . . . . . $enable_write_kafka])
6855 AC_MSG_RESULT([ write_log . . . . . . $enable_write_log])
6856 AC_MSG_RESULT([ write_mongodb . . . . $enable_write_mongodb])
6857 AC_MSG_RESULT([ write_prometheus. . . $enable_write_prometheus])
6858 AC_MSG_RESULT([ write_redis . . . . . $enable_write_redis])
6859 AC_MSG_RESULT([ write_riemann . . . . $enable_write_riemann])
6860 AC_MSG_RESULT([ write_sensu . . . . . $enable_write_sensu])
6861 AC_MSG_RESULT([ write_tsdb . . . . . $enable_write_tsdb])
6862 AC_MSG_RESULT([ xencpu . . . . . . . $enable_xencpu])
6863 AC_MSG_RESULT([ xmms . . . . . . . . $enable_xmms])
6864 AC_MSG_RESULT([ zfs_arc . . . . . . . $enable_zfs_arc])
6865 AC_MSG_RESULT([ zone . . . . . . . . $enable_zone])
6866 AC_MSG_RESULT([ zookeeper . . . . . . $enable_zookeeper])
6869 if test "x$dependency_error" = "xyes"; then
6870 AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6873 if test "x$dependency_warning" = "xyes"; then
6874 AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6877 # vim: set fdm=marker sw=2 sts=2 ts=2 et :