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([libltdl/config])
8 dnl older automake's default of ARFLAGS=cru is noisy on newer binutils;
9 dnl we don't really need the 'u' even in older toolchains. Then there is
10 dnl older libtool, which spelled it AR_FLAGS
11 m4_divert_text([DEFAULTS], [: "${ARFLAGS=cr} ${AR_FLAGS=cr}"])
13 m4_ifdef([LT_PACKAGE_VERSION],
16 LT_CONFIG_LTDL_DIR([libltdl])
18 LTDL_INIT([convenience])
19 AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.])
24 AC_LIBLTDL_CONVENIENCE
28 AC_CONFIG_SUBDIRS(libltdl)
29 AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.])
33 AM_CONDITIONAL([BUILD_INCLUDED_LTDL], [test "x$LTDLDEPS" != "x"])
35 AM_INIT_AUTOMAKE([subdir-objects tar-pax dist-bzip2 no-dist-gzip foreign])
36 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
39 AC_PREFIX_DEFAULT("/opt/collectd")
44 # Checks for programs.
47 [AC_MSG_ERROR([No compiler found that supports C99])]
56 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
63 AC_PATH_PROG([VALGRIND], [valgrind])
65 # Warn when pkg.m4 is missing
66 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
70 AC_CACHE_CHECK([if bison is the parser generator],
71 [collectd_cv_prog_bison],
72 [AS_IF([$YACC --version 2>/dev/null | $EGREP -q '^bison '],
73 [collectd_cv_prog_bison=yes], [collectd_cv_prog_bison=no]
77 if test "x$collectd_cv_prog_bison" = "xno" && test ! -f "${srcdir}/src/liboconfig/parser.c"
79 AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/src/liboconfig/parser.c. Please install bison])
82 AC_ARG_VAR([PROTOC], [path to the protoc binary])
83 AC_PATH_PROG([PROTOC], [protoc])
85 if test "x$PROTOC" != "x"; then
86 AC_MSG_CHECKING([for protoc 3.0.0+])
87 if $PROTOC --version | $EGREP libprotoc.3 >/dev/null; then
88 protoc3="yes (`$PROTOC --version`)"
91 protoc3="no (`$PROTOC --version`)"
93 AC_MSG_RESULT([$protoc3])
95 AM_CONDITIONAL(HAVE_PROTOC3, test "x$have_protoc3" = "xyes")
97 AC_ARG_VAR([GRPC_CPP_PLUGIN], [path to the grpc_cpp_plugin binary])
98 AC_PATH_PROG([GRPC_CPP_PLUGIN], [grpc_cpp_plugin])
99 AM_CONDITIONAL(HAVE_GRPC_CPP, test "x$GRPC_CPP_PLUGIN" != "x")
101 AC_ARG_VAR([PROTOC_C], [path to the protoc-c binary])
102 AC_PATH_PROG([PROTOC_C], [protoc-c])
103 if test "x$PROTOC_C" = "x"
105 have_protoc_c="no (protoc-c compiler not found)"
110 AC_MSG_CHECKING([for kernel type ($host_os)])
113 AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
117 AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
121 AC_DEFINE([KERNEL_DARWIN], 1, [True if program is to be compiled for a Darwin kernel])
125 AC_DEFINE([KERNEL_OPENBSD], 1, [True if program is to be compiled for an OpenBSD kernel])
129 AC_DEFINE([KERNEL_NETBSD], 1, [True if program is to be compiled for a NetBSD kernel])
133 AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
137 AC_DEFINE([KERNEL_FREEBSD], 1, [True if program is to be compiled for a FreeBSD kernel])
143 AC_MSG_RESULT([$ac_system])
145 AM_CONDITIONAL([BUILD_AIX], [test "x$ac_system" = "xAIX"])
146 AM_CONDITIONAL([BUILD_DARWIN], [test "x$ac_system" = "xDarwin"])
147 AM_CONDITIONAL([BUILD_FREEBSD], [test "x$ac_system" = "xFreeBSD"])
148 AM_CONDITIONAL([BUILD_LINUX], [test "x$ac_system" = "xLinux"])
149 AM_CONDITIONAL([BUILD_OPENBSD], [test "x$ac_system" = "xOpenBSD"])
150 AM_CONDITIONAL([BUILD_SOLARIS], [test "x$ac_system" = "xSolaris"])
152 if test "x$ac_system" = "xLinux"
154 AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
155 if test -z "$KERNEL_DIR"
157 KERNEL_DIR="/lib/modules/`uname -r`/source"
160 KERNEL_CFLAGS="-I$KERNEL_DIR/include"
161 AC_SUBST(KERNEL_CFLAGS)
164 if test "x$ac_system" = "xSolaris"
166 AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
167 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
169 AC_MSG_CHECKING([whether compiler builds 64bit binaries])
170 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
172 # error "Compiler not in 64bit mode."
175 [AC_MSG_RESULT([yes])],
178 AC_MSG_NOTICE([Solaris detected. Please consider building a 64-bit binary.])
182 if test "x$ac_system" = "xAIX"
184 AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
187 # Where to install .pc files.
188 pkgconfigdir="${libdir}/pkgconfig"
189 AC_SUBST(pkgconfigdir)
191 # Check for standards compliance mode
192 AC_ARG_ENABLE(standards,
193 AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
194 [enable_standards="$enableval"],
195 [enable_standards="no"])
196 if test "x$enable_standards" = "xyes"
198 AC_DEFINE(_ISOC99_SOURCE, 1, [Define to enforce ISO C99 compliance.])
199 AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
200 AC_DEFINE(_XOPEN_SOURCE, 700, [Define to enforce X/Open 7 (XSI) compliance.])
201 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
202 if test "x$GCC" = "xyes"
204 CFLAGS="$CFLAGS -std=c99"
207 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
210 # Checks for header files.
266 # For entropy plugin on newer NetBSD
267 AC_CHECK_HEADERS(sys/rndio.h, [], [],
268 [#if HAVE_SYS_TYPES_H
269 # include <sys/types.h>
272 # include <sys/ioctl.h>
275 # include <sys/param.h>
280 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
285 # include <sys/types.h>
288 AC_CHECK_HEADERS(netinet/in.h, [], [],
293 # include <sys/types.h>
295 #if HAVE_NETINET_IN_SYSTM_H
296 # include <netinet/in_systm.h>
299 AC_CHECK_HEADERS(netinet/ip.h, [], [],
304 # include <sys/types.h>
306 #if HAVE_NETINET_IN_SYSTM_H
307 # include <netinet/in_systm.h>
309 #if HAVE_NETINET_IN_H
310 # include <netinet/in.h>
313 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
318 # include <sys/types.h>
320 #if HAVE_NETINET_IN_SYSTM_H
321 # include <netinet/in_systm.h>
323 #if HAVE_NETINET_IN_H
324 # include <netinet/in.h>
326 #if HAVE_NETINET_IP_H
327 # include <netinet/ip.h>
330 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
335 # include <sys/types.h>
337 #if HAVE_NETINET_IN_SYSTM_H
338 # include <netinet/in_systm.h>
340 #if HAVE_NETINET_IN_H
341 # include <netinet/in.h>
343 #if HAVE_NETINET_IP_H
344 # include <netinet/ip.h>
347 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
352 # include <sys/types.h>
354 #if HAVE_NETINET_IN_SYSTM_H
355 # include <netinet/in_systm.h>
357 #if HAVE_NETINET_IN_H
358 # include <netinet/in.h>
361 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
366 # include <sys/types.h>
368 #if HAVE_NETINET_IN_SYSTM_H
369 # include <netinet/in_systm.h>
371 #if HAVE_NETINET_IN_H
372 # include <netinet/in.h>
374 #if HAVE_NETINET_IP6_H
375 # include <netinet/ip6.h>
378 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
383 # include <sys/types.h>
385 #if HAVE_NETINET_IN_SYSTM_H
386 # include <netinet/in_systm.h>
388 #if HAVE_NETINET_IN_H
389 # include <netinet/in.h>
391 #if HAVE_NETINET_IP_H
392 # include <netinet/ip.h>
395 AC_CHECK_HEADERS(netinet/udp.h, [], [],
400 # include <sys/types.h>
402 #if HAVE_NETINET_IN_SYSTM_H
403 # include <netinet/in_systm.h>
405 #if HAVE_NETINET_IN_H
406 # include <netinet/in.h>
408 #if HAVE_NETINET_IP_H
409 # include <netinet/ip.h>
414 AC_CHECK_TYPES([struct ip6_ext], [have_ip6_ext="yes"], [have_ip6_ext="no"],
419 # include <sys/types.h>
421 #if HAVE_NETINET_IN_SYSTM_H
422 # include <netinet/in_systm.h>
424 #if HAVE_NETINET_IN_H
425 # include <netinet/in.h>
427 #if HAVE_NETINET_IP6_H
428 # include <netinet/ip6.h>
432 if test "x$have_ip6_ext" = "xno"; then
433 SAVE_CFLAGS="$CFLAGS"
434 CFLAGS="$CFLAGS -DSOLARIS2=8"
436 AC_CHECK_TYPES([struct ip6_ext],
437 [have_ip6_ext="yes, with -DSOLARIS2=8"],
443 # include <sys/types.h>
445 #if HAVE_NETINET_IN_SYSTM_H
446 # include <netinet/in_systm.h>
448 #if HAVE_NETINET_IN_H
449 # include <netinet/in.h>
451 #if HAVE_NETINET_IP6_H
452 # include <netinet/ip6.h>
456 if test "x$have_ip6_ext" = "xno"; then
457 CFLAGS="$SAVE_CFLAGS"
462 AC_CHECK_HEADERS(sys/dkstat.h)
463 if test "x$ac_system" = "xDarwin"
465 AC_CHECK_HEADERS(mach/mach_init.h mach/host_priv.h mach/mach_error.h mach/mach_host.h mach/mach_port.h mach/mach_types.h mach/message.h mach/processor_set.h mach/processor.h mach/processor_info.h mach/task.h mach/thread_act.h mach/vm_region.h mach/vm_map.h mach/vm_prot.h mach/vm_statistics.h mach/kern_return.h)
466 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
467 # For the battery plugin
468 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
470 #if HAVE_IOKIT_IOKITLIB_H
471 # include <IOKit/IOKitLib.h>
473 #if HAVE_IOKIT_IOTYPES_H
474 # include <IOKit/IOTypes.h>
480 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
483 # include <sys/types.h>
486 # include <sys/param.h>
490 AC_MSG_CHECKING([for sysctl kern.cp_times])
491 if test -x /sbin/sysctl
493 /sbin/sysctl kern.cp_times >/dev/null 2>&1
497 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
498 [Define if sysctl supports kern.cp_times])
506 AC_MSG_CHECKING([for sysctl kern.cp_time])
507 if test -x /sbin/sysctl
509 /sbin/sysctl kern.cp_time >/dev/null 2>&1
513 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIME, 1,
514 [Define if sysctl supports kern.cp_time])
523 AC_CHECK_HEADERS(linux/major.h)
525 # For md module (Linux only)
526 if test "x$ac_system" = "xLinux"
528 AC_CHECK_HEADERS(linux/raid/md_u.h,
529 [have_linux_raid_md_u_h="yes"],
530 [have_linux_raid_md_u_h="no"],
532 #include <sys/ioctl.h>
533 #include <linux/major.h>
534 #include <linux/types.h>
536 AC_CHECK_HEADERS([sys/sysmacros.h])
538 have_linux_raid_md_u_h="no"
541 # For the wireless module
542 have_linux_wireless_h="no"
543 if test "x$ac_system" = "xLinux"
545 AC_CHECK_HEADERS(linux/wireless.h,
546 [have_linux_wireless_h="yes"],
547 [have_linux_wireless_h="no"],
550 #include <sys/ioctl.h>
551 #include <sys/socket.h>
555 # For the swap module
556 have_sys_swap_h="yes"
557 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
559 #undef _FILE_OFFSET_BITS
560 #undef _LARGEFILE64_SOURCE
562 # include <sys/types.h>
565 # include <sys/param.h>
570 # For the processes plugin
572 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
574 # For interface plugin
575 AC_CHECK_HEADERS(ifaddrs.h)
576 AC_CHECK_HEADERS(net/if.h, [], [],
579 # include <sys/types.h>
581 #if HAVE_SYS_SOCKET_H
582 # include <sys/socket.h>
585 AC_CHECK_HEADERS(linux/if.h, [], [],
588 # include <sys/types.h>
590 #if HAVE_SYS_SOCKET_H
591 # include <sys/socket.h>
594 AC_CHECK_HEADERS(linux/inet_diag.h, [], [],
597 # include <sys/types.h>
599 #if HAVE_SYS_SOCKET_H
600 # include <sys/socket.h>
602 #if HAVE_LINUX_INET_DIAG_H
603 # include <linux/inet_diag.h>
606 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
609 # include <sys/types.h>
611 #if HAVE_SYS_SOCKET_H
612 # include <sys/socket.h>
615 # include <linux/if.h>
620 AC_CHECK_HEADERS(linux/sockios.h,
621 [have_linux_sockios_h="yes"],
622 [have_linux_sockios_h="no"],
625 # include <sys/ioctl.h>
631 AC_CHECK_HEADERS(linux/ethtool.h,
632 [have_linux_ethtool_h="yes"],
633 [have_linux_ethtool_h="no"],
636 # include <sys/ioctl.h>
641 #if HAVE_LINUX_SOCKIOS_H
642 # include <linux/sockios.h>
647 have_linux_ip_vs_h="no"
648 have_net_ip_vs_h="no"
650 ip_vs_h_needs_kernel_cflags="no"
651 if test "x$ac_system" = "xLinux"
653 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
654 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
655 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
657 if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
659 SAVE_CFLAGS="$CFLAGS"
660 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
662 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
664 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
665 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
666 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
668 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
670 ip_vs_h_needs_kernel_cflags="yes"
673 CFLAGS="$SAVE_CFLAGS"
676 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
679 AC_CHECK_HEADERS(sys/ucred.h, [], [],
682 # include <sys/types.h>
685 # include <sys/param.h>
689 # For mount interface
690 AC_CHECK_HEADERS(sys/mount.h, [], [],
693 # include <sys/types.h>
696 # include <sys/param.h>
700 # For the email plugin
701 AC_CHECK_HEADERS(linux/un.h, [], [],
703 #if HAVE_SYS_SOCKET_H
704 # include <sys/socket.h>
710 [AS_HELP_STRING([--enable-xfs], [xfs support in df plugin @<:@default=yes@:>@])],
715 if test "x$enable_xfs" != "xno"; then
716 AC_CHECK_HEADERS([xfs/xqm.h],
719 if test "x$enable_xfs" = "xyes"; then
720 AC_MSG_ERROR([xfs/xqm.h not found])
723 [[#define _GNU_SOURCE]]
730 AC_CHECK_HEADERS(arpa/nameser.h)
731 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
733 #if HAVE_ARPA_NAMESER_H
734 # include <arpa/nameser.h>
738 AC_CHECK_HEADERS(net/if_arp.h, [], [],
739 [#if HAVE_SYS_SOCKET_H
740 # include <sys/socket.h>
743 AC_CHECK_HEADERS(net/ppp_defs.h)
744 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
745 [#if HAVE_NET_PPP_DEFS_H
746 # include <net/ppp_defs.h>
749 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
754 # include <sys/types.h>
756 #if HAVE_SYS_SOCKET_H
757 # include <sys/socket.h>
762 #if HAVE_NETINET_IN_H
763 # include <netinet/in.h>
767 have_net_pfvar_h="no"
768 AC_CHECK_HEADERS(net/pfvar.h,
769 [have_net_pfvar_h="yes"],
770 [have_net_pfvar_h="no"],
773 # include <sys/ioctl.h>
775 #if HAVE_SYS_SOCKET_H
776 # include <sys/socket.h>
781 #if HAVE_NETINET_IN_H
782 # include <netinet/in.h>
786 # For the multimeter plugin
788 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
790 # For cpusleep plugin
791 AC_CACHE_CHECK([whether clock_boottime and clock_monotonic are supported],
792 [c_cv_have_clock_boottime_monotonic],
793 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
798 struct timespec b, m;
799 clock_gettime(CLOCK_BOOTTIME, &b );
800 clock_gettime(CLOCK_MONOTONIC, &m );
803 [c_cv_have_clock_boottime_monotonic="yes"],
804 [c_cv_have_clock_boottime_monotonic="no"]))
807 # For the turbostat plugin
808 have_asm_msrindex_h="no"
809 AC_CHECK_HEADERS(asm/msr-index.h, [have_asm_msrindex_h="yes"])
811 if test "x$have_asm_msrindex_h" = "xyes"
813 AC_CACHE_CHECK([whether asm/msr-index.h has MSR_PKG_C10_RESIDENCY],
814 [c_cv_have_usable_asm_msrindex_h],
815 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
817 #include<asm/msr-index.h>
820 int y = MSR_PKG_C10_RESIDENCY;
824 [c_cv_have_usable_asm_msrindex_h="yes"],
825 [c_cv_have_usable_asm_msrindex_h="no"],
831 AC_CHECK_HEADERS(cpuid.h, [have_cpuid_h="yes"])
833 have_capability="yes"
834 AC_CHECK_HEADERS(sys/capability.h,
835 [have_capability="yes"],
836 [have_capability="no (<sys/capability.h> not found)"])
837 if test "x$have_capability" = "xyes"; then
838 AC_CHECK_LIB(cap, cap_get_bound,
839 [have_capability="yes"],
840 [have_capability="no (cap_get_bound() not found)"])
842 if test "x$have_capability" = "xyes"; then
843 AC_DEFINE(HAVE_CAPABILITY, 1, [Define to 1 if you have cap_get_bound() (-lcap).])
845 AM_CONDITIONAL(BUILD_WITH_CAPABILITY, test "x$have_capability" = "xyes")
848 # Checks for typedefs, structures, and compiler characteristics.
857 # Checks for library functions.
859 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog sysconf setenv if_indextoname setlocale asprintf)
866 AC_LANG_SOURCE([[int main(void){}]])
868 $CXX -c conftest.cpp $CXXFLAGS $@ > /dev/null 2> /dev/null
875 SAVE_CFLAGS="$CFLAGS"
876 # Emulate behavior of src/Makefile.am
877 if test "x$GCC" = "xyes"
879 CFLAGS="$CFLAGS -Wall -Werror"
882 AC_CACHE_CHECK([for strtok_r],
883 [c_cv_have_strtok_r_default],
892 char buffer[] = "foo,bar,baz";
899 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
902 printf ("token = %s;\n", token);
906 [c_cv_have_strtok_r_default="yes"],
907 [c_cv_have_strtok_r_default="no"]
911 if test "x$c_cv_have_strtok_r_default" = "xno"
913 CFLAGS="$CFLAGS -D_REENTRANT=1"
915 AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
916 [c_cv_have_strtok_r_reentrant],
925 char buffer[] = "foo,bar,baz";
932 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
935 printf ("token = %s;\n", token);
939 [c_cv_have_strtok_r_reentrant="yes"],
940 [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
945 CFLAGS="$SAVE_CFLAGS"
946 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
948 CFLAGS="$CFLAGS -D_REENTRANT=1"
951 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
953 socket_needs_socket="no"
954 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
955 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
957 clock_gettime_needs_rt="no"
958 clock_gettime_needs_posix4="no"
959 have_clock_gettime="no"
960 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
961 if test "x$have_clock_gettime" = "xno"
963 AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
964 have_clock_gettime="yes"])
966 if test "x$have_clock_gettime" = "xno"
968 AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
969 have_clock_gettime="yes"])
971 if test "x$have_clock_gettime" = "xyes"
973 AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
976 nanosleep_needs_rt="no"
977 nanosleep_needs_posix4="no"
978 AC_CHECK_FUNCS(nanosleep,
980 AC_CHECK_LIB(rt, nanosleep,
981 [nanosleep_needs_rt="yes"],
982 AC_CHECK_LIB(posix4, nanosleep,
983 [nanosleep_needs_posix4="yes"],
984 AC_MSG_ERROR(cannot find nanosleep))))
986 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
987 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
989 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
990 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
991 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
992 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
993 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
994 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
995 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
996 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
997 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
998 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
999 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
1000 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
1002 # Check for strptime {{{
1003 if test "x$GCC" = "xyes"
1005 SAVE_CFLAGS="$CFLAGS"
1006 CFLAGS="$CFLAGS -Wall -Wextra -Werror"
1009 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
1010 if test "x$have_strptime" = "xyes"
1012 AC_CACHE_CHECK([whether strptime is exported by default],
1013 [c_cv_have_strptime_default],
1014 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1020 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
1023 [c_cv_have_strptime_default="yes"],
1024 [c_cv_have_strptime_default="no"]))
1026 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
1028 AC_CACHE_CHECK([whether strptime needs standards mode],
1029 [c_cv_have_strptime_standards],
1030 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1032 #ifndef _ISOC99_SOURCE
1033 # define _ISOC99_SOURCE 1
1035 #ifndef _POSIX_C_SOURCE
1036 # define _POSIX_C_SOURCE 200112L
1038 #ifndef _XOPEN_SOURCE
1039 # define _XOPEN_SOURCE 500
1045 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
1048 [c_cv_have_strptime_standards="yes"],
1049 [c_cv_have_strptime_standards="no"]))
1051 if test "x$c_cv_have_strptime_standards" = "xyes"
1053 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
1059 if test "x$GCC" = "xyes"
1061 CFLAGS="$SAVE_CFLAGS"
1063 # }}} Check for strptime
1065 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
1066 if test "x$have_swapctl" = "xyes"; then
1067 AC_CACHE_CHECK([whether swapctl takes two arguments],
1068 [c_cv_have_swapctl_two_args],
1069 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1071 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1072 # undef _FILE_OFFSET_BITS
1073 # undef _LARGEFILE64_SOURCE
1075 #include <sys/stat.h>
1076 #include <sys/param.h>
1077 #include <sys/swap.h>
1081 int num = swapctl(0, NULL);
1084 [c_cv_have_swapctl_two_args="yes"],
1085 [c_cv_have_swapctl_two_args="no"]
1088 AC_CACHE_CHECK([whether swapctl takes three arguments],
1089 [c_cv_have_swapctl_three_args],
1093 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1094 # undef _FILE_OFFSET_BITS
1095 # undef _LARGEFILE64_SOURCE
1097 #include <sys/stat.h>
1098 #include <sys/param.h>
1099 #include <sys/swap.h>
1103 int num = swapctl(0, NULL, 0);
1106 [c_cv_have_swapctl_three_args="yes"],
1107 [c_cv_have_swapctl_three_args="no"]
1111 # Check for different versions of `swapctl' here..
1112 if test "x$have_swapctl" = "xyes"; then
1113 if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
1114 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
1115 [Define if the function swapctl exists and takes two arguments.])
1117 if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
1118 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
1119 [Define if the function swapctl exists and takes three arguments.])
1124 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
1126 if test "x$withval" = "xno"; then
1128 else if test "x$withval" = "xyes"; then
1135 if test "x$nan_type" = "xnone"; then
1136 AC_CACHE_CHECK([whether NAN is defined by default],
1137 [c_cv_have_nan_default],
1138 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1142 static double foo = NAN;
1151 [c_cv_have_nan_default="yes"],
1152 [c_cv_have_nan_default="no"]
1155 if test "x$c_cv_have_nan_default" = "xyes"
1160 if test "x$nan_type" = "xnone"; then
1161 AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
1162 [c_cv_have_nan_isoc],
1163 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1166 #define __USE_ISOC99 1
1168 static double foo = NAN;
1177 [c_cv_have_nan_isoc="yes"],
1178 [c_cv_have_nan_isoc="no"]
1181 if test "x$c_cv_have_nan_isoc" = "xyes"
1186 if test "x$nan_type" = "xnone"; then
1187 SAVE_LDFLAGS=$LDFLAGS
1188 LDFLAGS="$LDFLAGS -lm"
1189 AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1190 [c_cv_have_nan_zero],
1191 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1198 #define NAN (0.0 / 0.0)
1200 # define isnan(f) ((f) != (f))
1202 static double foo = NAN;
1211 [c_cv_have_nan_zero="yes"],
1212 [c_cv_have_nan_zero="no"]
1215 LDFLAGS=$SAVE_LDFLAGS
1216 if test "x$c_cv_have_nan_zero" = "xyes"
1222 if test "x$nan_type" = "xdefault"; then
1223 AC_DEFINE(NAN_STATIC_DEFAULT, 1,
1224 [Define if NAN is defined by default and can initialize static variables.])
1225 else if test "x$nan_type" = "xisoc99"; then
1226 AC_DEFINE(NAN_STATIC_ISOC, 1,
1227 [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
1228 else if test "x$nan_type" = "xzero"; then
1229 AC_DEFINE(NAN_ZERO_ZERO, 1,
1230 [Define if NAN can be defined as (0.0 / 0.0)])
1232 AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1235 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
1237 if test "x$withval" = "xnothing"; then
1238 fp_layout_type="nothing"
1239 else if test "x$withval" = "xendianflip"; then
1240 fp_layout_type="endianflip"
1241 else if test "x$withval" = "xintswap"; then
1242 fp_layout_type="intswap"
1244 AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1247 [fp_layout_type="unknown"])
1249 if test "x$fp_layout_type" = "xunknown"; then
1250 AC_CACHE_CHECK([if doubles are stored in x86 representation],
1251 [c_cv_fp_layout_need_nothing],
1252 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1258 # include <stdint.h>
1261 # include <inttypes.h>
1264 # include <stdbool.h>
1274 memcpy ((void *) &i0, (void *) &d, 8);
1277 memcpy ((void *) c, (void *) &i1, 8);
1279 if ((c[0] == 0x2f) && (c[1] == 0x25)
1280 && (c[2] == 0xc0) && (c[3] == 0xc7)
1281 && (c[4] == 0x43) && (c[5] == 0x2b)
1282 && (c[6] == 0x1f) && (c[7] == 0x5b))
1288 [c_cv_fp_layout_need_nothing="yes"],
1289 [c_cv_fp_layout_need_nothing="no"]
1292 if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1293 fp_layout_type="nothing"
1296 if test "x$fp_layout_type" = "xunknown"; then
1297 AC_CACHE_CHECK([if endianflip converts to x86 representation],
1298 [c_cv_fp_layout_need_endianflip],
1299 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1305 # include <stdint.h>
1308 # include <inttypes.h>
1311 # include <stdbool.h>
1313 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1314 (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1315 (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1316 (((uint64_t)(A) & 0x000000ff00000000LL) >> 8) | \
1317 (((uint64_t)(A) & 0x00000000ff000000LL) << 8) | \
1318 (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1319 (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1320 (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1329 memcpy ((void *) &i0, (void *) &d, 8);
1331 i1 = endianflip (i0);
1332 memcpy ((void *) c, (void *) &i1, 8);
1334 if ((c[0] == 0x2f) && (c[1] == 0x25)
1335 && (c[2] == 0xc0) && (c[3] == 0xc7)
1336 && (c[4] == 0x43) && (c[5] == 0x2b)
1337 && (c[6] == 0x1f) && (c[7] == 0x5b))
1343 [c_cv_fp_layout_need_endianflip="yes"],
1344 [c_cv_fp_layout_need_endianflip="no"]
1347 if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1348 fp_layout_type="endianflip"
1351 if test "x$fp_layout_type" = "xunknown"; then
1352 AC_CACHE_CHECK([if intswap converts to x86 representation],
1353 [c_cv_fp_layout_need_intswap],
1354 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1360 # include <stdint.h>
1363 # include <inttypes.h>
1366 # include <stdbool.h>
1368 #define intswap(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1369 (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1378 memcpy ((void *) &i0, (void *) &d, 8);
1381 memcpy ((void *) c, (void *) &i1, 8);
1383 if ((c[0] == 0x2f) && (c[1] == 0x25)
1384 && (c[2] == 0xc0) && (c[3] == 0xc7)
1385 && (c[4] == 0x43) && (c[5] == 0x2b)
1386 && (c[6] == 0x1f) && (c[7] == 0x5b))
1392 [c_cv_fp_layout_need_intswap="yes"],
1393 [c_cv_fp_layout_need_intswap="no"]
1396 if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1397 fp_layout_type="intswap"
1401 if test "x$fp_layout_type" = "xnothing"; then
1402 AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1403 [Define if doubles are stored in x86 representation.])
1404 else if test "x$fp_layout_type" = "xendianflip"; then
1405 AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1406 [Define if endianflip is needed to convert to x86 representation.])
1407 else if test "x$fp_layout_type" = "xintswap"; then
1408 AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1409 [Define if intswap is needed to convert to x86 representation.])
1411 AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1414 # --with-useragent {{{
1415 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1417 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1419 AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1425 # --with-data-max-name-len {{{
1426 AC_ARG_WITH(data-max-name-len, [AS_HELP_STRING([--with-data-max-name-len@<:@=VALUE@:>@], [Maximum length of data buffers])],
1428 if test "x$withval" != "x" && test $withval -gt 0
1430 AC_DEFINE_UNQUOTED(DATA_MAX_NAME_LEN, [$withval], [Maximum length of data buffers])
1432 AC_MSG_ERROR([DATA_MAX_NAME_LEN must be a positive integer -- $withval given])
1435 [ AC_DEFINE(DATA_MAX_NAME_LEN, 128, [Maximum length of data buffers])]
1440 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1441 have_getvfsstat="no"
1442 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1443 have_listmntent="no"
1444 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1445 have_getmntent_r="no"
1446 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"])
1449 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1450 if test "x$have_getmntent" = "xno"; then
1451 AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1453 if test "x$have_getmntent" = "xno"; then
1454 AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1456 if test "x$have_getmntent" = "xno"; then
1457 AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1460 if test "x$have_getmntent" = "xc"; then
1461 AC_CACHE_CHECK([whether getmntent takes one argument],
1462 [c_cv_have_one_getmntent],
1466 #include "$srcdir/src/utils_mount.h"
1471 fh = setmntent ("/etc/mtab", "r");
1472 me = getmntent (fh);
1473 return(me->mnt_passno);
1476 [c_cv_have_one_getmntent="yes"],
1477 [c_cv_have_one_getmntent="no"]
1480 AC_CACHE_CHECK([whether getmntent takes two arguments],
1481 [c_cv_have_two_getmntent],
1485 #include "$srcdir/src/utils_mount.h"
1491 fh = fopen ("/etc/mnttab", "r");
1492 status = getmntent (fh, &mt);
1496 [c_cv_have_two_getmntent="yes"],
1497 [c_cv_have_two_getmntent="no"]
1502 # Check for different versions of `getmntent' here..
1504 if test "x$have_getmntent" = "xc"; then
1505 if test "x$c_cv_have_one_getmntent" = "xyes"; then
1506 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1507 [Define if the function getmntent exists and takes one argument.])
1509 if test "x$c_cv_have_two_getmntent" = "xyes"; then
1510 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1511 [Define if the function getmntent exists and takes two arguments.])
1514 if test "x$have_getmntent" = "xsun"; then
1515 AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1516 [Define if the function getmntent exists. It is the version from libsun.])
1518 if test "x$have_getmntent" = "xseq"; then
1519 AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1520 [Define if the function getmntent exists. It is the version from libseq.])
1522 if test "x$have_getmntent" = "xgen"; then
1523 AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1524 [Define if the function getmntent exists. It is the version from libgen.])
1528 AC_CACHE_CHECK([if have htonll defined],
1530 AC_LINK_IFELSE([AC_LANG_PROGRAM(
1532 #include <sys/types.h>
1533 #include <netinet/in.h>
1535 # include <inttypes.h>
1542 [c_cv_have_htonll="yes"],
1543 [c_cv_have_htonll="no"]
1546 if test "x$c_cv_have_htonll" = "xyes"
1548 AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1551 # Check for structures
1552 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1553 [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1556 #include <sys/types.h>
1557 #include <sys/socket.h>
1560 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1561 [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1564 #include <sys/types.h>
1565 #include <sys/socket.h>
1566 #include <linux/if.h>
1567 #include <linux/netdevice.h>
1569 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1570 [AC_DEFINE(HAVE_STRUCT_LINUX_INET_DIAG_REQ, 1, [Define if struct inet_diag_req exists and is usable.])],
1573 #include <linux/inet_diag.h>
1577 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1580 #include <netinet/in.h>
1584 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1586 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1587 [Define if struct kinfo_proc exists in the FreeBSD variant.])
1588 have_struct_kinfo_proc_freebsd="yes"
1591 have_struct_kinfo_proc_freebsd="no"
1595 #include <sys/param.h>
1596 #include <sys/sysctl.h>
1597 #include <sys/user.h>
1600 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1602 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1603 [Define if struct kinfo_proc exists in the OpenBSD variant.])
1604 have_struct_kinfo_proc_openbsd="yes"
1607 have_struct_kinfo_proc_openbsd="no"
1610 #include <sys/param.h>
1611 #include <sys/sysctl.h>
1616 AC_CHECK_MEMBERS([struct kinfo_proc2.p_pid, struct kinfo_proc2.p_uru_maxrss],
1618 AC_DEFINE(HAVE_STRUCT_KINFO_PROC2_NETBSD, 1,
1619 [Define if struct kinfo_proc2 exists in the NetBSD variant.])
1620 have_struct_kinfo_proc2_netbsd="yes"
1623 have_struct_kinfo_proc2_netbsd="no"
1626 #include <sys/param.h>
1627 #include <sys/sysctl.h>
1633 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1634 [#define _BSD_SOURCE
1635 #define _DEFAULT_SOURCE
1637 # include <stdint.h>
1639 #if HAVE_SYS_TYPES_H
1640 # include <sys/types.h>
1642 #if HAVE_NETINET_IN_SYSTM_H
1643 # include <netinet/in_systm.h>
1645 #if HAVE_NETINET_IN_H
1646 # include <netinet/in.h>
1648 #if HAVE_NETINET_IP_H
1649 # include <netinet/ip.h>
1651 #if HAVE_NETINET_UDP_H
1652 # include <netinet/udp.h>
1655 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1656 [#define _BSD_SOURCE
1657 #define _DEFAULT_SOURCE
1659 # include <stdint.h>
1661 #if HAVE_SYS_TYPES_H
1662 # include <sys/types.h>
1664 #if HAVE_NETINET_IN_SYSTM_H
1665 # include <netinet/in_systm.h>
1667 #if HAVE_NETINET_IN_H
1668 # include <netinet/in.h>
1670 #if HAVE_NETINET_IP_H
1671 # include <netinet/ip.h>
1673 #if HAVE_NETINET_UDP_H
1674 # include <netinet/udp.h>
1678 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1687 # check for pthread_setname_np
1688 SAVE_LDFLAGS="$LDFLAGS"
1689 LDFLAGS="$LDFLAGS -lpthread"
1691 AC_MSG_CHECKING([for pthread_setname_np])
1692 have_pthread_setname_np="no"
1693 AC_LINK_IFELSE([AC_LANG_PROGRAM(
1696 #include <pthread.h>
1699 pthread_setname_np((pthread_t) {0}, "conftest");
1702 have_pthread_setname_np="yes"
1703 AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [pthread_setname_np() is available.])
1706 AC_MSG_RESULT([$have_pthread_setname_np])
1708 # check for pthread_set_name_np(3) (FreeBSD)
1709 AC_MSG_CHECKING([for pthread_set_name_np])
1710 have_pthread_set_name_np="no"
1711 AC_LINK_IFELSE([AC_LANG_PROGRAM(
1713 #include <pthread_np.h>
1716 pthread_set_name_np((pthread_t) {0}, "conftest");
1719 have_pthread_set_name_np="yes"
1720 AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [pthread_set_name_np() is available.])
1722 AC_MSG_RESULT([$have_pthread_set_name_np])
1724 LDFLAGS="$SAVE_LDFLAGS"
1727 # Checks for libraries begin here
1730 with_libresolv="yes"
1731 AC_CHECK_LIB(resolv, res_search,
1733 AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1735 [with_libresolv="no"])
1736 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1738 dnl Check for HAL (hardware abstraction library)
1740 PKG_CHECK_MODULES([HAL], [hal],
1743 LIBS="$HAL_LIBS $LIBS"
1744 AC_CHECK_LIB([hal], [libhal_device_property_exists],
1746 SAVE_CPPFLAGS="$CPPFLAGS"
1747 CPPFLAGS="$HAL_CFLAGS $CPPFLAGS"
1748 AC_CHECK_HEADERS([libhal.h],
1751 BUILD_WITH_LIBHAL_CFLAGS="$HAL_CFLAGS"
1752 BUILD_WITH_LIBHAL_LIBS="$HAL_LIBS"
1754 CPPFLAGS="$SAVE_CPPFLAGS"
1762 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1763 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1767 AC_CHECK_LIB([pthread],
1770 [AC_MSG_ERROR([Symbol 'pthread_create' not found in libpthread"])],
1773 PTHREAD_LIBS="$LIBS"
1776 AC_CHECK_HEADERS([pthread.h],
1778 [AC_MSG_ERROR([pthread.h not found])]
1780 AC_SUBST([PTHREAD_LIBS])
1782 m4_divert_once([HELP_WITH], [
1783 collectd additional packages:])
1785 if test "x$ac_system" = "xAIX"
1790 with_perfstat="no (AIX only)"
1791 with_procinfo="no (AIX only)"
1794 if test "x$with_perfstat" = "xyes"
1796 AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1797 # AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1799 if test "x$with_perfstat" = "xyes"
1801 AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1802 # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1803 AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1804 if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1806 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1809 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1811 # Processes plugin under AIX.
1812 if test "x$with_procinfo" = "xyes"
1814 AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1816 if test "x$with_procinfo" = "xyes"
1818 AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1821 if test "x$ac_system" = "xSolaris"
1826 with_kstat="no (Solaris only)"
1827 with_devinfo="no (Solaris only)"
1830 if test "x$with_kstat" = "xyes"
1832 AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1834 if test "x$with_kstat" = "xyes"
1836 AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1837 AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1839 if test "x$with_kstat" = "xyes"
1841 AC_DEFINE(HAVE_LIBKSTAT, 1,
1842 [Define to 1 if you have the 'kstat' library (-lkstat)])
1844 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1845 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1848 if test "x$ac_system" = "xDarwin"
1854 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1857 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1858 if test "x$with_kvm_getprocs" = "xyes"
1860 AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1861 [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1864 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1866 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1867 if test "x$with_kvm_getswapinfo" = "xyes"
1869 AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1870 [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1873 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1875 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1876 if test "x$with_kvm_nlist" = "xyes"
1878 AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1879 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1880 [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1883 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1885 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1886 if test "x$with_kvm_openfiles" = "xyes"
1888 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1889 [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1892 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1894 # --with-libaquaero5 {{{
1895 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1897 if test "x$withval" = "xyes"
1899 with_libaquaero5="yes"
1900 else if test "x$withval" = "xno"
1902 with_libaquaero5="no"
1904 with_libaquaero5="yes"
1905 LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1906 LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1909 [with_libaquaero5="yes"])
1911 SAVE_CPPFLAGS="$CPPFLAGS"
1912 SAVE_LDFLAGS="$LDFLAGS"
1914 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1915 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1917 if test "x$with_libaquaero5" = "xyes"
1919 if test "x$LIBAQUAERO5_CFLAGS" != "x"
1921 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1923 AC_CHECK_HEADERS(libaquaero5.h,
1924 [with_libaquaero5="yes"],
1925 [with_libaquaero5="no (libaquaero5.h not found)"])
1927 if test "x$with_libaquaero5" = "xyes"
1929 if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1931 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1933 AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1934 [with_libaquaero5="yes"],
1935 [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1938 CPPFLAGS="$SAVE_CPPFLAGS"
1939 LDFLAGS="$SAVE_LDFLAGS"
1941 if test "x$with_libaquaero5" = "xyes"
1943 BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1944 BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1945 AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1946 AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1948 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1951 # --with-libhiredis {{{
1952 AC_ARG_WITH(libhiredis, [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@],
1953 [Path to libhiredis.])],
1955 if test "x$withval" = "xyes"
1957 with_libhiredis="yes"
1958 else if test "x$withval" = "xno"
1960 with_libhiredis="no"
1962 with_libhiredis="yes"
1963 LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
1964 LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
1967 [with_libhiredis="yes"])
1969 SAVE_CPPFLAGS="$CPPFLAGS"
1970 SAVE_LDFLAGS="$LDFLAGS"
1972 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
1973 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
1975 if test "x$with_libhiredis" = "xyes"
1977 if test "x$LIBHIREDIS_CPPFLAGS" != "x"
1979 AC_MSG_NOTICE([libhiredis CPPFLAGS: $LIBHIREDIS_CPPFLAGS])
1981 AC_CHECK_HEADERS(hiredis/hiredis.h,
1982 [with_libhiredis="yes"],
1983 [with_libhiredis="no (hiredis.h not found)"])
1985 if test "x$with_libhiredis" = "xyes"
1987 if test "x$LIBHIREDIS_LDFLAGS" != "x"
1989 AC_MSG_NOTICE([libhiredis LDFLAGS: $LIBHIREDIS_LDFLAGS])
1991 AC_CHECK_LIB(hiredis, redisCommand,
1992 [with_libhiredis="yes"],
1993 [with_libhiredis="no (symbol 'redisCommand' not found)"])
1997 CPPFLAGS="$SAVE_CPPFLAGS"
1998 LDFLAGS="$SAVE_LDFLAGS"
2000 if test "x$with_libhiredis" = "xyes"
2002 BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
2003 BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
2004 AC_SUBST(BUILD_WITH_LIBHIREDIS_CPPFLAGS)
2005 AC_SUBST(BUILD_WITH_LIBHIREDIS_LDFLAGS)
2007 AM_CONDITIONAL(BUILD_WITH_LIBHIREDIS, test "x$with_libhiredis" = "xyes")
2010 # --with-libcurl {{{
2011 with_curl_config="curl-config"
2014 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
2016 if test "x$withval" = "xno"
2019 else if test "x$withval" = "xyes"
2023 if test -f "$withval" && test -x "$withval"
2025 with_curl_config="$withval"
2027 else if test -x "$withval/bin/curl-config"
2029 with_curl_config="$withval/bin/curl-config"
2038 if test "x$with_libcurl" = "xyes"
2040 with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
2041 curl_config_status=$?
2043 if test $curl_config_status -ne 0
2045 with_libcurl="no ($with_curl_config failed)"
2047 SAVE_CPPFLAGS="$CPPFLAGS"
2048 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
2050 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
2052 CPPFLAGS="$SAVE_CPPFLAGS"
2055 if test "x$with_libcurl" = "xyes"
2057 with_curl_libs=`$with_curl_config --libs 2>/dev/null`
2058 curl_config_status=$?
2060 if test $curl_config_status -ne 0
2062 with_libcurl="no ($with_curl_config failed)"
2064 AC_CHECK_LIB(curl, curl_easy_init,
2065 [with_libcurl="yes"],
2066 [with_libcurl="no (symbol 'curl_easy_init' not found)"],
2068 AC_CHECK_DECL(CURLOPT_USERNAME,
2069 [have_curlopt_username="yes"],
2070 [have_curlopt_username="no"],
2071 [[#include <curl/curl.h>]])
2072 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
2073 [have_curlopt_timeout="yes"],
2074 [have_curlopt_timeout="no"],
2075 [[#include <curl/curl.h>]])
2078 if test "x$with_libcurl" = "xyes"
2080 SAVE_CPPFLAGS="$CPPFLAGS"
2081 SAVE_LDFLAGS="$LDFLAGS"
2082 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
2083 LDFLAGS="$LDFLAGS $with_curl_libs"
2084 AC_CACHE_CHECK([for CURLINFO_APPCONNECT_TIME],
2085 [c_cv_have_curlinfo_appconnect_time],
2086 AC_LINK_IFELSE([AC_LANG_PROGRAM(
2088 #include <curl/curl.h>
2091 int val = CURLINFO_APPCONNECT_TIME;
2095 [c_cv_have_curlinfo_appconnect_time="yes"],
2096 [c_cv_have_curlinfo_appconnect_time="no"]
2099 CPPFLAGS="$SAVE_CPPFLAGS"
2100 LDFLAGS="$SAVE_LDFLAGS"
2102 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
2103 if test "x$c_cv_have_curlinfo_appconnect_time" = "xyes"
2105 AC_DEFINE(HAVE_CURLINFO_APPCONNECT_TIME, 1, [Define if curl.h defines CURLINFO_APPCONNECT_TIME.])
2108 if test "x$with_libcurl" = "xyes"
2110 BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
2111 BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
2112 AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
2113 AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
2115 if test "x$have_curlopt_username" = "xyes"
2117 AC_DEFINE(HAVE_CURLOPT_USERNAME, 1, [Define if libcurl supports CURLOPT_USERNAME option.])
2120 if test "x$have_curlopt_timeout" = "xyes"
2122 AC_DEFINE(HAVE_CURLOPT_TIMEOUT_MS, 1, [Define if libcurl supports CURLOPT_TIMEOUT_MS option.])
2128 with_libdbi_cppflags=""
2129 with_libdbi_ldflags=""
2130 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
2132 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2134 with_libdbi_cppflags="-I$withval/include"
2135 with_libdbi_ldflags="-L$withval/lib"
2138 with_libdbi="$withval"
2144 if test "x$with_libdbi" = "xyes"
2146 SAVE_CPPFLAGS="$CPPFLAGS"
2147 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2149 AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
2151 CPPFLAGS="$SAVE_CPPFLAGS"
2153 if test "x$with_libdbi" = "xyes"
2155 SAVE_CPPFLAGS="$CPPFLAGS"
2156 SAVE_LDFLAGS="$LDFLAGS"
2157 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2158 LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
2160 AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
2162 CPPFLAGS="$SAVE_CPPFLAGS"
2163 LDFLAGS="$SAVE_LDFLAGS"
2165 if test "x$with_libdbi" = "xyes"
2167 BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
2168 BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
2169 BUILD_WITH_LIBDBI_LIBS="-ldbi"
2170 AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
2171 AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
2172 AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
2174 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
2177 # --with-libesmtp {{{
2178 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
2180 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2182 LDFLAGS="$LDFLAGS -L$withval/lib"
2183 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
2186 with_libesmtp="$withval"
2192 if test "x$with_libesmtp" = "xyes"
2194 AC_CHECK_LIB(esmtp, smtp_create_session,
2196 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
2197 ], [with_libesmtp="no (libesmtp not found)"])
2199 if test "x$with_libesmtp" = "xyes"
2201 AC_CHECK_HEADERS(libesmtp.h,
2203 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
2204 ], [with_libesmtp="no (libesmtp.h not found)"])
2206 if test "x$with_libesmtp" = "xyes"
2212 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
2213 [Wether or not to use the esmtp library])
2214 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
2217 # --with-libganglia {{{
2218 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
2220 if test -f "$withval" && test -x "$withval"
2222 with_libganglia_config="$withval"
2223 with_libganglia="yes"
2224 else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
2226 with_libganglia_config="$withval/bin/ganglia-config"
2227 with_libganglia="yes"
2228 else if test -d "$withval"
2230 GANGLIA_CPPFLAGS="-I$withval/include"
2231 GANGLIA_LDFLAGS="-L$withval/lib"
2232 with_libganglia="yes"
2234 with_libganglia="$withval"
2238 with_libganglia="yes"
2241 if test "x$with_libganglia" = "xyes"
2243 if test "x$with_libganglia_config" != "x"
2245 if test "x$GANGLIA_CPPFLAGS" = "x"
2247 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
2250 if test "x$GANGLIA_LDFLAGS" = "x"
2252 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
2255 if test "x$GANGLIA_LIBS" = "x"
2257 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
2260 GANGLIA_LIBS="-lganglia"
2264 SAVE_CPPFLAGS="$CPPFLAGS"
2265 SAVE_LDFLAGS="$LDFLAGS"
2266 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
2267 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
2269 if test "x$with_libganglia" = "xyes"
2271 AC_CHECK_HEADERS(gm_protocol.h,
2273 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
2274 [Define to 1 if you have the <gm_protocol.h> header file.])
2275 ], [with_libganglia="no (gm_protocol.h not found)"])
2278 if test "x$with_libganglia" = "xyes"
2280 AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
2282 AC_DEFINE(HAVE_LIBGANGLIA, 1,
2283 [Define to 1 if you have the ganglia library (-lganglia).])
2284 ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
2287 CPPFLAGS="$SAVE_CPPFLAGS"
2288 LDFLAGS="$SAVE_LDFLAGS"
2290 AC_SUBST(GANGLIA_CPPFLAGS)
2291 AC_SUBST(GANGLIA_LDFLAGS)
2292 AC_SUBST(GANGLIA_LIBS)
2293 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
2296 # --with-libgcrypt {{{
2297 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
2298 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2299 GCRYPT_LIBS="$GCRYPT_LIBS"
2300 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2302 if test -f "$withval" && test -x "$withval"
2304 with_libgcrypt_config="$withval"
2305 with_libgcrypt="yes"
2306 else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
2308 with_libgcrypt_config="$withval/bin/gcrypt-config"
2309 with_libgcrypt="yes"
2310 else if test -d "$withval"
2312 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2313 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2314 with_libgcrypt="yes"
2316 with_libgcrypt_config="gcrypt-config"
2317 with_libgcrypt="$withval"
2321 with_libgcrypt_config="libgcrypt-config"
2322 with_libgcrypt="yes"
2325 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
2327 if test "x$GCRYPT_CPPFLAGS" = "x"
2329 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2332 if test "x$GCRYPT_LIBS" = "x"
2334 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2338 SAVE_CPPFLAGS="$CPPFLAGS"
2339 SAVE_LDFLAGS="$LDFLAGS"
2341 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2342 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2343 LIBS="$LIBS $GCRYPT_LIBS"
2345 if test "x$with_libgcrypt" = "xyes"
2347 if test "x$GCRYPT_CPPFLAGS" != "x"
2349 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
2351 AC_CHECK_HEADERS(gcrypt.h,
2352 [with_libgcrypt="yes"],
2353 [with_libgcrypt="no (gcrypt.h not found)"])
2356 if test "x$with_libgcrypt" = "xyes"
2358 AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2359 [with_libgcrypt="yes"],
2360 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
2363 CPPFLAGS="$SAVE_CPPFLAGS"
2364 LDFLAGS="$SAVE_LDFLAGS"
2367 if test "x$with_libgcrypt" = "xyes"
2369 AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
2372 AC_SUBST(GCRYPT_CPPFLAGS)
2373 AC_SUBST(GCRYPT_LDFLAGS)
2374 AC_SUBST(GCRYPT_LIBS)
2375 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
2379 with_libgps_cflags=""
2380 with_libgps_ldflags=""
2381 AC_ARG_WITH(libgps, [AS_HELP_STRING([--with-libgps@<:@=PREFIX@:>@], [Path to libgps.])],
2383 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2385 with_libgps_cflags="-I$withval/include"
2386 with_libgps_ldflags="-L$withval/lib"
2389 with_libgps="$withval"
2395 if test "x$with_libgps" = "xyes"
2397 SAVE_CFLAGS="$CFLAGS"
2398 CFLAGS="$CFLAGS $with_libgps_cflags"
2400 AC_CHECK_HEADERS(gps.h, [with_libgps="yes"], [with_libgps="no (gps.h not found)"])
2402 CFLAGS="$SAVE_CFLAGS"
2404 if test "x$with_libgps" = "xyes"
2406 SAVE_CFLAGS="$CFLAGS"
2407 SAVE_LDFLAGS="$LDFLAGS"
2408 CFLAGS="$CFLAGS $with_libgps_cflags"
2409 LDFLAGS="$LDFLAGS $with_libgps_ldflags"
2411 AC_CHECK_LIB(gps, gps_open, [with_libgps="yes"], [with_libgps="no (symbol gps_open not found)"])
2413 CFLAGS="$SAVE_CFLAGS"
2414 LDFLAGS="$SAVE_LDFLAGS"
2416 if test "x$with_libgps" = "xyes"
2418 BUILD_WITH_LIBGPS_CFLAGS="$with_libgps_cflags"
2419 BUILD_WITH_LIBGPS_LDFLAGS="$with_libgps_ldflags"
2420 BUILD_WITH_LIBGPS_LIBS="-lgps"
2421 AC_SUBST(BUILD_WITH_LIBGPS_CFLAGS)
2422 AC_SUBST(BUILD_WITH_LIBGPS_LDFLAGS)
2423 AC_SUBST(BUILD_WITH_LIBGPS_LIBS)
2425 AM_CONDITIONAL(BUILD_WITH_LIBGPS, test "x$with_libgps" = "xyes")
2428 # --with-libgrpc++ {{{
2429 with_libgrpcpp_cppflags=""
2430 with_libgrpcpp_ldflags=""
2431 AC_ARG_WITH([libgrpc++], [AS_HELP_STRING([--with-libgrpc++@<:@=PREFIX@:>@], [Path to libgrpc++.])],
2433 with_grpcpp="$withval"
2434 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2436 with_libgrpcpp_cppflags="-I$withval/include"
2437 with_libgrpcpp_ldflags="-L$withval/lib"
2438 with_libgrpcpp="yes"
2440 if test "x$withval" = "xno"
2442 with_libgrpcpp="no (disabled on command line)"
2447 if test "x$withval" = "xyes"
2449 PKG_CHECK_MODULES([GRPCPP], [grpc++],
2450 [with_libgrpcpp="yes"],
2451 [with_libgrpcpp="no (pkg-config could not find libgrpc++)"]
2455 if test "x$withval" != "xno"
2457 AC_MSG_CHECKING([whether $CXX accepts -std=c++11])
2458 if test_cxx_flags -std=c++11; then
2459 AC_MSG_RESULT([yes])
2462 with_libgrpcpp="no (requires C++11 support)"
2466 if test "x$with_libgrpcpp" = "xyes"
2469 SAVE_CPPFLAGS="$CPPFLAGS"
2470 CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
2471 AC_CHECK_HEADERS([grpc++/grpc++.h], [],
2472 [with_libgrpcpp="no (<grpc++/grpc++.h> not found)"]
2474 CPPFLAGS="$SAVE_CPPFLAGS"
2477 if test "x$with_libgrpcpp" = "xyes"
2480 SAVE_CPPFLAGS="$CPPFLAGS"
2481 SAVE_LDFLAGS="$LDFLAGS"
2483 CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
2484 LDFLAGS="$with_libgrpcpp_ldflags"
2485 if test "x$GRPCPP_LIBS" = "x"
2493 [[#include <grpc++/grpc++.h>]],
2494 [[grpc::ServerBuilder sb;]]
2497 with_libgrpcpp="yes"
2498 if test "x$GRPCPP_LIBS" = "x"
2500 GRPCPP_LIBS="-lgrpc++"
2503 [with_libgrpcpp="no (libgrpc++ not found)"]
2505 CPPFLAGS="$SAVE_CPPFLAGS"
2506 LDFLAGS="$SAVE_LDFLAGS"
2510 BUILD_WITH_LIBGRPCPP_CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS"
2511 BUILD_WITH_LIBGRPCPP_LDFLAGS="$with_libgrpcpp_ldflags"
2512 BUILD_WITH_LIBGRPCPP_LIBS="$GRPCPP_LIBS"
2513 AC_SUBST([BUILD_WITH_LIBGRPCPP_CPPFLAGS])
2514 AC_SUBST([BUILD_WITH_LIBGRPCPP_LDFLAGS])
2515 AC_SUBST([BUILD_WITH_LIBGRPCPP_LIBS])
2518 # --with-libiptc {{{
2519 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2521 if test "x$withval" = "xyes"
2523 with_libiptc="pkgconfig"
2524 else if test "x$withval" = "xno"
2529 with_libiptc_cflags="-I$withval/include"
2530 with_libiptc_libs="-L$withval/lib"
2534 if test "x$ac_system" = "xLinux"
2536 with_libiptc="pkgconfig"
2538 with_libiptc="no (Linux only)"
2542 if test "x$with_libiptc" = "xpkgconfig"
2544 $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2547 with_libiptc="no (pkg-config doesn't know libiptc)"
2550 if test "x$with_libiptc" = "xpkgconfig"
2552 with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2555 with_libiptc="no ($PKG_CONFIG failed)"
2557 with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2560 with_libiptc="no ($PKG_CONFIG failed)"
2564 SAVE_CPPFLAGS="$CPPFLAGS"
2565 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2567 # check whether the header file for libiptc is available.
2568 if test "x$with_libiptc" = "xpkgconfig"
2570 AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2571 [with_libiptc="no (header file missing)"])
2573 # If the header file is available, check for the required type declaractions.
2574 # They may be missing in old versions of libiptc. In that case, they will be
2575 # declared in the iptables plugin.
2576 if test "x$with_libiptc" = "xpkgconfig"
2578 AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2580 # Check for the iptc_init symbol in the library.
2581 # This could be in iptc or ip4tc
2582 if test "x$with_libiptc" = "xpkgconfig"
2585 AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2586 [with_libiptc="pkgconfig"],
2587 [with_libiptc="no"],
2588 [$with_libiptc_libs])
2591 if test "x$with_libiptc" = "xpkgconfig"
2596 CPPFLAGS="$SAVE_CPPFLAGS"
2598 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2599 if test "x$with_libiptc" = "xyes"
2601 BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2602 BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2603 AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2604 AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2608 # --with-libdpdk {{{
2609 AC_ARG_VAR([LIBDPDK_CPPFLAGS], [Preprocessor flags for libdpdk])
2610 AC_ARG_VAR([LIBDPDK_LDFLAGS], [Linker flags for libdpdk])
2612 AC_ARG_WITH([libdpdk], [AS_HELP_STRING([--without-libdpdk], [Disable libdpdk.])])
2614 if test "x$with_libdpdk" != "xno"
2616 if test "x$LIBDPDK_CPPFLAGS" = "x"
2618 LIBDPDK_CPPFLAGS="-I/usr/include/dpdk"
2620 SAVE_CPPFLAGS="$CPPFLAGS"
2621 CPPFLAGS="$LIBDPDK_CPPFLAGS $CPPFLAGS"
2622 AC_CHECK_HEADERS([rte_config.h],
2623 [with_libdpdk="yes"],
2624 [with_libdpdk="no (rte_config.h not found)"]
2626 CPPFLAGS="$SAVE_CPPFLAGS"
2629 if test "x$with_libdpdk" = "xyes"
2631 SAVE_LDFLAGS="$LDFLAGS"
2632 LDFLAGS="$LIBDPDK_LDFLAGS $LDFLAGS"
2633 AC_CHECK_LIB([dpdk], [rte_eal_init],
2634 [with_libdpdk="yes"],
2635 [with_libdpdk="no (symbol 'rte_eal_init' not found)"]
2637 LDFLAGS="$SAVE_LDFLAGS"
2643 with_java_home="$JAVA_HOME"
2644 if test "x$with_java_home" = "x"
2646 with_java_home="/usr/lib/jvm"
2650 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2652 if test "x$withval" = "xno"
2655 else if test "x$withval" = "xyes"
2659 with_java_home="$withval"
2664 if test "x$with_java" = "xyes"
2666 if test -d "$with_java_home"
2668 AC_MSG_CHECKING([for jni.h])
2669 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2670 if test "x$TMPVAR" != "x"
2672 AC_MSG_RESULT([found in $TMPVAR])
2673 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2675 AC_MSG_RESULT([not found])
2678 AC_MSG_CHECKING([for jni_md.h])
2679 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2680 if test "x$TMPVAR" != "x"
2682 AC_MSG_RESULT([found in $TMPVAR])
2683 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2685 AC_MSG_RESULT([not found])
2688 AC_MSG_CHECKING([for libjvm.so])
2689 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`
2690 if test "x$TMPVAR" != "x"
2692 AC_MSG_RESULT([found in $TMPVAR])
2693 JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2695 AC_MSG_RESULT([not found])
2698 if test "x$JAVAC" = "x"
2700 AC_MSG_CHECKING([for javac])
2701 TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | LC_ALL=C sort | head -n 1`
2702 if test "x$TMPVAR" != "x"
2705 AC_MSG_RESULT([$JAVAC])
2707 AC_MSG_RESULT([not found])
2710 if test "x$JAR" = "x"
2712 AC_MSG_CHECKING([for jar])
2713 TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | LC_ALL=C sort | head -n 1`
2714 if test "x$TMPVAR" != "x"
2717 AC_MSG_RESULT([$JAR])
2719 AC_MSG_RESULT([not found])
2722 else if test "x$with_java_home" != "x"
2724 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2728 if test "x$JAVA_CPPFLAGS" != "x"
2730 AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2732 if test "x$JAVA_CFLAGS" != "x"
2734 AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2736 if test "x$JAVA_LDFLAGS" != "x"
2738 AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2740 if test "x$JAVA_LIBS" != "x"
2742 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2744 if test "x$JAVAC" = "x"
2746 with_javac_path="$PATH"
2747 if test "x$with_java_home" != "x"
2749 with_javac_path="$with_java_home:with_javac_path"
2750 if test -d "$with_java_home/bin"
2752 with_javac_path="$with_java_home/bin:with_javac_path"
2756 AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2758 if test "x$JAVAC" = "x"
2760 with_java="no (javac not found)"
2762 if test "x$JAR" = "x"
2764 with_jar_path="$PATH"
2765 if test "x$with_java_home" != "x"
2767 with_jar_path="$with_java_home:$with_jar_path"
2768 if test -d "$with_java_home/bin"
2770 with_jar_path="$with_java_home/bin:$with_jar_path"
2774 AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2776 if test "x$JAR" = "x"
2778 with_java="no (jar not found)"
2781 SAVE_CPPFLAGS="$CPPFLAGS"
2782 SAVE_CFLAGS="$CFLAGS"
2783 SAVE_LDFLAGS="$LDFLAGS"
2785 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2786 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2787 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2788 LIBS="$LIBS $JAVA_LIBS"
2790 if test "x$with_java" = "xyes"
2792 AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2794 if test "x$with_java" = "xyes"
2796 AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2798 [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
2799 [$JAVA_LIBS $PTHREAD_LIBS])
2801 if test "x$with_java" = "xyes"
2803 JAVA_LIBS="$JAVA_LIBS -ljvm"
2804 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2807 CPPFLAGS="$SAVE_CPPFLAGS"
2808 CFLAGS="$SAVE_CFLAGS"
2809 LDFLAGS="$SAVE_LDFLAGS"
2812 AC_SUBST(JAVA_CPPFLAGS)
2813 AC_SUBST(JAVA_CFLAGS)
2814 AC_SUBST(JAVA_LDFLAGS)
2816 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2819 # --with-libldap {{{
2820 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2822 if test "x$withval" = "xyes"
2825 else if test "x$withval" = "xno"
2830 LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2831 LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2834 [with_libldap="yes"])
2836 SAVE_CPPFLAGS="$CPPFLAGS"
2837 SAVE_LDFLAGS="$LDFLAGS"
2839 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2840 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2842 if test "x$with_libldap" = "xyes"
2844 if test "x$LIBLDAP_CPPFLAGS" != "x"
2846 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2848 AC_CHECK_HEADERS(ldap.h,
2849 [with_libldap="yes"],
2850 [with_libldap="no ('ldap.h' not found)"])
2852 if test "x$with_libldap" = "xyes"
2854 if test "x$LIBLDAP_LDFLAGS" != "x"
2856 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2858 AC_CHECK_LIB(ldap, ldap_initialize,
2859 [with_libldap="yes"],
2860 [with_libldap="no (symbol 'ldap_initialize' not found)"])
2864 CPPFLAGS="$SAVE_CPPFLAGS"
2865 LDFLAGS="$SAVE_LDFLAGS"
2867 if test "x$with_libldap" = "xyes"
2869 BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2870 BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2871 AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2872 AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2874 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2878 AC_ARG_VAR([LIBLUA_PKG_CONFIG_NAME], [Name of liblua used by pkg-config])
2879 if test "x$LIBLUA_PKG_CONFIG_NAME" != "x"
2881 PKG_CHECK_MODULES([LUA], [$LIBLUA_PKG_CONFIG_NAME],
2882 [with_liblua="yes"],
2886 PKG_CHECK_MODULES([LUA], [lua],
2887 [with_liblua="yes"],
2889 PKG_CHECK_MODULES([LUA], [lua-5.3],
2890 [with_liblua="yes"],
2892 PKG_CHECK_MODULES([LUA], [lua5.3],
2893 [with_liblua="yes"],
2895 PKG_CHECK_MODULES([LUA], [lua-5.2],
2896 [with_liblua="yes"],
2898 PKG_CHECK_MODULES([LUA], [lua5.2],
2899 [with_liblua="yes"],
2901 PKG_CHECK_MODULES([LUA], [lua-5.1],
2902 [with_liblua="yes"],
2904 PKG_CHECK_MODULES([LUA], [lua5.1],
2905 [with_liblua="yes"],
2906 [with_liblua="no (pkg-config cannot find liblua)"]
2922 if test "x$with_liblua" = "xyes"
2924 SAVE_CPPFLAGS="$CPPFLAGS"
2925 CPPFLAGS="$CPPFLAGS $LUA_CFLAGS"
2927 AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
2928 [with_liblua="yes"],
2929 [with_liblua="no (header not found)"]
2932 CPPFLAGS="$SAVE_CPPFLAGS"
2935 if test "x$with_liblua" = "xyes"
2938 LIBS="$LIBS $LUA_LIBS"
2940 AC_CHECK_FUNC([lua_settop],
2941 [with_liblua="yes"],
2942 [with_liblua="no (symbol 'lua_settop' not found)"]
2948 if test "x$with_liblua" = "xyes"
2950 BUILD_WITH_LIBLUA_CFLAGS="$LUA_CFLAGS"
2951 BUILD_WITH_LIBLUA_LIBS="$LUA_LIBS"
2953 AC_SUBST(BUILD_WITH_LIBLUA_CFLAGS)
2954 AC_SUBST(BUILD_WITH_LIBLUA_LIBS)
2957 # --with-liblvm2app {{{
2958 with_liblvm2app_cppflags=""
2959 with_liblvm2app_ldflags=""
2960 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2962 if test "x$withval" = "xno"
2964 with_liblvm2app="no"
2966 with_liblvm2app="yes"
2967 if test "x$withval" != "xyes"
2969 with_liblvm2app_cppflags="-I$withval/include"
2970 with_liblvm2app_ldflags="-L$withval/lib"
2975 if test "x$ac_system" = "xLinux"
2977 with_liblvm2app="yes"
2979 with_liblvm2app="no (Linux only library)"
2982 if test "x$with_liblvm2app" = "xyes"
2984 SAVE_CPPFLAGS="$CPPFLAGS"
2985 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2987 AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2989 CPPFLAGS="$SAVE_CPPFLAGS"
2992 if test "x$with_liblvm2app" = "xyes"
2994 SAVE_CPPFLAGS="$CPPFLAGS"
2995 SAVE_LDFLAGS="$LDFLAGS"
2996 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2997 LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2999 AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
3001 CPPFLAGS="$SAVE_CPPFLAGS"
3002 LDFLAGS="$SAVE_LDFLAGS"
3004 if test "x$with_liblvm2app" = "xyes"
3006 BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
3007 BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
3008 BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
3009 AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
3010 AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
3011 AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
3012 AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
3014 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
3017 # --with-libmemcached {{{
3018 with_libmemcached_cppflags=""
3019 with_libmemcached_ldflags=""
3020 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
3022 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3024 with_libmemcached_cppflags="-I$withval/include"
3025 with_libmemcached_ldflags="-L$withval/lib"
3026 with_libmemcached="yes"
3028 with_libmemcached="$withval"
3032 with_libmemcached="yes"
3034 if test "x$with_libmemcached" = "xyes"
3036 SAVE_CPPFLAGS="$CPPFLAGS"
3037 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
3039 AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
3041 CPPFLAGS="$SAVE_CPPFLAGS"
3043 if test "x$with_libmemcached" = "xyes"
3045 SAVE_CPPFLAGS="$CPPFLAGS"
3046 SAVE_LDFLAGS="$LDFLAGS"
3047 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
3048 LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
3050 AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
3052 CPPFLAGS="$SAVE_CPPFLAGS"
3053 LDFLAGS="$SAVE_LDFLAGS"
3055 if test "x$with_libmemcached" = "xyes"
3057 BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
3058 BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
3059 BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
3060 AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
3061 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
3062 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
3063 AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
3065 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
3068 # --with-libmicrohttpd {{{
3069 with_libmicrohttpd_cppflags=""
3070 with_libmicrohttpd_ldflags=""
3071 AC_ARG_WITH([libmicrohttpd], [AS_HELP_STRING([--with-libmicrohttpd@<:@=PREFIX@:>@], [Path to libmicrohttpd.])],
3073 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3075 with_libmicrohttpd_cppflags="-I$withval/include"
3076 with_libmicrohttpd_ldflags="-L$withval/lib"
3077 with_libmicrohttpd="yes"
3079 if test "x$withval" = "xno"
3081 with_libmicrohttpd="no (disabled on command line)"
3086 if test "x$withval" = "xyes"
3088 PKG_CHECK_MODULES([MICROHTTPD], [libmicrohttpd],
3089 [with_libmicrohttpd="yes"],
3090 [with_libmicrohttpd="no (pkg-config could not find libmicrohttpd)"]
3094 if test "x$MICROHTTPD_LIBS" = "x"
3096 MICROHTTPD_LIBS="-lmicrohttpd"
3099 SAVE_CPPFLAGS="$CPPFLAGS"
3100 SAVE_LDFLAGS="$LDFLAGS"
3102 CPPFLAGS="$with_libmicrohttpd_cppflags $MICROHTTPD_CFLAGS"
3103 LDFLAGS="$with_libmicrohttpd_ldflags $LDFLAGS"
3104 LIBS="$LIBS $MICROHTTPD_LIBS"
3106 if test "x$with_libmicrohttpd" = "xyes"
3108 AC_CHECK_HEADERS([microhttpd.h],
3109 [with_libmicrohttpd="yes"],
3110 [with_libmicrohttpd="no (<microhttpd.h> not found)"])
3113 if test "x$with_libmicrohttpd" = "xyes"
3115 AC_CHECK_LIB([microhttpd], [MHD_start_daemon],
3116 [with_libmicrohttpd="yes"],
3117 [with_libmicrohttpd="no (libmicrohttpd not found)"])
3120 CPPFLAGS="$SAVE_CPPFLAGS"
3121 LDFLAGS="$SAVE_LDFLAGS"
3124 BUILD_WITH_LIBMICROHTTPD_CPPFLAGS="$with_libmicrohttpd_cppflags $MICROHTTPD_CFLAGS"
3125 BUILD_WITH_LIBMICROHTTPD_LDFLAGS="$with_libmicrohttpd_ldflags"
3126 BUILD_WITH_LIBMICROHTTPD_LIBS="$MICROHTTPD_LIBS"
3127 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_CPPFLAGS])
3128 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_LDFLAGS])
3129 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_LIBS])
3132 # --with-libmodbus {{{
3133 with_libmodbus_config=""
3134 with_libmodbus_cflags=""
3135 with_libmodbus_libs=""
3136 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
3138 if test "x$withval" = "xno"
3141 else if test "x$withval" = "xyes"
3143 with_libmodbus="use_pkgconfig"
3144 else if test -d "$with_libmodbus/lib"
3146 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
3147 with_libmodbus_cflags="-I$withval/include"
3148 with_libmodbus_libs="-L$withval/lib -lmodbus"
3149 with_libmodbus="yes"
3152 [with_libmodbus="use_pkgconfig"])
3154 # configure using pkg-config
3155 if test "x$with_libmodbus" = "xuse_pkgconfig"
3157 AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
3158 $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
3161 with_libmodbus="no (pkg-config doesn't know libmodbus)"
3164 if test "x$with_libmodbus" = "xuse_pkgconfig"
3166 with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
3169 with_libmodbus="no ($PKG_CONFIG failed)"
3171 with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
3174 with_libmodbus="no ($PKG_CONFIG failed)"
3177 if test "x$with_libmodbus" = "xuse_pkgconfig"
3179 with_libmodbus="yes"
3182 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
3183 # the actual checks.
3184 if test "x$with_libmodbus" = "xyes"
3186 SAVE_CPPFLAGS="$CPPFLAGS"
3187 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
3189 AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
3191 CPPFLAGS="$SAVE_CPPFLAGS"
3193 if test "x$with_libmodbus" = "xyes"
3195 SAVE_CPPFLAGS="$CPPFLAGS"
3196 SAVE_LDFLAGS="$LDFLAGS"
3198 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
3199 LDFLAGS="$LDFLAGS $with_libmodbus_libs"
3201 AC_CHECK_LIB(modbus, modbus_connect,
3202 [with_libmodbus="yes"],
3203 [with_libmodbus="no (symbol modbus_connect not found)"])
3205 CPPFLAGS="$SAVE_CPPFLAGS"
3206 LDFLAGS="$SAVE_LDFLAGS"
3208 if test "x$with_libmodbus" = "xyes"
3210 BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
3211 BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
3212 AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
3213 AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
3217 # --with-libmongoc {{{
3218 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
3220 if test "x$withval" = "xyes"
3222 with_libmongoc="yes"
3223 else if test "x$withval" = "xno"
3227 with_libmongoc="yes"
3228 LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
3229 LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
3232 [with_libmongoc="yes"])
3234 SAVE_CPPFLAGS="$CPPFLAGS"
3235 SAVE_LDFLAGS="$LDFLAGS"
3237 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
3238 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
3240 if test "x$with_libmongoc" = "xyes"
3242 if test "x$LIBMONGOC_CPPFLAGS" != "x"
3244 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
3246 AC_CHECK_HEADERS(mongo.h,
3247 [with_libmongoc="yes"],
3248 [with_libmongoc="no ('mongo.h' not found)"],
3250 # define MONGO_HAVE_STDINT 1
3252 # define MONGO_USE_LONG_LONG_INT 1
3256 if test "x$with_libmongoc" = "xyes"
3258 if test "x$LIBMONGOC_LDFLAGS" != "x"
3260 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
3262 AC_CHECK_LIB(mongoc, mongo_run_command,
3263 [with_libmongoc="yes"],
3264 [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
3267 CPPFLAGS="$SAVE_CPPFLAGS"
3268 LDFLAGS="$SAVE_LDFLAGS"
3270 if test "x$with_libmongoc" = "xyes"
3272 BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
3273 BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
3274 AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
3275 AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
3277 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
3280 # --with-libmosquitto {{{
3281 with_libmosquitto_cppflags=""
3282 with_libmosquitto_ldflags=""
3283 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
3285 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3287 with_libmosquitto_cppflags="-I$withval/include"
3288 with_libmosquitto_ldflags="-L$withval/lib"
3289 with_libmosquitto="yes"
3291 with_libmosquitto="$withval"
3295 with_libmosquitto="yes"
3297 if test "x$with_libmosquitto" = "xyes"
3299 SAVE_CPPFLAGS="$CPPFLAGS"
3300 CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3302 AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
3304 CPPFLAGS="$SAVE_CPPFLAGS"
3306 if test "x$with_libmosquitto" = "xyes"
3308 SAVE_LDFLAGS="$LDFLAGS"
3309 SAVE_CPPFLAGS="$CPPFLAGS"
3310 LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
3311 CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3313 AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
3315 LDFLAGS="$SAVE_LDFLAGS"
3316 CPPFLAGS="$SAVE_CPPFLAGS"
3318 if test "x$with_libmosquitto" = "xyes"
3320 BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
3321 BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
3322 BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
3323 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
3324 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LDFLAGS)
3325 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
3329 # --with-libmysql {{{
3330 with_mysql_config="mysql_config"
3331 with_mysql_cflags=""
3333 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
3335 if test "x$withval" = "xno"
3338 else if test "x$withval" = "xyes"
3342 if test -f "$withval" && test -x "$withval";
3344 with_mysql_config="$withval"
3345 else if test -x "$withval/bin/mysql_config"
3347 with_mysql_config="$withval/bin/mysql_config"
3355 if test "x$with_libmysql" = "xyes"
3357 with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
3358 mysql_config_status=$?
3360 if test $mysql_config_status -ne 0
3362 with_libmysql="no ($with_mysql_config failed)"
3364 SAVE_CPPFLAGS="$CPPFLAGS"
3365 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3368 have_mysql_mysql_h="no"
3369 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
3371 if test "x$have_mysql_h" = "xno"
3373 AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
3376 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
3378 with_libmysql="no (mysql.h not found)"
3381 CPPFLAGS="$SAVE_CPPFLAGS"
3384 if test "x$with_libmysql" = "xyes"
3386 with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
3387 mysql_config_status=$?
3389 if test $mysql_config_status -ne 0
3391 with_libmysql="no ($with_mysql_config failed)"
3393 SAVE_CPPFLAGS="$CPPFLAGS"
3394 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3396 LIBS="$with_mysql_libs"
3397 AC_SEARCH_LIBS([mysql_get_server_version],
3399 [with_libmysql="yes"],
3400 [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
3402 CPPFLAGS="$SAVE_CPPFLAGS"
3406 if test "x$with_libmysql" = "xyes"
3408 BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
3409 BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
3410 AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
3411 AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
3413 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
3417 with_libmnl_cflags=""
3419 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
3421 echo "libmnl: withval = $withval"
3422 if test "x$withval" = "xyes"
3425 else if test "x$withval" = "xno"
3429 if test -d "$withval/include"
3431 with_libmnl_cflags="-I$withval/include"
3432 with_libmnl_libs="-L$withval/lib -lmnl"
3435 AC_MSG_ERROR("no such directory: $withval/include")
3440 if test "x$ac_system" = "xLinux"
3444 with_libmnl="no (Linux only library)"
3447 if test "x$with_libmnl" = "xyes"
3449 if $PKG_CONFIG --exists libmnl 2>/dev/null; then
3450 with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
3451 with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
3454 AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
3460 #include <sys/types.h>
3461 #include <asm/types.h>
3462 #include <sys/socket.h>
3463 #include <linux/netlink.h>
3464 #include <linux/rtnetlink.h>])
3465 AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
3467 #include <sys/types.h>
3468 #include <asm/types.h>
3469 #include <sys/socket.h>])
3471 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3474 #include <sys/types.h>
3475 #include <asm/types.h>
3476 #include <sys/socket.h>
3477 #include <linux/netlink.h>
3478 #include <linux/rtnetlink.h>
3481 int retval = TCA_STATS2;
3485 [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
3487 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3490 #include <sys/types.h>
3491 #include <asm/types.h>
3492 #include <sys/socket.h>
3493 #include <linux/netlink.h>
3494 #include <linux/rtnetlink.h>
3497 int retval = TCA_STATS;
3501 [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
3503 if test "x$with_libmnl" = "xyes"
3505 AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3506 [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3509 #include <linux/if_link.h>
3512 if test "x$with_libmnl" = "xyes"
3514 AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
3515 [with_libmnl="yes"],
3516 [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3517 [$with_libmnl_libs])
3519 if test "x$with_libmnl" = "xyes"
3521 AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
3522 BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3523 BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3524 AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
3525 AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
3527 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
3530 # --with-libnetapp {{{
3531 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3532 AC_ARG_VAR([LIBNETAPP_LDFLAGS], [Linker flags required to build with libnetapp])
3533 AC_ARG_VAR([LIBNETAPP_LIBS], [Other libraries required to link against libnetapp])
3534 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
3535 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
3536 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
3537 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3539 if test -d "$withval"
3541 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3542 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3543 with_libnetapp="yes"
3545 with_libnetapp="$withval"
3549 with_libnetapp="yes"
3552 SAVE_CPPFLAGS="$CPPFLAGS"
3553 SAVE_LDFLAGS="$LDFLAGS"
3554 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3555 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3557 if test "x$with_libnetapp" = "xyes"
3559 if test "x$LIBNETAPP_CPPFLAGS" != "x"
3561 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
3563 AC_CHECK_HEADERS(netapp_api.h,
3564 [with_libnetapp="yes"],
3565 [with_libnetapp="no (netapp_api.h not found)"])
3568 if test "x$with_libnetapp" = "xyes"
3570 if test "x$LIBNETAPP_LDFLAGS" != "x"
3572 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
3575 if test "x$LIBNETAPP_LIBS" = "x"
3577 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3579 AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
3581 AC_CHECK_LIB(netapp, na_server_invoke_elem,
3582 [with_libnetapp="yes"],
3583 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3585 LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3588 CPPFLAGS="$SAVE_CPPFLAGS"
3589 LDFLAGS="$SAVE_LDFLAGS"
3591 if test "x$with_libnetapp" = "xyes"
3593 AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
3596 AC_SUBST(LIBNETAPP_CPPFLAGS)
3597 AC_SUBST(LIBNETAPP_LDFLAGS)
3598 AC_SUBST(LIBNETAPP_LIBS)
3599 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
3602 # --with-libnetsnmp {{{
3603 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3605 if test "x$withval" = "xno"
3607 with_libnetsnmp="no"
3608 else if test "x$withval" = "xyes"
3610 with_libnetsnmp="yes"
3612 with_libnetsnmp_cppflags="-I$withval/include"
3613 with_libnetsnmp_ldflags="-I$withval/lib"
3614 with_libnetsnmp="yes"
3617 [with_libnetsnmp="yes"])
3618 if test "x$with_libnetsnmp" = "xyes"
3620 SAVE_CPPFLAGS="$CPPFLAGS"
3621 CPPFLAGS="$CPPFLAGS $with_libnetsnmp_cppflags"
3623 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3625 CPPFLAGS="$SAVE_CPPFLAGS"
3627 if test "x$with_libnetsnmp" = "xyes"
3629 SAVE_LDFLAGS="$LDFLAGS"
3630 LDFLAGS="$LDFLAGS $with_libnetsnmp_ldflags"
3632 AC_CHECK_LIB(netsnmp, init_snmp,
3633 [with_libnetsnmp="yes"],
3634 [with_libnetsnmp="no (libnetsnmp not found)"],
3637 LDFLAGS="$SAVE_LDFLAGS"
3639 if test "x$with_libnetsnmp" = "xyes"
3641 BUILD_WITH_LIBNETSNMP_CPPFLAGS="$with_libnetsnmp_cppflags"
3642 BUILD_WITH_LIBNETSNMP_LDFLAGS="$with_libnetsnmp_ldflags"
3643 BUILD_WITH_LIBNETSNMP_LIBS="-lnetsnmp"
3645 AC_SUBST(BUILD_WITH_LIBNETSNMP_CPPFLAGS)
3646 AC_SUBST(BUILD_WITH_LIBNETSNMP_LDFLAGS)
3647 AC_SUBST(BUILD_WITH_LIBNETSNMP_LIBS)
3650 # --with-liboconfig {{{
3651 with_own_liboconfig="no"
3652 liboconfig_LDFLAGS="$LDFLAGS"
3653 liboconfig_CPPFLAGS="$CPPFLAGS"
3654 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3656 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3658 if test -d "$withval/lib"
3660 liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3662 if test -d "$withval/include"
3664 liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3667 if test "x$withval" = "xno"
3669 AC_MSG_ERROR("liboconfig is required")
3673 with_liboconfig="yes"
3676 save_LDFLAGS="$LDFLAGS"
3677 save_CPPFLAGS="$CPPFLAGS"
3678 LDFLAGS="$liboconfig_LDFLAGS"
3679 CPPFLAGS="$liboconfig_CPPFLAGS"
3680 AC_CHECK_LIB(oconfig, oconfig_parse_file,
3682 with_liboconfig="yes"
3683 with_own_liboconfig="no"
3686 with_liboconfig="yes"
3687 with_own_liboconfig="yes"
3688 LDFLAGS="$save_LDFLAGS"
3689 CPPFLAGS="$save_CPPFLAGS"
3692 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3693 if test "x$with_own_liboconfig" = "xyes"
3695 with_liboconfig="yes (shipped version)"
3699 # --with-liboping {{{
3700 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3702 if test "x$withval" = "xyes"
3705 else if test "x$withval" = "xno"
3710 LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3711 LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3714 [with_liboping="yes"])
3716 SAVE_CPPFLAGS="$CPPFLAGS"
3717 SAVE_LDFLAGS="$LDFLAGS"
3719 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3720 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3722 if test "x$with_liboping" = "xyes"
3724 if test "x$LIBOPING_CPPFLAGS" != "x"
3726 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3728 AC_CHECK_HEADERS(oping.h,
3729 [with_liboping="yes"],
3730 [with_liboping="no (oping.h not found)"])
3732 if test "x$with_liboping" = "xyes"
3734 if test "x$LIBOPING_LDFLAGS" != "x"
3736 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3738 AC_CHECK_LIB(oping, ping_construct,
3739 [with_liboping="yes"],
3740 [with_liboping="no (symbol 'ping_construct' not found)"])
3743 CPPFLAGS="$SAVE_CPPFLAGS"
3744 LDFLAGS="$SAVE_LDFLAGS"
3746 if test "x$with_liboping" = "xyes"
3748 BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3749 BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3750 AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3751 AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3753 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3757 with_oracle_cppflags=""
3759 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3761 if test "x$withval" = "xyes"
3763 if test "x$ORACLE_HOME" = "x"
3765 AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3768 else if test "x$withval" = "xno"
3773 ORACLE_HOME="$withval"
3777 if test "x$ORACLE_HOME" = "x"
3779 with_oracle="no (ORACLE_HOME is not set)"
3784 if test "x$ORACLE_HOME" != "x"
3786 with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3788 if test -e "$ORACLE_HOME/lib/ldflags"
3790 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3792 #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3793 with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3795 if test "x$with_oracle" = "xyes"
3797 SAVE_CPPFLAGS="$CPPFLAGS"
3798 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3800 AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3802 CPPFLAGS="$SAVE_CPPFLAGS"
3804 if test "x$with_oracle" = "xyes"
3806 SAVE_CPPFLAGS="$CPPFLAGS"
3808 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3809 LIBS="$LIBS $with_oracle_libs"
3811 AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3813 CPPFLAGS="$SAVE_CPPFLAGS"
3816 if test "x$with_oracle" = "xyes"
3818 BUILD_WITH_ORACLE_CPPFLAGS="$with_oracle_cppflags"
3819 BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3820 AC_SUBST(BUILD_WITH_ORACLE_CPPFLAGS)
3821 AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3825 # --with-libowcapi {{{
3826 with_libowcapi_cppflags=""
3827 with_libowcapi_ldflags=""
3828 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3830 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3832 with_libowcapi_cppflags="-I$withval/include"
3833 with_libowcapi_ldflags="-L$withval/lib"
3834 with_libowcapi="yes"
3836 with_libowcapi="$withval"
3840 with_libowcapi="yes"
3842 if test "x$with_libowcapi" = "xyes"
3844 SAVE_CPPFLAGS="$CPPFLAGS"
3845 CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
3847 AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3849 CPPFLAGS="$SAVE_CPPFLAGS"
3851 if test "x$with_libowcapi" = "xyes"
3853 SAVE_LDFLAGS="$LDFLAGS"
3854 SAVE_CPPFLAGS="$CPPFLAGS"
3855 LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
3856 CPPFLAGS="$with_libowcapi_cppflags"
3858 AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3860 LDFLAGS="$SAVE_LDFLAGS"
3861 CPPFLAGS="$SAVE_CPPFLAGS"
3863 if test "x$with_libowcapi" = "xyes"
3865 BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3866 BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
3867 BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
3868 AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3869 AC_SUBST(BUILD_WITH_LIBOWCAPI_LDFLAGS)
3870 AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3874 # --with-libpcap {{{
3875 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3877 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3879 LDFLAGS="$LDFLAGS -L$withval/lib"
3880 CPPFLAGS="$CPPFLAGS -I$withval/include"
3883 with_libpcap="$withval"
3889 if test "x$with_libpcap" = "xyes"
3891 AC_CHECK_LIB(pcap, pcap_open_live,
3893 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3894 ], [with_libpcap="no (libpcap not found)"])
3896 if test "x$with_libpcap" = "xyes"
3898 AC_CHECK_HEADERS(pcap.h,,
3899 [with_libpcap="no (pcap.h not found)"])
3901 if test "x$with_libpcap" = "xyes"
3903 AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3904 [c_cv_libpcap_have_pcap_error_iface_not_up],
3905 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3910 int val = PCAP_ERROR_IFACE_NOT_UP;
3914 [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3915 [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3917 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3919 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3921 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3924 # --with-libperl {{{
3925 perl_interpreter="perl"
3926 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3928 if test -f "$withval" && test -x "$withval"
3930 perl_interpreter="$withval"
3932 else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3934 LDFLAGS="$LDFLAGS -L$withval/lib"
3935 CPPFLAGS="$CPPFLAGS -I$withval/include"
3936 perl_interpreter="$withval/bin/perl"
3939 with_libperl="$withval"
3946 AC_MSG_CHECKING([for perl])
3947 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3948 if test -x "$perl_interpreter"
3950 AC_MSG_RESULT([yes ($perl_interpreter)])
3956 AC_SUBST(PERL, "$perl_interpreter")
3958 if test "x$with_libperl" = "xyes" \
3959 && test -n "$perl_interpreter"
3961 SAVE_CFLAGS="$CFLAGS"
3963 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3964 PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e perl_inc`
3965 PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3966 CFLAGS="$CFLAGS $PERL_CFLAGS"
3967 LIBS="$LIBS $PERL_LIBS"
3969 AC_CACHE_CHECK([for libperl],
3970 [c_cv_have_libperl],
3971 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3973 #define PERL_NO_GET_CONTEXT
3980 load_module (PERL_LOADMOD_NOIMPORT,
3981 newSVpv ("Collectd::Plugin::FooBar", 24),
3985 [c_cv_have_libperl="yes"],
3986 [c_cv_have_libperl="no"]
3990 if test "x$c_cv_have_libperl" = "xyes"
3992 AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3993 AC_SUBST(PERL_CFLAGS)
3999 CFLAGS="$SAVE_CFLAGS"
4001 else if test -z "$perl_interpreter"; then
4002 with_libperl="no (no perl interpreter found)"
4003 c_cv_have_libperl="no"
4005 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
4007 if test "x$with_libperl" = "xyes"
4009 SAVE_CFLAGS="$CFLAGS"
4011 CFLAGS="$CFLAGS $PERL_CFLAGS"
4012 LIBS="$LIBS $PERL_LIBS"
4014 AC_CACHE_CHECK([if perl supports ithreads],
4015 [c_cv_have_perl_ithreads],
4016 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4022 #if !defined(USE_ITHREADS)
4023 # error "Perl does not support ithreads!"
4024 #endif /* !defined(USE_ITHREADS) */
4028 [c_cv_have_perl_ithreads="yes"],
4029 [c_cv_have_perl_ithreads="no"]
4033 if test "x$c_cv_have_perl_ithreads" = "xyes"
4035 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
4038 CFLAGS="$SAVE_CFLAGS"
4042 if test "x$with_libperl" = "xyes"
4044 SAVE_CFLAGS="$CFLAGS"
4046 # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
4047 # (see issues #41 and #42)
4048 CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
4049 LIBS="$LIBS $PERL_LIBS"
4051 AC_CACHE_CHECK([for broken Perl_load_module()],
4052 [c_cv_have_broken_perl_load_module],
4053 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4055 #define PERL_NO_GET_CONTEXT
4062 load_module (PERL_LOADMOD_NOIMPORT,
4063 newSVpv ("Collectd::Plugin::FooBar", 24),
4067 [c_cv_have_broken_perl_load_module="no"],
4068 [c_cv_have_broken_perl_load_module="yes"]
4072 CFLAGS="$SAVE_CFLAGS"
4075 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
4076 test "x$c_cv_have_broken_perl_load_module" = "xyes")
4078 if test "x$with_libperl" = "xyes"
4080 SAVE_CFLAGS="$CFLAGS"
4082 CFLAGS="$CFLAGS $PERL_CFLAGS"
4083 LIBS="$LIBS $PERL_LIBS"
4086 [struct mgvtbl.svt_local],
4087 [have_struct_mgvtbl_svt_local="yes"],
4088 [have_struct_mgvtbl_svt_local="no"],
4095 if test "x$have_struct_mgvtbl_svt_local" = "xyes"
4097 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
4098 [Define if Perl's struct mgvtbl has member svt_local.])
4101 CFLAGS="$SAVE_CFLAGS"
4107 with_pg_config="pg_config"
4108 with_libpq_includedir=""
4109 with_libpq_libdir=""
4110 with_libpq_cppflags=""
4111 with_libpq_ldflags=""
4112 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
4115 if test "x$withval" = "xno"
4118 else if test "x$withval" = "xyes"
4122 if test -f "$withval" && test -x "$withval";
4124 with_pg_config="$withval"
4125 else if test -x "$withval/bin/pg_config"
4127 with_pg_config="$withval/bin/pg_config"
4135 if test "x$with_libpq" = "xyes"
4137 with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
4140 if test $pg_config_status -eq 0
4142 if test -n "$with_libpq_includedir"; then
4143 for dir in $with_libpq_includedir; do
4144 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
4148 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
4151 SAVE_CPPFLAGS="$CPPFLAGS"
4152 CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
4154 AC_CHECK_HEADERS(libpq-fe.h, [],
4155 [with_libpq="no (libpq-fe.h not found)"], [])
4157 CPPFLAGS="$SAVE_CPPFLAGS"
4159 if test "x$with_libpq" = "xyes"
4161 with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
4164 if test $pg_config_status -eq 0
4166 if test -n "$with_libpq_libdir"; then
4167 for dir in $with_libpq_libdir; do
4168 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
4172 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
4175 SAVE_LDFLAGS="$LDFLAGS"
4176 LDFLAGS="$LDFLAGS $with_libpq_ldflags"
4178 AC_CHECK_LIB(pq, PQconnectdb,
4180 [with_libpq="no (symbol 'PQconnectdb' not found)"])
4182 AC_CHECK_LIB(pq, PQserverVersion,
4184 [with_libpq="no (symbol 'PQserverVersion' not found)"])
4186 LDFLAGS="$SAVE_LDFLAGS"
4188 if test "x$with_libpq" = "xyes"
4190 BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
4191 BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
4192 AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
4193 AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
4195 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
4198 # --with-libpqos {{{
4199 with_libpqos_cppflags=""
4200 with_libpqos_ldflags=""
4201 AC_ARG_WITH(libpqos, [AS_HELP_STRING([--with-libpqos@<:@=PREFIX@:>@], [Path to libpqos.])],
4203 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4205 with_libpqos_cppflags="-I$withval/include"
4206 with_libpqos_ldflags="-L$withval/lib"
4209 with_libpqos="$withval"
4215 if test "x$with_libpqos" = "xyes"
4217 SAVE_CPPFLAGS="$CPPFLAGS"
4218 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4220 AC_CHECK_HEADERS(pqos.h, [with_libpqos="yes"], [with_libpqos="no (pqos.h not found)"])
4222 CPPFLAGS="$SAVE_CPPFLAGS"
4224 if test "x$with_libpqos" = "xyes"
4226 SAVE_CPPFLAGS="$CPPFLAGS"
4227 SAVE_LDFLAGS="$LDFLAGS"
4228 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4229 LDFLAGS="$LDFLAGS $with_libpqos_ldflags"
4231 AC_CHECK_LIB(pqos, pqos_init, [with_libpqos="yes"], [with_libpqos="no (Can't find libpqos)"])
4233 CPPFLAGS="$SAVE_CPPFLAGS"
4234 LDFLAGS="$SAVE_LDFLAGS"
4236 if test "x$with_libpqos" = "xyes"
4238 SAVE_CPPFLAGS="$CPPFLAGS"
4239 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4240 AC_RUN_IFELSE([AC_LANG_PROGRAM(
4241 [[#include <pqos.h>]],
4242 [[return !(PQOS_VERSION >= 106)]])],
4243 [with_libpqos="yes"], [with_libpqos="no (pqos library version 1.06 or higher is required)"])
4244 CPPFLAGS="$SAVE_CPPFLAGS"
4246 if test "x$with_libpqos" = "xyes"
4248 BUILD_WITH_LIBPQOS_CPPFLAGS="$with_libpqos_cppflags"
4249 BUILD_WITH_LIBPQOS_LDFLAGS="$with_libpqos_ldflags"
4250 BUILD_WITH_LIBPQOS_LIBS="-lpqos"
4251 AC_SUBST(BUILD_WITH_LIBPQOS_CPPFLAGS)
4252 AC_SUBST(BUILD_WITH_LIBPQOS_LDFLAGS)
4253 AC_SUBST(BUILD_WITH_LIBPQOS_LIBS)
4257 # --with-libprotobuf {{{
4258 with_libprotobuf_cppflags=""
4259 with_libprotobuf_ldflags=""
4260 AC_ARG_WITH([libprotobuf], [AS_HELP_STRING([--with-libprotobuf@<:@=PREFIX@:>@], [Path to libprotobuf.])],
4262 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4264 with_libprotobuf_cppflags="-I$withval/include"
4265 with_libprotobuf_ldflags="-L$withval/lib"
4266 with_libprotobuf="yes"
4268 if test "x$withval" = "xno"
4270 with_libprotobuf="no (disabled on command line)"
4275 if test "x$withval" = "xyes"
4277 PKG_CHECK_MODULES([PROTOBUF], [protobuf],
4278 [with_libprotobuf="yes"],
4279 [with_libprotobuf="no (pkg-config could not find libprotobuf)"]
4283 if test "x$withval" != "xno"
4285 SAVE_LDFLAGS="$LDFLAGS"
4287 LDFLAGS="$with_libprotobuf_ldflags"
4288 LIBS="$PROTOBUF_LIBS $LIBS"
4290 AC_CHECK_LIB([protobuf], [main],
4292 SAVE_CPPFLAGS="$CPPFLAGS"
4293 CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4294 if test "x$PROTOBUF_LIBS" = "x"
4296 PROTOBUF_LIBS="-lprotobuf"
4298 AC_CHECK_HEADERS([google/protobuf/util/time_util.h],
4299 [with_libprotobuf="yes"],
4300 [with_libprotobuf="no (<google/protobuf/util/time_util.h> not found)"]
4302 CPPFLAGS="$SAVE_CPPFLAGS"
4304 [with_libprotobuf="no (libprotobuf not found)"]
4307 LDFLAGS="$SAVE_LDFLAGS"
4310 BUILD_WITH_LIBPROTOBUF_CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4311 BUILD_WITH_LIBPROTOBUF_LDFLAGS="$with_libprotobuf_ldflags"
4312 BUILD_WITH_LIBPROTOBUF_LIBS="$PROTOBUF_LIBS"
4313 AC_SUBST([BUILD_WITH_LIBPROTOBUF_CPPFLAGS])
4314 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LDFLAGS])
4315 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LIBS])
4318 # --with-libprotobuf-c {{{
4319 with_libprotobuf_c_cppflags=""
4320 with_libprotobuf_c_ldflags=""
4321 AC_ARG_WITH([libprotobuf-c], [AS_HELP_STRING([--with-libprotobuf-c@<:@=PREFIX@:>@], [Path to libprotobuf-c.])],
4323 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4325 with_libprotobuf_c_cppflags="-I$withval/include"
4326 with_libprotobuf_c_ldflags="-L$withval/lib"
4327 with_libprotobuf_c="yes"
4329 if test "x$withval" = "xno"
4331 with_libprotobuf_c="no (disabled on command line)"
4336 if test "x$withval" = "xyes"
4338 PKG_CHECK_MODULES([PROTOBUF_C], [libprotobuf-c],
4339 [with_libprotobuf_c="yes"],
4340 [with_libprotobuf_c="no (pkg-config could not find libprotobuf-c)"]
4344 if test "x$withval" != "xno"
4346 SAVE_LDFLAGS="$LDFLAGS"
4348 LDFLAGS="$with_libprotobuf_c_ldflags"
4349 LIBS="$PROTOBUF_C_LIBS $LIBS"
4350 AC_CHECK_LIB([protobuf-c], [protobuf_c_message_pack],
4352 SAVE_CPPFLAGS="$CPPFLAGS"
4353 CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4354 if test "x$PROTOBUF_C_LIBS" = "x"
4356 PROTOBUF_C_LIBS="-lprotobuf-c"
4358 AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
4360 with_libprotobuf_c="yes"
4363 [with_libprotobuf_c="no (<protobuf-c.h> not found)"]
4365 CPPFLAGS="$SAVE_CPPFLAGS"
4367 [with_libprotobuf_c="no (libprotobuf-c not found)"]
4369 LDFLAGS="$SAVE_LDFLAGS"
4372 BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4373 BUILD_WITH_LIBPROTOBUF_C_LDFLAGS="$with_libprotobuf_c_ldflags"
4374 BUILD_WITH_LIBPROTOBUF_C_LIBS="$PROTOBUF_C_LIBS"
4375 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS])
4376 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LDFLAGS])
4377 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LIBS])
4380 # --with-libpython {{{
4381 AC_ARG_VAR([LIBPYTHON_CPPFLAGS], [Preprocessor flags for libpython])
4382 AC_ARG_VAR([LIBPYTHON_LDFLAGS], [Linker flags for libpython])
4383 AC_ARG_VAR([LIBPYTHON_LIBS], [Libraries for libpython])
4385 AC_ARG_WITH([libpython],
4386 [AS_HELP_STRING([--with-libpython],
4387 [if we should build with libpython @<:@default=yes@:>@])
4389 [with_libpython="$withval"],
4390 [with_libpython="check"]
4392 if test "$with_libpython" != "no"; then
4393 if test "$LIBPYTHON_CPPFLAGS" = "" && test "$LIBPYTHON_LDFLAGS" = ""; then
4394 AC_ARG_VAR([PYTHON_CONFIG], [path to python-config])
4395 AC_PATH_PROGS([PYTHON_CONFIG],
4396 [python3-config python2-config python-config]
4398 if test "$PYTHON_CONFIG" = ""; then
4399 if test "$with_libpython" = "yes"; then
4400 AC_MSG_ERROR([Unable to find python-config])
4407 if test "$PYTHON_CONFIG" != ""; then
4408 LIBPYTHON_CPPFLAGS="`${PYTHON_CONFIG} --includes`"
4409 if test $? -ne 0; then
4412 LIBPYTHON_LDFLAGS="`${PYTHON_CONFIG} --ldflags`"
4413 if test $? -ne 0; then
4416 LIBPYTHON_LIBS="`${PYTHON_CONFIG} --libs`"
4417 if test $? -ne 0; then
4422 if test "$with_libpython" != "xno"; then
4423 SAVE_CPPFLAGS="$CPPFLAGS"
4424 SAVE_LDFLAGS="$LDFLAGS"
4426 CPPFLAGS="$LIBPYTHON_CPPFLAGS $CPPFLAGS"
4427 LDFLAGS="$LIBPYTHON_LDFLAGS $LDFLAGS"
4428 LIBS="$LIBPYTHON_LIBS $LIBS"
4429 AC_CHECK_HEADERS([Python.h],
4431 AC_MSG_CHECKING([for libpython])
4432 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4433 [[#include <Python.h>]],
4434 [[Py_Initialize();]])
4436 [with_libpython="yes"],
4437 [with_libpython="no"]
4439 AC_MSG_RESULT([$with_libpython])
4441 [with_libpython="no"]
4443 CPPFLAGS="$SAVE_CPPFLAGS"
4444 LDFLAGS="$SAVE_LDFLAGS"
4447 # }}} --with-libpython
4449 # --with-librabbitmq {{{
4450 with_librabbitmq_cppflags=""
4451 with_librabbitmq_ldflags=""
4452 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
4454 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4456 with_librabbitmq_cppflags="-I$withval/include"
4457 with_librabbitmq_ldflags="-L$withval/lib"
4458 with_librabbitmq="yes"
4460 with_librabbitmq="$withval"
4464 with_librabbitmq="yes"
4466 SAVE_CPPFLAGS="$CPPFLAGS"
4467 SAVE_LDFLAGS="$LDFLAGS"
4468 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4469 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4470 if test "x$with_librabbitmq" = "xyes"
4472 AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
4474 if test "x$with_librabbitmq" = "xyes"
4476 # librabbitmq up to version 0.9.1 provides "library_errno", later
4477 # versions use "library_error". The library does not provide a version
4478 # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
4479 AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
4482 # include <stdlib.h>
4488 # include <stdint.h>
4491 # include <inttypes.h>
4496 if test "x$with_librabbitmq" = "xyes"
4498 AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
4500 if test "x$with_librabbitmq" = "xyes"
4502 BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
4503 BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
4504 BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
4505 AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
4506 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
4507 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
4508 AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
4510 CPPFLAGS="$SAVE_CPPFLAGS"
4511 LDFLAGS="$SAVE_LDFLAGS"
4512 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
4514 with_amqp_tcp_socket="no"
4515 if test "x$with_librabbitmq" = "xyes"
4517 SAVE_CPPFLAGS="$CPPFLAGS"
4518 SAVE_LDFLAGS="$LDFLAGS"
4520 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4521 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4524 AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
4525 AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
4526 if test "x$with_amqp_tcp_socket" = "xyes"
4528 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
4529 [Define if librabbitmq provides the new TCP socket interface.])
4532 AC_CHECK_DECLS(amqp_socket_close,
4533 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
4536 #ifdef HAVE_AMQP_TCP_SOCKET_H
4537 # include <amqp_tcp_socket.h>
4539 #ifdef HAVE_AMQP_SOCKET_H
4540 # include <amqp_socket.h>
4544 CPPFLAGS="$SAVE_CPPFLAGS"
4545 LDFLAGS="$SAVE_LDFLAGS"
4550 # --with-librdkafka {{{
4551 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
4553 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4555 with_librdkafka_cppflags="-I$withval/include"
4556 with_librdkafka_ldflags="-L$withval/lib"
4557 with_librdkafka_rpath="$withval/lib"
4558 with_librdkafka="yes"
4560 with_librdkafka="$withval"
4564 with_librdkafka="yes"
4566 SAVE_CPPFLAGS="$CPPFLAGS"
4567 SAVE_LDFLAGS="$LDFLAGS"
4569 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
4570 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
4572 if test "x$with_librdkafka" = "xyes"
4574 AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
4577 if test "x$with_librdkafka" = "xyes"
4579 AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
4580 AC_CHECK_LIB(rdkafka, rd_kafka_conf_set_log_cb, [with_librdkafka_log_cb="yes"], [with_librdkafka_log_cb="no"])
4581 AC_CHECK_LIB(rdkafka, rd_kafka_set_logger, [with_librdkafka_logger="yes"], [with_librdkafka_logger="no"])
4583 if test "x$with_librdkafka" = "xyes"
4585 BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
4586 BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
4587 if test "x$with_librdkafka_rpath" != "x"
4589 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
4591 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
4593 AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
4594 AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
4595 AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
4596 AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
4597 if test "x$with_librdkafka_log_cb" = "xyes"
4599 AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
4600 else if test "x$with_librdkafka_logger" = "xyes"
4602 AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
4605 CPPFLAGS="$SAVE_CPPFLAGS"
4606 LDFLAGS="$SAVE_LDFLAGS"
4607 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
4611 # --with-librouteros {{{
4612 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
4614 if test "x$withval" = "xyes"
4616 with_librouteros="yes"
4617 else if test "x$withval" = "xno"
4619 with_librouteros="no"
4621 with_librouteros="yes"
4622 LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
4623 LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
4626 [with_librouteros="yes"])
4628 SAVE_CPPFLAGS="$CPPFLAGS"
4629 SAVE_LDFLAGS="$LDFLAGS"
4631 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
4632 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
4634 if test "x$with_librouteros" = "xyes"
4636 if test "x$LIBROUTEROS_CPPFLAGS" != "x"
4638 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
4640 AC_CHECK_HEADERS(routeros_api.h,
4641 [with_librouteros="yes"],
4642 [with_librouteros="no (routeros_api.h not found)"])
4644 if test "x$with_librouteros" = "xyes"
4646 if test "x$LIBROUTEROS_LDFLAGS" != "x"
4648 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
4650 AC_CHECK_LIB(routeros, ros_interface,
4651 [with_librouteros="yes"],
4652 [with_librouteros="no (symbol 'ros_interface' not found)"])
4655 CPPFLAGS="$SAVE_CPPFLAGS"
4656 LDFLAGS="$SAVE_LDFLAGS"
4658 if test "x$with_librouteros" = "xyes"
4660 BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
4661 BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
4662 AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
4663 AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
4665 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
4671 librrd_threadsafe="no"
4672 librrd_rrdc_update="no"
4674 [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4676 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4678 librrd_cflags="-I$withval/include"
4679 librrd_ldflags="-L$withval/lib"
4682 with_librrd="$withval"
4688 if test "x$with_librrd" = "xyes"
4690 SAVE_LDFLAGS="$LDFLAGS"
4691 LDFLAGS="$LDFLAGS $librrd_ldflags"
4692 PKG_CHECK_MODULES([RRD], [librrd >= 1.6.0],
4694 AC_CHECK_LIB([rrd], [rrd_update_r],
4695 [librrd_threadsafe="yes"],
4698 AC_CHECK_LIB([rrd], [rrdc_update],
4699 [librrd_rrdc_update="yes"],
4704 LDFLAGS="$SAVE_LDFLAGS"
4706 SAVE_CPPFLAGS="$CPPFLAGS"
4707 CPPFLAGS="$CPPFLAGS $RRD_CFLAGS $librrd_cflags"
4709 AC_CHECK_HEADERS([rrd.h],, [with_librrd="no (rrd.h not found)"])
4711 CPPFLAGS="$SAVE_CPPFLAGS"
4714 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4716 SAVE_LDFLAGS="$LDFLAGS"
4717 LDFLAGS="$LDFLAGS $librrd_ldflags"
4719 AC_CHECK_LIB([rrd_th], [rrd_update_r],
4721 librrd_ldflags="$librrd_ldflags -lrrd_th"
4722 librrd_threadsafe="yes"
4723 AC_CHECK_LIB([rrd_th], [rrdc_update],
4724 [librrd_rrdc_update="yes"],
4730 LDFLAGS="$SAVE_LDFLAGS"
4733 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4735 SAVE_LDFLAGS="$LDFLAGS"
4736 LDFLAGS="$LDFLAGS $librrd_ldflags"
4738 AC_CHECK_LIB([rrd], [rrd_update],
4740 librrd_ldflags="$librrd_ldflags -lrrd"
4741 AC_CHECK_LIB([rrd], [rrdc_update],
4742 [librrd_rrdc_update="yes"],
4746 [with_librrd="no (symbol 'rrd_update' not found)"]
4748 LDFLAGS="$SAVE_LDFLAGS"
4751 if test "x$with_librrd" = "xyes"
4753 BUILD_WITH_LIBRRD_CFLAGS="$RRD_CFLAGS $librrd_cflags"
4754 BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4755 BUILD_WITH_LIBRRD_LIBS="$RRD_LIBS"
4756 AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
4757 AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
4758 AC_SUBST(BUILD_WITH_LIBRRD_LIBS)
4760 if test "x$librrd_threadsafe" = "xyes"
4762 AC_DEFINE([HAVE_THREADSAFE_LIBRRD], [1],
4763 [Define to 1 if the rrd library is thread-safe]
4768 # --with-libsensors {{{
4769 with_sensors_cflags=""
4770 with_sensors_ldflags=""
4771 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4773 if test "x$withval" = "xno"
4775 with_libsensors="no"
4777 with_libsensors="yes"
4778 if test "x$withval" != "xyes"
4780 with_sensors_cflags="-I$withval/include"
4781 with_sensors_ldflags="-L$withval/lib"
4782 with_libsensors="yes"
4787 if test "x$ac_system" = "xLinux"
4789 with_libsensors="yes"
4791 with_libsensors="no (Linux only library)"
4794 if test "x$with_libsensors" = "xyes"
4796 SAVE_CPPFLAGS="$CPPFLAGS"
4797 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4799 AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
4801 CPPFLAGS="$SAVE_CPPFLAGS"
4803 if test "x$with_libsensors" = "xyes"
4805 SAVE_CPPFLAGS="$CPPFLAGS"
4806 SAVE_LDFLAGS="$LDFLAGS"
4807 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4808 LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4810 AC_CHECK_LIB(sensors, sensors_init,
4812 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
4814 [with_libsensors="no (libsensors not found)"])
4816 CPPFLAGS="$SAVE_CPPFLAGS"
4817 LDFLAGS="$SAVE_LDFLAGS"
4819 if test "x$with_libsensors" = "xyes"
4821 BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
4822 BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4823 AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
4824 AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
4826 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
4830 AC_SUBST([LIBSIGROK_CFLAGS])
4831 AC_SUBST([LIBSIGROK_LIBS])
4832 PKG_CHECK_MODULES([LIBSIGROK], [libsigrok < 0.4],
4833 [with_libsigrok="yes"],
4834 [with_libsigrok="no (pkg-config could not find libsigrok)"]
4838 # --with-libstatgrab {{{
4839 with_libstatgrab_cflags=""
4840 with_libstatgrab_ldflags=""
4841 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4843 if test "x$withval" != "xno" \
4844 && test "x$withval" != "xyes"
4846 with_libstatgrab_cflags="-I$withval/include"
4847 with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4848 with_libstatgrab="yes"
4849 with_libstatgrab_pkg_config="no"
4851 with_libstatgrab="$withval"
4852 with_libstatgrab_pkg_config="yes"
4856 with_libstatgrab="yes"
4857 with_libstatgrab_pkg_config="yes"
4860 if test "x$with_libstatgrab" = "xyes" \
4861 && test "x$with_libstatgrab_pkg_config" = "xyes"
4863 AC_MSG_CHECKING([pkg-config for libstatgrab])
4865 $PKG_CONFIG --exists libstatgrab 2>/dev/null
4868 with_libstatgrab_pkg_config="no"
4869 with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4870 temp_result="not found"
4872 AC_MSG_RESULT([$temp_result])
4875 if test "x$with_libstatgrab" = "xyes" \
4876 && test "x$with_libstatgrab_pkg_config" = "xyes" \
4877 && test "x$with_libstatgrab_cflags" = "x"
4879 AC_MSG_CHECKING([for libstatgrab CFLAGS])
4880 temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4883 with_libstatgrab_cflags="$temp_result"
4885 with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4886 temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4888 AC_MSG_RESULT([$temp_result])
4891 if test "x$with_libstatgrab" = "xyes" \
4892 && test "x$with_libstatgrab_pkg_config" = "xyes" \
4893 && test "x$with_libstatgrab_ldflags" = "x"
4895 AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4896 temp_result="`$PKG_CONFIG --libs libstatgrab`"
4899 with_libstatgrab_ldflags="$temp_result"
4901 with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4902 temp_result="$PKG_CONFIG --libs libstatgrab failed"
4904 AC_MSG_RESULT([$temp_result])
4907 if test "x$with_libstatgrab" = "xyes"
4909 SAVE_CPPFLAGS="$CPPFLAGS"
4910 CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4912 AC_CHECK_HEADERS(statgrab.h,
4913 [with_libstatgrab="yes"],
4914 [with_libstatgrab="no (statgrab.h not found)"])
4916 CPPFLAGS="$SAVE_CPPFLAGS"
4919 if test "x$with_libstatgrab" = "xyes"
4921 SAVE_CFLAGS="$CFLAGS"
4922 SAVE_LDFLAGS="$LDFLAGS"
4924 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4925 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4927 AC_CHECK_LIB(statgrab, sg_init,
4928 [with_libstatgrab="yes"],
4929 [with_libstatgrab="no (symbol sg_init not found)"])
4931 CFLAGS="$SAVE_CFLAGS"
4932 LDFLAGS="$SAVE_LDFLAGS"
4935 if test "x$with_libstatgrab" = "xyes"
4937 SAVE_CFLAGS="$CFLAGS"
4938 SAVE_LDFLAGS="$LDFLAGS"
4941 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4942 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4943 LIBS="-lstatgrab $LIBS"
4945 AC_CACHE_CHECK([if libstatgrab >= 0.90],
4946 [c_cv_have_libstatgrab_0_90],
4947 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4950 #include <statgrab.h>
4953 if (sg_init()) return 0;
4956 [c_cv_have_libstatgrab_0_90="no"],
4957 [c_cv_have_libstatgrab_0_90="yes"]
4961 CFLAGS="$SAVE_CFLAGS"
4962 LDFLAGS="$SAVE_LDFLAGS"
4966 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
4967 if test "x$with_libstatgrab" = "xyes"
4969 AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
4970 BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4971 BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
4972 AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
4973 AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
4974 if test "x$c_cv_have_libstatgrab_0_90" = "xyes"
4976 AC_DEFINE(HAVE_LIBSTATGRAB_0_90, 1, [Define to 1 if libstatgrab version >= 0.90])
4981 # --with-libtokyotyrant {{{
4982 with_libtokyotyrant_cppflags=""
4983 with_libtokyotyrant_ldflags=""
4984 with_libtokyotyrant_libs=""
4985 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4987 if test "x$withval" = "xno"
4989 with_libtokyotyrant="no"
4990 else if test "x$withval" = "xyes"
4992 with_libtokyotyrant="yes"
4994 with_libtokyotyrant_cppflags="-I$withval/include"
4995 with_libtokyotyrant_ldflags="-L$withval/include"
4996 with_libtokyotyrant_libs="-ltokyotyrant"
4997 with_libtokyotyrant="yes"
5001 with_libtokyotyrant="yes"
5004 if test "x$with_libtokyotyrant" = "xyes"
5006 if $PKG_CONFIG --exists tokyotyrant
5008 with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
5009 with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
5010 with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
5014 SAVE_CPPFLAGS="$CPPFLAGS"
5015 SAVE_LDFLAGS="$LDFLAGS"
5016 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
5017 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
5019 if test "x$with_libtokyotyrant" = "xyes"
5021 AC_CHECK_HEADERS(tcrdb.h,
5023 AC_DEFINE(HAVE_TCRDB_H, 1,
5024 [Define to 1 if you have the <tcrdb.h> header file.])
5025 ], [with_libtokyotyrant="no (tcrdb.h not found)"])
5028 if test "x$with_libtokyotyrant" = "xyes"
5030 AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
5032 AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
5033 [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
5035 [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
5036 [$with_libtokyotyrant_libs])
5039 CPPFLAGS="$SAVE_CPPFLAGS"
5040 LDFLAGS="$SAVE_LDFLAGS"
5042 if test "x$with_libtokyotyrant" = "xyes"
5044 BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
5045 BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
5046 BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
5047 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
5048 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
5049 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
5051 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
5054 # --with-libudev {{{
5055 with_libudev_cflags=""
5056 with_libudev_ldflags=""
5057 AC_ARG_WITH(libudev, [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
5059 if test "x$withval" = "xno"
5064 if test "x$withval" != "xyes"
5066 with_libudev_cflags="-I$withval/include"
5067 with_libudev_ldflags="-L$withval/lib"
5073 if test "x$ac_system" = "xLinux"
5077 with_libudev="no (Linux only library)"
5080 if test "x$with_libudev" = "xyes"
5082 SAVE_CPPFLAGS="$CPPFLAGS"
5083 CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
5085 AC_CHECK_HEADERS(libudev.h, [], [with_libudev="no (libudev.h not found)"])
5087 CPPFLAGS="$SAVE_CPPFLAGS"
5089 if test "x$with_libudev" = "xyes"
5091 SAVE_CPPFLAGS="$CPPFLAGS"
5092 SAVE_LDFLAGS="$LDFLAGS"
5093 CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
5094 LDFLAGS="$LDFLAGS $with_libudev_ldflags"
5096 AC_CHECK_LIB(udev, udev_new,
5098 AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if you have the udev library (-ludev).])
5100 [with_libudev="no (libudev not found)"])
5102 CPPFLAGS="$SAVE_CPPFLAGS"
5103 LDFLAGS="$SAVE_LDFLAGS"
5105 if test "x$with_libudev" = "xyes"
5107 BUILD_WITH_LIBUDEV_CFLAGS="$with_libudev_cflags"
5108 BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
5109 BUILD_WITH_LIBUDEV_LIBS="-ludev"
5110 AC_SUBST(BUILD_WITH_LIBUDEV_CFLAGS)
5111 AC_SUBST(BUILD_WITH_LIBUDEV_LDFLAGS)
5112 AC_SUBST(BUILD_WITH_LIBUDEV_LIBS)
5114 AM_CONDITIONAL(BUILD_WITH_LIBUDEV, test "x$with_libudev" = "xyes")
5117 # --with-libupsclient {{{
5118 with_libupsclient_config=""
5119 with_libupsclient_cflags=""
5120 with_libupsclient_libs=""
5121 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
5123 if test "x$withval" = "xno"
5125 with_libupsclient="no"
5126 else if test "x$withval" = "xyes"
5128 with_libupsclient="use_pkgconfig"
5130 if test -x "$withval"
5132 with_libupsclient_config="$withval"
5133 with_libupsclient="use_libupsclient_config"
5134 else if test -x "$withval/bin/libupsclient-config"
5136 with_libupsclient_config="$withval/bin/libupsclient-config"
5137 with_libupsclient="use_libupsclient_config"
5139 AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
5140 with_libupsclient_cflags="-I$withval/include"
5141 with_libupsclient_libs="-L$withval/lib -lupsclient"
5142 with_libupsclient="yes"
5146 [with_libupsclient="use_pkgconfig"])
5148 # configure using libupsclient-config
5149 if test "x$with_libupsclient" = "xuse_libupsclient_config"
5151 AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
5152 with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
5155 with_libupsclient="no ($with_libupsclient_config failed)"
5157 with_libupsclient_libs="`$with_libupsclient_config --libs`"
5160 with_libupsclient="no ($with_libupsclient_config failed)"
5163 if test "x$with_libupsclient" = "xuse_libupsclient_config"
5165 with_libupsclient="yes"
5168 # configure using pkg-config
5169 if test "x$with_libupsclient" = "xuse_pkgconfig"
5171 AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
5172 $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
5175 with_libupsclient="no (pkg-config doesn't know libupsclient)"
5178 if test "x$with_libupsclient" = "xuse_pkgconfig"
5180 with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
5183 with_libupsclient="no ($PKG_CONFIG failed)"
5185 with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
5188 with_libupsclient="no ($PKG_CONFIG failed)"
5191 if test "x$with_libupsclient" = "xuse_pkgconfig"
5193 with_libupsclient="yes"
5196 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
5197 # the actual checks.
5198 if test "x$with_libupsclient" = "xyes"
5200 SAVE_CPPFLAGS="$CPPFLAGS"
5201 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
5203 AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
5205 CPPFLAGS="$SAVE_CPPFLAGS"
5207 if test "x$with_libupsclient" = "xyes"
5209 SAVE_CPPFLAGS="$CPPFLAGS"
5210 SAVE_LDFLAGS="$LDFLAGS"
5212 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
5213 LDFLAGS="$LDFLAGS $with_libupsclient_libs"
5215 AC_CHECK_LIB(upsclient, upscli_connect,
5216 [with_libupsclient="yes"],
5217 [with_libupsclient="no (symbol upscli_connect not found)"])
5219 CPPFLAGS="$SAVE_CPPFLAGS"
5220 LDFLAGS="$SAVE_LDFLAGS"
5222 if test "x$with_libupsclient" = "xyes"
5224 SAVE_CPPFLAGS="$CPPFLAGS"
5225 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
5227 AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
5228 [#include <stdlib.h>
5230 #include <upsclient.h>])
5232 CPPFLAGS="$SAVE_CPPFLAGS"
5234 if test "x$with_libupsclient" = "xyes"
5236 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
5237 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
5238 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
5239 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
5243 # --with-libxenctrl {{{
5244 with_libxenctrl_cppflags=""
5245 with_libxenctrl_ldflags=""
5246 AC_ARG_WITH(libxenctrl, [AS_HELP_STRING([--with-libxenctrl@<:@=PREFIX@:>@], [Path to libxenctrl.])],
5248 if test "x$withval" != "xno" && test "x$withval" != "xyes"
5250 with_libxenctrl_cppflags="-I$withval/include"
5251 with_libxenctrl_ldflags="-L$withval/lib"
5252 with_libxenctrl="yes"
5254 with_libxenctrl="$withval"
5258 with_libxenctrl="yes"
5260 if test "x$with_libxenctrl" = "xyes"
5262 SAVE_CPPFLAGS="$CPPFLAGS"
5263 CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
5265 AC_CHECK_HEADERS(xenctrl.h, [with_libxenctrl="yes"], [with_libxenctrl="no (xenctrl.h not found)"])
5267 CPPFLAGS="$SAVE_CPPFLAGS"
5269 if test "x$with_libxenctrl" = "xyes"
5271 SAVE_CPPFLAGS="$CPPFLAGS"
5272 SAVE_LDFLAGS="$LDFLAGS"
5273 CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
5274 LDFLAGS="$LDFLAGS $with_libxenctrl_ldflags"
5276 #Xen versions older than 3.4 has no xc_getcpuinfo()
5277 AC_CHECK_LIB(xenctrl, xc_getcpuinfo, [with_libxenctrl="yes"], [with_libxenctrl="no (symbol 'xc_getcpuinfo' not found)"], [])
5279 CPPFLAGS="$SAVE_CPPFLAGS"
5280 LDFLAGS="$SAVE_LDFLAGS"
5281 LIBXENCTL_CPPFLAGS="$with_libxenctl_cppflags"
5282 LIBXENCTL_LDFLAGS="$with_libxenctl_ldflags"
5283 AC_SUBST(LIBXENCTL_CPPFLAGS)
5284 AC_SUBST(LIBXENCTL_LDFLAGS)
5288 # --with-libxmms {{{
5289 with_xmms_config="xmms-config"
5292 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
5294 if test "x$withval" != "xno" \
5295 && test "x$withval" != "xyes"
5297 if test -f "$withval" && test -x "$withval";
5299 with_xmms_config="$withval"
5300 else if test -x "$withval/bin/xmms-config"
5302 with_xmms_config="$withval/bin/xmms-config"
5305 else if test "x$withval" = "xno"
5315 if test "x$with_libxmms" = "xyes"
5317 with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
5318 xmms_config_status=$?
5320 if test $xmms_config_status -ne 0
5325 if test "x$with_libxmms" = "xyes"
5327 with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
5328 xmms_config_status=$?
5330 if test $xmms_config_status -ne 0
5335 if test "x$with_libxmms" = "xyes"
5337 AC_CHECK_LIB(xmms, xmms_remote_get_info,
5339 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
5340 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
5341 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
5342 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
5349 with_libxmms_numeric=0
5350 if test "x$with_libxmms" = "xyes"
5352 with_libxmms_numeric=1
5354 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
5355 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
5358 # --with-libyajl {{{
5359 with_libyajl_cppflags=""
5360 with_libyajl_ldflags=""
5361 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
5363 if test "x$withval" != "xno" && test "x$withval" != "xyes"
5365 with_libyajl_cppflags="-I$withval/include"
5366 with_libyajl_ldflags="-L$withval/lib"
5369 with_libyajl="$withval"
5375 if test "x$with_libyajl" = "xyes"
5377 SAVE_CPPFLAGS="$CPPFLAGS"
5378 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5380 AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
5381 AC_CHECK_HEADERS(yajl/yajl_version.h)
5383 CPPFLAGS="$SAVE_CPPFLAGS"
5385 if test "x$with_libyajl" = "xyes"
5387 SAVE_CPPFLAGS="$CPPFLAGS"
5388 SAVE_LDFLAGS="$LDFLAGS"
5389 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5390 LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
5392 AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
5394 CPPFLAGS="$SAVE_CPPFLAGS"
5395 LDFLAGS="$SAVE_LDFLAGS"
5397 if test "x$with_libyajl" = "xyes"
5399 BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
5400 BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
5401 BUILD_WITH_LIBYAJL_LIBS="-lyajl"
5402 AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
5403 AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
5404 AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
5405 AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
5407 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
5411 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
5412 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
5414 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
5416 if test "x$withval" = "xno"
5419 else if test "x$withval" = "xyes"
5422 else if test -d "$with_mic/lib"
5424 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
5425 with_mic_cflags="-I$withval/include"
5426 with_mic_ldpath="-L$withval/lib/Linux"
5427 with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"
5432 if test "x$with_mic" = "xyes"
5434 SAVE_CPPFLAGS="$CPPFLAGS"
5435 CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5436 AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
5437 CPPFLAGS="$SAVE_CPPFLAGS"
5439 if test "x$with_mic" = "xyes"
5441 SAVE_CPPFLAGS="$CPPFLAGS"
5442 SAVE_LDFLAGS="$LDFLAGS"
5444 CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5445 LDFLAGS="$LDFLAGS $with_mic_ldpath"
5447 AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
5448 [with_mic_ldpath="$with_mic_ldpath"
5449 with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"],
5450 [with_mic="no (symbol MicInitAPI not found)"],[$PTHREAD_LIBS -lscif])
5452 CPPFLAGS="$SAVE_CPPFLAGS"
5453 LDFLAGS="$SAVE_LDFLAGS"
5456 if test "x$with_mic" = "xyes"
5458 BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
5459 BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
5460 BUILD_WITH_MIC_LDADD="$with_mic_libs"
5461 AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
5462 AC_SUBST(BUILD_WITH_MIC_LIBPATH)
5463 AC_SUBST(BUILD_WITH_MIC_LDADD)
5467 # --with-libvarnish {{{
5468 with_libvarnish_cppflags=""
5469 with_libvarnish_cflags=""
5470 with_libvarnish_libs=""
5471 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
5473 if test "x$withval" = "xno"
5475 with_libvarnish="no"
5476 else if test "x$withval" = "xyes"
5478 with_libvarnish="use_pkgconfig"
5479 else if test -d "$with_libvarnish/lib"
5481 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
5482 with_libvarnish_cflags="-I$withval/include"
5483 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
5484 with_libvarnish="yes"
5487 [with_libvarnish="use_pkgconfig"])
5489 # configure using pkg-config
5490 if test "x$with_libvarnish" = "xuse_pkgconfig"
5492 AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
5493 $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
5496 with_libvarnish="no (pkg-config doesn't know varnishapi)"
5499 if test "x$with_libvarnish" = "xuse_pkgconfig"
5501 with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
5504 with_libvarnish="no ($PKG_CONFIG failed)"
5506 with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
5509 with_libvarnish="no ($PKG_CONFIG failed)"
5512 if test "x$with_libvarnish" = "xuse_pkgconfig"
5514 with_libvarnish="yes"
5517 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
5518 # the actual checks.
5519 if test "x$with_libvarnish" = "xyes"
5521 SAVE_CPPFLAGS="$CPPFLAGS"
5523 CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
5525 AC_CHECK_HEADERS(vapi/vsc.h,
5526 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
5527 [AC_CHECK_HEADERS(vsc.h,
5528 [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
5529 [AC_CHECK_HEADERS(varnishapi.h,
5530 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
5531 [with_libvarnish="no (found none of the varnish header files)"])])])
5533 CPPFLAGS="$SAVE_CPPFLAGS"
5535 if test "x$with_libvarnish" = "xyes"
5537 BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
5538 BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
5539 AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
5540 AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
5544 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
5545 with_libxml2="no (pkg-config isn't available)"
5546 with_libxml2_cflags=""
5547 with_libxml2_ldflags=""
5548 with_libvirt="no (pkg-config isn't available)"
5549 with_libvirt_cflags=""
5550 with_libvirt_ldflags=""
5551 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
5556 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
5559 $PKG_CONFIG --exists libvirt 2>/dev/null
5564 with_libvirt="no (pkg-config doesn't know libvirt)"
5566 if test "x$with_libxml2" = "xyes"
5568 with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
5573 with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
5579 if test "x$with_libxml2" = "xyes"
5581 SAVE_CPPFLAGS="$CPPFLAGS"
5582 CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
5584 AC_CHECK_HEADERS(libxml/parser.h, [],
5585 [with_libxml2="no (libxml/parser.h not found)"])
5587 CPPFLAGS="$SAVE_CPPFLAGS"
5589 if test "x$with_libxml2" = "xyes"
5591 SAVE_CFLAGS="$CFLAGS"
5592 SAVE_LDFLAGS="$LDFLAGS"
5594 CFLAGS="$CFLAGS $with_libxml2_cflags"
5595 LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
5597 AC_CHECK_LIB(xml2, xmlXPathEval,
5598 [with_libxml2="yes"],
5599 [with_libxml2="no (symbol xmlXPathEval not found)"])
5601 CFLAGS="$SAVE_CFLAGS"
5602 LDFLAGS="$SAVE_LDFLAGS"
5604 dnl Add the right compiler flags and libraries.
5605 if test "x$with_libxml2" = "xyes"; then
5606 BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
5607 BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
5608 AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
5609 AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
5611 if test "x$with_libvirt" = "xyes"
5613 with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
5618 with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
5624 if test "x$with_libvirt" = "xyes"
5626 SAVE_CPPFLAGS="$CPPFLAGS"
5627 CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
5629 AC_CHECK_HEADERS(libvirt/libvirt.h, [],
5630 [with_libvirt="no (libvirt/libvirt.h not found)"])
5632 CPPFLAGS="$SAVE_CPPFLAGS"
5634 if test "x$with_libvirt" = "xyes"
5636 SAVE_CFLAGS="$CFLAGS"
5637 SAVE_LDFLAGS="$LDFLAGS"
5639 CFLAGS="$CFLAGS $with_libvirt_cflags"
5640 LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
5642 AC_CHECK_LIB(virt, virDomainBlockStats,
5643 [with_libvirt="yes"],
5644 [with_libvirt="no (symbol virDomainBlockStats not found)"])
5646 CFLAGS="$SAVE_CFLAGS"
5647 LDFLAGS="$SAVE_LDFLAGS"
5649 dnl Add the right compiler flags and libraries.
5650 if test "x$with_libvirt" = "xyes"; then
5651 BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
5652 BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
5653 AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
5654 AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
5658 # $PKG_CONFIG --exists OpenIPMIpthread {{{
5659 with_libopenipmipthread="yes"
5660 with_libopenipmipthread_cflags=""
5661 with_libopenipmipthread_libs=""
5663 if test "x$with_libopenipmipthread" = "xyes"
5665 AC_MSG_CHECKING([for libOpenIPMIpthread])
5666 $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
5669 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
5671 AC_MSG_RESULT([$with_libopenipmipthread])
5674 if test "x$with_libopenipmipthread" = "xyes"
5676 AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
5677 temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
5680 with_libopenipmipthread_cflags="$temp_result"
5682 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
5683 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
5685 AC_MSG_RESULT([$temp_result])
5688 if test "x$with_libopenipmipthread" = "xyes"
5690 AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
5691 temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
5694 with_libopenipmipthread_ldflags="$temp_result"
5696 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
5697 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
5699 AC_MSG_RESULT([$temp_result])
5702 if test "x$with_libopenipmipthread" = "xyes"
5704 SAVE_CPPFLAGS="$CPPFLAGS"
5705 CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
5707 AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
5708 [with_libopenipmipthread="yes"],
5709 [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
5710 [#include <OpenIPMI/ipmiif.h>
5711 #include <OpenIPMI/ipmi_err.h>
5712 #include <OpenIPMI/ipmi_posix.h>
5713 #include <OpenIPMI/ipmi_conn.h>
5716 CPPFLAGS="$SAVE_CPPFLAGS"
5719 if test "x$with_libopenipmipthread" = "xyes"
5721 BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
5722 BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
5723 AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
5724 AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
5728 # --with-libatasmart {{{
5729 with_libatasmart_cppflags=""
5730 with_libatasmart_ldflags=""
5731 AC_ARG_WITH(libatasmart, [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
5733 if test "x$withval" != "xno" && test "x$withval" != "xyes"
5735 with_libatasmart_cppflags="-I$withval/include"
5736 with_libatasmart_ldflags="-L$withval/lib"
5737 with_libatasmart="yes"
5739 with_libatasmart="$withval"
5743 if test "x$ac_system" = "xLinux"
5745 with_libatasmart="yes"
5747 with_libatasmart="no (Linux only library)"
5750 if test "x$with_libatasmart" = "xyes"
5752 SAVE_CPPFLAGS="$CPPFLAGS"
5753 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5755 AC_CHECK_HEADERS(atasmart.h, [with_libatasmart="yes"], [with_libatasmart="no (atasmart.h not found)"])
5757 CPPFLAGS="$SAVE_CPPFLAGS"
5759 if test "x$with_libatasmart" = "xyes"
5761 SAVE_CPPFLAGS="$CPPFLAGS"
5762 SAVE_LDFLAGS="$LDFLAGS"
5763 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5764 LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
5766 AC_CHECK_LIB(atasmart, sk_disk_open, [with_libatasmart="yes"], [with_libatasmart="no (Symbol 'sk_disk_open' not found)"])
5768 CPPFLAGS="$SAVE_CPPFLAGS"
5769 LDFLAGS="$SAVE_LDFLAGS"
5771 if test "x$with_libatasmart" = "xyes"
5773 BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
5774 BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
5775 BUILD_WITH_LIBATASMART_LIBS="-latasmart"
5776 AC_SUBST(BUILD_WITH_LIBATASMART_CPPFLAGS)
5777 AC_SUBST(BUILD_WITH_LIBATASMART_LDFLAGS)
5778 AC_SUBST(BUILD_WITH_LIBATASMART_LIBS)
5779 AC_DEFINE(HAVE_LIBATASMART, 1, [Define if libatasmart is present and usable.])
5781 AM_CONDITIONAL(BUILD_WITH_LIBATASMART, test "x$with_libatasmart" = "xyes")
5784 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
5785 [with_libnotify="yes"],
5786 [with_libnotify="no (pkg-config doesn't know libnotify)"]
5789 PKG_CHECK_MODULES([LIBRIEMANN_CLIENT], [riemann-client >= 1.6.0],
5790 [with_libriemann_client="yes"],
5791 [with_libriemann_client="no (pkg-config doesn't know libriemann-client)"])
5793 # Check for enabled/disabled features
5796 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
5797 # ------------------------------------------------------------
5799 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
5804 m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
5809 m4_define([EnDis],[disabled])dnl
5810 m4_define([YesNo],[no])dnl
5816 m4_define([EnDis],[enabled])dnl
5817 m4_define([YesNo],[yes])dnl
5820 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
5824 m4_if([$3], [feature], [],
5828 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
5834 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
5836 enable_$1='[YesNo]'dnl
5838 if test "x$enable_$1" = "xno"
5842 if test "x$enable_$1" = "xyes"
5846 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
5851 AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
5852 AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
5854 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
5856 # AC_PLUGIN(name, default, info)
5857 # ------------------------------------------------------------
5864 AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
5866 if test "x$enableval" = "xyes"
5869 else if test "x$enableval" = "xforce"
5874 enable_plugin="no (disabled on command line)"
5878 if test "x$enable_all_plugins" = "xauto"
5880 if test "x$2" = "xyes"
5887 enable_plugin="$enable_all_plugins"
5890 if test "x$enable_plugin" = "xyes"
5892 if test "x$2" = "xyes" || test "x$force" = "xyes"
5894 AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
5895 if test "x$2" != "xyes"
5897 dependency_warning="yes"
5899 else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
5900 dependency_error="yes"
5901 enable_plugin="$2 (dependency error)"
5904 AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
5905 enable_$1="$enable_plugin"
5907 )# AC_PLUGIN(name, default, info)
5909 m4_divert_once([HELP_ENABLE], [
5910 collectd features:])
5911 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
5912 AC_COLLECTD([debug], [enable], [feature], [debugging])
5913 AC_COLLECTD([daemon], [disable], [feature], [daemon mode])
5914 AC_COLLECTD([getifaddrs],[enable], [feature], [getifaddrs under Linux])
5915 AC_COLLECTD([werror], [disable], [feature], [building with -Werror])
5917 dependency_warning="no"
5918 dependency_error="no"
5921 plugin_barometer="no"
5926 plugin_conntrack="no"
5927 plugin_contextswitch="no"
5930 plugin_cpusleep="no"
5931 plugin_curl_json="no"
5932 plugin_curl_xml="no"
5936 plugin_dpdkstat="no"
5943 plugin_hugepages="no"
5944 plugin_intel_rdt="no"
5945 plugin_interface="no"
5950 plugin_log_logstash="no"
5952 plugin_multimeter="no"
5957 plugin_processes="no"
5958 plugin_protocols="no"
5964 plugin_tcpconns="no"
5967 plugin_turbostat="no"
5973 plugin_wireless="no"
5974 plugin_write_prometheus="no"
5978 plugin_zookeeper="no"
5981 if test "x$ac_system" = "xLinux"
5983 plugin_battery="yes"
5984 plugin_cgroups="yes"
5985 plugin_conntrack="yes"
5986 plugin_contextswitch="yes"
5988 plugin_cpufreq="yes"
5991 plugin_entropy="yes"
5992 plugin_fhcount="yes"
5993 plugin_fscache="yes"
5994 plugin_hugepages="yes"
5995 plugin_interface="yes"
6003 plugin_processes="yes"
6004 plugin_protocols="yes"
6007 plugin_tcpconns="yes"
6008 plugin_thermal="yes"
6011 plugin_vserver="yes"
6012 plugin_wireless="yes"
6013 plugin_zfs_arc="yes"
6015 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
6019 if test "x$c_cv_have_usable_asm_msrindex_h" = "xyes" && test "x$have_cpuid_h" = "xyes"
6021 plugin_turbostat="yes"
6024 if test "x$c_cv_have_clock_boottime_monotonic" = "xyes"
6026 plugin_cpusleep="yes"
6030 if test "x$ac_system" = "xOpenBSD"
6032 plugin_tcpconns="yes"
6035 if test "x$ac_system" = "xNetBSD"
6038 plugin_entropy="yes"
6040 plugin_processes="yes"
6044 if test "x$with_libiokit" = "xyes"
6046 plugin_battery="yes"
6052 if test "x$ac_system" = "xAIX"
6055 plugin_tcpconns="yes"
6060 if test "x$ac_system" = "xFreeBSD"
6063 plugin_zfs_arc="yes"
6067 if test "x$with_perfstat" = "xyes"
6069 plugin_contextswitch="yes"
6072 plugin_interface="yes"
6079 if test "x$with_procinfo" = "xyes"
6081 plugin_processes="yes"
6085 if test "x$with_kstat" = "xyes"
6088 plugin_processes="yes"
6090 plugin_zfs_arc="yes"
6094 if test "x$with_devinfo$with_kstat" = "xyesyes"
6098 plugin_interface="yes"
6104 if test "x$ac_system" = "xLinux"
6106 AC_CHECK_DECL(i2c_smbus_read_i2c_block_data,
6107 [with_libi2c="yes"],
6108 [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
6109 [[#include <stdlib.h>
6110 #include <linux/i2c-dev.h>]])
6112 with_libi2c="no (Linux only)"
6115 if test "x$with_libi2c" = "xyes"
6117 plugin_barometer="yes"
6122 if test "x$with_libstatgrab" = "xyes"
6126 plugin_interface="yes"
6133 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
6136 if test "x$have_strptime" = "xyes"
6142 if test "x$with_libopenipmipthread" = "xyes"
6147 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
6149 plugin_curl_json="yes"
6152 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
6154 plugin_curl_xml="yes"
6157 if test "x$with_libyajl" = "xyes"
6162 if test "x$have_processor_info" = "xyes"
6166 if test "x$have_sysctl" = "xyes"
6171 if test "x$ac_system" = "xDarwin"
6176 if test "x$have_sysctlbyname" = "xyes"
6178 plugin_contextswitch="yes"
6181 plugin_tcpconns="yes"
6184 # Df plugin: Check if we know how to determine mount points first.
6185 #if test "x$have_listmntent" = "xyes"; then
6188 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
6192 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
6196 #if test "x$have_getmntent" = "xseq"
6200 if test "x$c_cv_have_one_getmntent" = "xyes"
6205 if test "x$c_cv_have_getmntent_r" = "xyes"
6210 # Df plugin: Check if we have either `statfs' or `statvfs' second.
6211 if test "x$plugin_df" = "xyes"
6214 if test "x$have_statfs" = "xyes"
6218 if test "x$have_statvfs" = "xyes"
6224 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
6226 plugin_ethstat="yes"
6229 if test "x$with_libgrpcpp" = "xyes" && test "x$with_libprotobuf" = "xyes" && test "x$have_protoc3" = "xyes" && test "x$GRPC_CPP_PLUGIN" != "x"
6234 if test "x$have_getifaddrs" = "xyes"
6236 plugin_interface="yes"
6239 if test "x$with_libgps" = "xyes"
6244 if test "x$have_getloadavg" = "xyes"
6249 if test "x$with_libyajl" = "xyes"
6251 plugin_log_logstash="yes"
6254 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
6259 if test "x$have_protoc_c" = "xyes" && test "x$with_libprotobuf_c" = "xyes"
6262 if test "x$with_libmicrohttpd" = "xyes"
6264 plugin_write_prometheus="yes"
6268 # Mac OS X memory interface
6269 if test "x$have_host_statistics" = "xyes"
6274 if test "x$have_termios_h" = "xyes"
6276 if test "x$ac_system" != "xAIX"
6278 plugin_multimeter="yes"
6283 if test "x$have_thread_info" = "xyes"
6285 plugin_processes="yes"
6288 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
6290 plugin_processes="yes"
6293 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"
6295 plugin_processes="yes"
6298 if test "x$with_libpython" != "xno"
6303 if test "x$with_libatasmart" = "xyes" && test "x$with_libudev" = "xyes"
6308 if test "x$with_kvm_getswapinfo" = "xyes"
6313 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
6318 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_three_args" = "xyes"
6323 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
6325 plugin_tcpconns="yes"
6328 if test "x$have_getutent" = "xyes"
6332 if test "x$have_getutxent" = "xyes"
6337 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
6342 if test "x$with_libxenctrl" = "xyes"
6347 if test "x$with_libdpdk" = "xyes"
6349 plugin_dpdkstat="yes"
6352 m4_divert_once([HELP_ENABLE], [
6355 AC_ARG_ENABLE([all-plugins],
6356 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
6358 if test "x$enableval" = "xyes"
6360 enable_all_plugins="yes"
6361 else if test "x$enableval" = "xauto"
6363 enable_all_plugins="auto"
6365 enable_all_plugins="no"
6368 [enable_all_plugins="auto"])
6370 m4_divert_once([HELP_ENABLE], [])
6372 AC_PLUGIN([aggregation], [yes], [Aggregation plugin])
6373 AC_PLUGIN([amqp], [$with_librabbitmq], [AMQP output plugin])
6374 AC_PLUGIN([apache], [$with_libcurl], [Apache httpd statistics])
6375 AC_PLUGIN([apcups], [yes], [Statistics of UPSes by APC])
6376 AC_PLUGIN([apple_sensors], [$with_libiokit], [Apple hardware sensors])
6377 AC_PLUGIN([aquaero], [$with_libaquaero5], [Aquaero hardware sensors])
6378 AC_PLUGIN([ascent], [$plugin_ascent], [AscentEmu player statistics])
6379 AC_PLUGIN([barometer], [$plugin_barometer], [Barometer sensor on I2C])
6380 AC_PLUGIN([battery], [$plugin_battery], [Battery statistics])
6381 AC_PLUGIN([bind], [$plugin_bind], [ISC Bind nameserver statistics])
6382 AC_PLUGIN([ceph], [$plugin_ceph], [Ceph daemon statistics])
6383 AC_PLUGIN([cgroups], [$plugin_cgroups], [CGroups CPU usage accounting])
6384 AC_PLUGIN([chrony], [yes], [Chrony statistics])
6385 AC_PLUGIN([conntrack], [$plugin_conntrack], [nf_conntrack statistics])
6386 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
6387 AC_PLUGIN([cpu], [$plugin_cpu], [CPU usage statistics])
6388 AC_PLUGIN([cpufreq], [$plugin_cpufreq], [CPU frequency statistics])
6389 AC_PLUGIN([cpusleep], [$plugin_cpusleep], [CPU sleep statistics])
6390 AC_PLUGIN([csv], [yes], [CSV output plugin])
6391 AC_PLUGIN([curl], [$with_libcurl], [CURL generic web statistics])
6392 AC_PLUGIN([curl_json], [$plugin_curl_json], [CouchDB statistics])
6393 AC_PLUGIN([curl_xml], [$plugin_curl_xml], [CURL generic xml statistics])
6394 AC_PLUGIN([dbi], [$with_libdbi], [General database statistics])
6395 AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics])
6396 AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics])
6397 AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis])
6398 AC_PLUGIN([dpdkstat], [$plugin_dpdkstat], [Stats & Status from DPDK])
6399 AC_PLUGIN([drbd], [$plugin_drbd], [DRBD statistics])
6400 AC_PLUGIN([email], [yes], [EMail statistics])
6401 AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics])
6402 AC_PLUGIN([ethstat], [$plugin_ethstat], [Stats from NIC driver])
6403 AC_PLUGIN([exec], [yes], [Execution of external programs])
6404 AC_PLUGIN([fhcount], [$plugin_fhcount], [File handles statistics])
6405 AC_PLUGIN([filecount], [yes], [Count files in directories])
6406 AC_PLUGIN([fscache], [$plugin_fscache], [fscache statistics])
6407 AC_PLUGIN([gmond], [$with_libganglia], [Ganglia plugin])
6408 AC_PLUGIN([gps], [$plugin_gps], [GPS plugin])
6409 AC_PLUGIN([grpc], [$plugin_grpc], [gRPC plugin])
6410 AC_PLUGIN([hddtemp], [yes], [Query hddtempd])
6411 AC_PLUGIN([hugepages], [$plugin_hugepages], [Hugepages statistics])
6412 AC_PLUGIN([intel_rdt], [$with_libpqos], [Intel RDT monitor plugin])
6413 AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics])
6414 AC_PLUGIN([ipc], [$plugin_ipc], [IPC statistics])
6415 AC_PLUGIN([ipmi], [$plugin_ipmi], [IPMI sensor statistics])
6416 AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
6417 AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
6418 AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
6419 AC_PLUGIN([java], [$with_java], [Embed the Java Virtual Machine])
6420 AC_PLUGIN([load], [$plugin_load], [System load])
6421 AC_PLUGIN([log_logstash], [$plugin_log_logstash], [Logstash json_event compatible logging])
6422 AC_PLUGIN([logfile], [yes], [File logging plugin])
6423 AC_PLUGIN([lpar], [$with_perfstat], [AIX logical partitions statistics])
6424 AC_PLUGIN([lua], [$with_liblua], [Lua plugin])
6425 AC_PLUGIN([lvm], [$with_liblvm2app], [LVM statistics])
6426 AC_PLUGIN([madwifi], [$have_linux_wireless_h], [Madwifi wireless statistics])
6427 AC_PLUGIN([match_empty_counter], [yes], [The empty counter match])
6428 AC_PLUGIN([match_hashed], [yes], [The hashed match])
6429 AC_PLUGIN([match_regex], [yes], [The regex match])
6430 AC_PLUGIN([match_timediff], [yes], [The timediff match])
6431 AC_PLUGIN([match_value], [yes], [The value match])
6432 AC_PLUGIN([mbmon], [yes], [Query mbmond])
6433 AC_PLUGIN([md], [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
6434 AC_PLUGIN([memcachec], [$with_libmemcached], [memcachec statistics])
6435 AC_PLUGIN([memcached], [yes], [memcached statistics])
6436 AC_PLUGIN([memory], [$plugin_memory], [Memory usage])
6437 AC_PLUGIN([mic], [$with_mic], [Intel Many Integrated Core stats])
6438 AC_PLUGIN([modbus], [$with_libmodbus], [Modbus plugin])
6439 AC_PLUGIN([mqtt], [$with_libmosquitto], [MQTT output plugin])
6440 AC_PLUGIN([multimeter], [$plugin_multimeter], [Read multimeter values])
6441 AC_PLUGIN([mysql], [$with_libmysql], [MySQL statistics])
6442 AC_PLUGIN([netapp], [$with_libnetapp], [NetApp plugin])
6443 AC_PLUGIN([netlink], [$with_libmnl], [Enhanced Linux network statistics])
6444 AC_PLUGIN([network], [yes], [Network communication plugin])
6445 AC_PLUGIN([nfs], [$plugin_nfs], [NFS statistics])
6446 AC_PLUGIN([nginx], [$with_libcurl], [nginx statistics])
6447 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
6448 AC_PLUGIN([notify_email], [$with_libesmtp], [Email notifier])
6449 AC_PLUGIN([notify_nagios], [yes], [Nagios notification plugin])
6450 AC_PLUGIN([ntpd], [yes], [NTPd statistics])
6451 AC_PLUGIN([numa], [$plugin_numa], [NUMA virtual memory statistics])
6452 AC_PLUGIN([nut], [$with_libupsclient], [Network UPS tools statistics])
6453 AC_PLUGIN([olsrd], [yes], [olsrd statistics])
6454 AC_PLUGIN([onewire], [$with_libowcapi], [OneWire sensor statistics])
6455 AC_PLUGIN([openldap], [$with_libldap], [OpenLDAP statistics])
6456 AC_PLUGIN([openvpn], [yes], [OpenVPN client statistics])
6457 AC_PLUGIN([oracle], [$with_oracle], [Oracle plugin])
6458 AC_PLUGIN([perl], [$plugin_perl], [Embed a Perl interpreter])
6459 AC_PLUGIN([pf], [$have_net_pfvar_h], [BSD packet filter (PF) statistics])
6460 # FIXME: Check for libevent, too.
6461 AC_PLUGIN([pinba], [$plugin_pinba], [Pinba statistics])
6462 AC_PLUGIN([ping], [$with_liboping], [Network latency statistics])
6463 AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics])
6464 AC_PLUGIN([powerdns], [yes], [PowerDNS statistics])
6465 AC_PLUGIN([processes], [$plugin_processes], [Process statistics])
6466 AC_PLUGIN([protocols], [$plugin_protocols], [Protocol (IP, TCP, ...) statistics])
6467 AC_PLUGIN([python], [$plugin_python], [Embed a Python interpreter])
6468 AC_PLUGIN([redis], [$with_libhiredis], [Redis plugin])
6469 AC_PLUGIN([routeros], [$with_librouteros], [RouterOS plugin])
6470 AC_PLUGIN([rrdcached], [$librrd_rrdc_update], [RRDTool output plugin])
6471 AC_PLUGIN([rrdtool], [$with_librrd], [RRDTool output plugin])
6472 AC_PLUGIN([sensors], [$with_libsensors], [lm_sensors statistics])
6473 AC_PLUGIN([serial], [$plugin_serial], [serial port traffic])
6474 AC_PLUGIN([sigrok], [$with_libsigrok], [sigrok acquisition sources])
6475 AC_PLUGIN([smart], [$plugin_smart], [SMART statistics])
6476 AC_PLUGIN([snmp], [$with_libnetsnmp], [SNMP querying plugin])
6477 AC_PLUGIN([statsd], [yes], [StatsD plugin])
6478 AC_PLUGIN([swap], [$plugin_swap], [Swap usage statistics])
6479 AC_PLUGIN([syslog], [$have_syslog], [Syslog logging plugin])
6480 AC_PLUGIN([table], [yes], [Parsing of tabular data])
6481 AC_PLUGIN([tail], [yes], [Parsing of logfiles])
6482 AC_PLUGIN([tail_csv], [yes], [Parsing of CSV files])
6483 AC_PLUGIN([tape], [$plugin_tape], [Tape drive statistics])
6484 AC_PLUGIN([target_notification], [yes], [The notification target])
6485 AC_PLUGIN([target_replace], [yes], [The replace target])
6486 AC_PLUGIN([target_scale], [yes], [The scale target])
6487 AC_PLUGIN([target_set], [yes], [The set target])
6488 AC_PLUGIN([target_v5upgrade], [yes], [The v5upgrade target])
6489 AC_PLUGIN([tcpconns], [$plugin_tcpconns], [TCP connection statistics])
6490 AC_PLUGIN([teamspeak2], [yes], [TeamSpeak2 server statistics])
6491 AC_PLUGIN([ted], [$plugin_ted], [Read The Energy Detective values])
6492 AC_PLUGIN([thermal], [$plugin_thermal], [Linux ACPI thermal zone statistics])
6493 AC_PLUGIN([threshold], [yes], [Threshold checking plugin])
6494 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant], [TokyoTyrant database statistics])
6495 AC_PLUGIN([turbostat], [$plugin_turbostat], [Advanced statistic on Intel cpu states])
6496 AC_PLUGIN([unixsock], [yes], [Unixsock communication plugin])
6497 AC_PLUGIN([uptime], [$plugin_uptime], [Uptime statistics])
6498 AC_PLUGIN([users], [$plugin_users], [User statistics])
6499 AC_PLUGIN([uuid], [yes], [UUID as hostname plugin])
6500 AC_PLUGIN([varnish], [$with_libvarnish], [Varnish cache statistics])
6501 AC_PLUGIN([virt], [$plugin_virt], [Virtual machine statistics])
6502 AC_PLUGIN([vmem], [$plugin_vmem], [Virtual memory statistics])
6503 AC_PLUGIN([vserver], [$plugin_vserver], [Linux VServer statistics])
6504 AC_PLUGIN([wireless], [$plugin_wireless], [Wireless statistics])
6505 AC_PLUGIN([write_graphite], [yes], [Graphite / Carbon output plugin])
6506 AC_PLUGIN([write_http], [$with_libcurl], [HTTP output plugin])
6507 AC_PLUGIN([write_kafka], [$with_librdkafka], [Kafka output plugin])
6508 AC_PLUGIN([write_log], [yes], [Log output plugin])
6509 AC_PLUGIN([write_mongodb], [$with_libmongoc], [MongoDB output plugin])
6510 AC_PLUGIN([write_prometheus], [$plugin_write_prometheus], [Prometheus write plugin])
6511 AC_PLUGIN([write_redis], [$with_libhiredis], [Redis output plugin])
6512 AC_PLUGIN([write_riemann], [$with_libriemann_client], [Riemann output plugin])
6513 AC_PLUGIN([write_sensu], [yes], [Sensu output plugin])
6514 AC_PLUGIN([write_tsdb], [yes], [TSDB output plugin])
6515 AC_PLUGIN([xencpu], [$plugin_xencpu], [Xen Host CPU usage])
6516 AC_PLUGIN([xmms], [$with_libxmms], [XMMS statistics])
6517 AC_PLUGIN([zfs_arc], [$plugin_zfs_arc], [ZFS ARC statistics])
6518 AC_PLUGIN([zone], [$plugin_zone], [Solaris container statistics])
6519 AC_PLUGIN([zookeeper], [yes], [Zookeeper statistics])
6521 dnl Default configuration file
6522 # Load either syslog or logfile
6523 LOAD_PLUGIN_SYSLOG=""
6524 LOAD_PLUGIN_LOGFILE=""
6525 LOAD_PLUGIN_LOG_LOGSTASH=""
6527 AC_MSG_CHECKING([which default log plugin to load])
6528 default_log_plugin="none"
6529 if test "x$enable_syslog" = "xyes"
6531 default_log_plugin="syslog"
6533 LOAD_PLUGIN_SYSLOG="##"
6536 if test "x$enable_logfile" = "xyes"
6538 if test "x$default_log_plugin" = "xnone"
6540 default_log_plugin="logfile"
6542 LOAD_PLUGIN_LOGFILE="#"
6545 LOAD_PLUGIN_LOGFILE="##"
6548 if test "x$enable_log_logstash" = "xyes"
6550 LOAD_PLUGIN_LOG_LOGSTASH="#"
6552 LOAD_PLUGIN_LOG_LOGSTASH="##"
6556 AC_MSG_RESULT([$default_log_plugin])
6558 AC_SUBST(LOAD_PLUGIN_SYSLOG)
6559 AC_SUBST(LOAD_PLUGIN_LOGFILE)
6560 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
6562 DEFAULT_LOG_LEVEL="info"
6563 if test "x$enable_debug" = "xyes"
6565 DEFAULT_LOG_LEVEL="debug"
6567 AC_SUBST(DEFAULT_LOG_LEVEL)
6569 # Load only one of rrdtool, network, csv in the default config.
6570 LOAD_PLUGIN_RRDTOOL=""
6571 LOAD_PLUGIN_NETWORK=""
6574 AC_MSG_CHECKING([which default write plugin to load])
6575 default_write_plugin="none"
6576 if test "x$enable_rrdtool" = "xyes"
6578 default_write_plugin="rrdtool"
6580 LOAD_PLUGIN_RRDTOOL="##"
6583 if test "x$enable_network" = "xyes"
6585 if test "x$default_write_plugin" = "xnone"
6587 default_write_plugin="network"
6589 LOAD_PLUGIN_NETWORK="#"
6592 LOAD_PLUGIN_NETWORK="##"
6595 if test "x$enable_csv" = "xyes"
6597 if test "x$default_write_plugin" = "xnone"
6599 default_write_plugin="csv"
6604 LOAD_PLUGIN_CSV="##"
6606 AC_MSG_RESULT([$default_write_plugin])
6608 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
6609 AC_SUBST(LOAD_PLUGIN_NETWORK)
6610 AC_SUBST(LOAD_PLUGIN_CSV)
6613 if test "x$ac_system" = "xLinux" \
6614 && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
6616 enable_ipvs="$enable_ipvs (ip_vs.h not found)"
6619 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
6621 enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
6625 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
6626 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
6628 if test "x$withval" != "xno" && test "x$withval" != "xyes"
6630 PERL_BINDINGS_OPTIONS="$withval"
6631 with_perl_bindings="yes"
6633 with_perl_bindings="$withval"
6637 if test -n "$perl_interpreter"
6639 with_perl_bindings="yes"
6641 with_perl_bindings="no (no perl interpreter found)"
6645 if test "x$with_perl_bindings" = "xyes"
6647 AC_MSG_CHECKING([for the ExtUtils::MakeMaker module])
6648 if $PERL -MExtUtils::MakeMaker -e '' 2>/dev/null; then
6649 AC_MSG_RESULT([yes])
6652 with_perl_bindings="no (ExtUtils::MakeMaker not found)"
6656 if test "x$with_perl_bindings" = "xyes"
6658 PERL_BINDINGS="perl"
6662 AC_SUBST(PERL_BINDINGS)
6663 AC_SUBST(PERL_BINDINGS_OPTIONS)
6665 dnl libcollectdclient
6666 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
6667 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
6668 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
6670 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
6672 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
6674 AC_SUBST(LCC_VERSION_MAJOR)
6675 AC_SUBST(LCC_VERSION_MINOR)
6676 AC_SUBST(LCC_VERSION_PATCH)
6677 AC_SUBST(LCC_VERSION_EXTRA)
6678 AC_SUBST(LCC_VERSION_STRING)
6680 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
6684 if test "x$enable_werror" != "xno"
6686 AM_CFLAGS="$AM_CFLAGS -Werror"
6687 AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
6689 AC_SUBST([AM_CFLAGS])
6690 AC_SUBST([AM_CXXFLAGS])
6692 AC_CONFIG_FILES([Makefile proto/Makefile src/Makefile src/daemon/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile])
6695 if test "x$with_librrd" = "xyes" \
6696 && test "x$librrd_threadsafe" != "xyes"
6698 with_librrd="yes (warning: librrd is not thread-safe)"
6701 if test "x$with_libperl" = "xyes"
6703 with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
6705 enable_perl="no (needs libperl)"
6708 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
6710 enable_perl="no (libperl doesn't support ithreads)"
6713 if test "x$with_perl_bindings" = "xyes" \
6714 && test "x$PERL_BINDINGS_OPTIONS" != "x"
6716 with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
6720 AC_MSG_RESULT([Configuration:])
6721 AC_MSG_RESULT([ Build:])
6722 AC_MSG_RESULT([ Platform . . . . . . $ac_system])
6723 AC_MSG_RESULT([ CC . . . . . . . . . $CC])
6724 AC_MSG_RESULT([ CFLAGS . . . . . . . $AM_CFLAGS $CFLAGS])
6725 AC_MSG_RESULT([ CXXFLAGS . . . . . . $AM_CXXFLAGS $CXXFLAGS])
6726 AC_MSG_RESULT([ CPP . . . . . . . . . $CPP])
6727 AC_MSG_RESULT([ CPPFLAGS . . . . . . $CPPFLAGS])
6728 AC_MSG_RESULT([ GRPC_CPP_PLUGIN . . . $GRPC_CPP_PLUGIN])
6729 AC_MSG_RESULT([ LD . . . . . . . . . $LD])
6730 AC_MSG_RESULT([ LDFLAGS . . . . . . . $LDFLAGS])
6731 AC_MSG_RESULT([ PROTOC . . . . . . . $PROTOC])
6732 AC_MSG_RESULT([ YACC . . . . . . . . $YACC])
6733 AC_MSG_RESULT([ YFLAGS . . . . . . . $YFLAGS])
6735 AC_MSG_RESULT([ Libraries:])
6736 AC_MSG_RESULT([ intel mic . . . . . . $with_mic])
6737 AC_MSG_RESULT([ libaquaero5 . . . . . $with_libaquaero5])
6738 AC_MSG_RESULT([ libatasmart . . . . . $with_libatasmart])
6739 AC_MSG_RESULT([ libcurl . . . . . . . $with_libcurl])
6740 AC_MSG_RESULT([ libdbi . . . . . . . $with_libdbi])
6741 AC_MSG_RESULT([ libdpdk . . . . . . . $with_libdpdk])
6742 AC_MSG_RESULT([ libesmtp . . . . . . $with_libesmtp])
6743 AC_MSG_RESULT([ libganglia . . . . . $with_libganglia])
6744 AC_MSG_RESULT([ libgcrypt . . . . . . $with_libgcrypt])
6745 AC_MSG_RESULT([ libgps . . . . . . . $with_libgps])
6746 AC_MSG_RESULT([ libgrpc++ . . . . . . $with_libgrpcpp])
6747 AC_MSG_RESULT([ libhal . . . . . . . $with_libhal])
6748 AC_MSG_RESULT([ libhiredis . . . . . $with_libhiredis])
6749 AC_MSG_RESULT([ libi2c-dev . . . . . $with_libi2c])
6750 AC_MSG_RESULT([ libiokit . . . . . . $with_libiokit])
6751 AC_MSG_RESULT([ libiptc . . . . . . . $with_libiptc])
6752 AC_MSG_RESULT([ libjvm . . . . . . . $with_java])
6753 AC_MSG_RESULT([ libkstat . . . . . . $with_kstat])
6754 AC_MSG_RESULT([ libkvm . . . . . . . $with_libkvm])
6755 AC_MSG_RESULT([ libldap . . . . . . . $with_libldap])
6756 AC_MSG_RESULT([ liblua . . . . . . . $with_liblua])
6757 AC_MSG_RESULT([ liblvm2app . . . . . $with_liblvm2app])
6758 AC_MSG_RESULT([ libmemcached . . . . $with_libmemcached])
6759 AC_MSG_RESULT([ libmicrohttpd . . . . $with_libmicrohttpd])
6760 AC_MSG_RESULT([ libmnl . . . . . . . $with_libmnl])
6761 AC_MSG_RESULT([ libmodbus . . . . . . $with_libmodbus])
6762 AC_MSG_RESULT([ libmongoc . . . . . . $with_libmongoc])
6763 AC_MSG_RESULT([ libmosquitto . . . . $with_libmosquitto])
6764 AC_MSG_RESULT([ libmysql . . . . . . $with_libmysql])
6765 AC_MSG_RESULT([ libnetapp . . . . . . $with_libnetapp])
6766 AC_MSG_RESULT([ libnetsnmp . . . . . $with_libnetsnmp])
6767 AC_MSG_RESULT([ libnotify . . . . . . $with_libnotify])
6768 AC_MSG_RESULT([ liboconfig . . . . . $with_liboconfig])
6769 AC_MSG_RESULT([ libopenipmi . . . . . $with_libopenipmipthread])
6770 AC_MSG_RESULT([ liboping . . . . . . $with_liboping])
6771 AC_MSG_RESULT([ libowcapi . . . . . . $with_libowcapi])
6772 AC_MSG_RESULT([ libpcap . . . . . . . $with_libpcap])
6773 AC_MSG_RESULT([ libperfstat . . . . . $with_perfstat])
6774 AC_MSG_RESULT([ libperl . . . . . . . $with_libperl])
6775 AC_MSG_RESULT([ libpq . . . . . . . . $with_libpq])
6776 AC_MSG_RESULT([ libpqos . . . . . . . $with_libpqos])
6777 AC_MSG_RESULT([ libprotobuf . . . . . $with_libprotobuf])
6778 AC_MSG_RESULT([ libprotobuf-c . . . . $with_libprotobuf_c])
6779 AC_MSG_RESULT([ libpython . . . . . . $with_libpython])
6780 AC_MSG_RESULT([ librabbitmq . . . . . $with_librabbitmq])
6781 AC_MSG_RESULT([ libriemann-client . . $with_libriemann_client])
6782 AC_MSG_RESULT([ librdkafka . . . . . $with_librdkafka])
6783 AC_MSG_RESULT([ librouteros . . . . . $with_librouteros])
6784 AC_MSG_RESULT([ librrd . . . . . . . $with_librrd])
6785 AC_MSG_RESULT([ libsensors . . . . . $with_libsensors])
6786 AC_MSG_RESULT([ libsigrok . . . . . $with_libsigrok])
6787 AC_MSG_RESULT([ libstatgrab . . . . . $with_libstatgrab])
6788 AC_MSG_RESULT([ libtokyotyrant . . . $with_libtokyotyrant])
6789 AC_MSG_RESULT([ libudev . . . . . . . $with_libudev])
6790 AC_MSG_RESULT([ libupsclient . . . . $with_libupsclient])
6791 AC_MSG_RESULT([ libvarnish . . . . . $with_libvarnish])
6792 AC_MSG_RESULT([ libvirt . . . . . . . $with_libvirt])
6793 AC_MSG_RESULT([ libxenctrl . . . . . $with_libxenctrl])
6794 AC_MSG_RESULT([ libxml2 . . . . . . . $with_libxml2])
6795 AC_MSG_RESULT([ libxmms . . . . . . . $with_libxmms])
6796 AC_MSG_RESULT([ libyajl . . . . . . . $with_libyajl])
6797 AC_MSG_RESULT([ oracle . . . . . . . $with_oracle])
6798 AC_MSG_RESULT([ protobuf-c . . . . . $have_protoc_c])
6799 AC_MSG_RESULT([ protoc 3 . . . . . . $have_protoc3])
6801 AC_MSG_RESULT([ Features:])
6802 AC_MSG_RESULT([ daemon mode . . . . . $enable_daemon])
6803 AC_MSG_RESULT([ debug . . . . . . . . $enable_debug])
6805 AC_MSG_RESULT([ Bindings:])
6806 AC_MSG_RESULT([ perl . . . . . . . . $with_perl_bindings])
6808 AC_MSG_RESULT([ Modules:])
6809 AC_MSG_RESULT([ aggregation . . . . . $enable_aggregation])
6810 AC_MSG_RESULT([ amqp . . . . . . . $enable_amqp])
6811 AC_MSG_RESULT([ apache . . . . . . . $enable_apache])
6812 AC_MSG_RESULT([ apcups . . . . . . . $enable_apcups])
6813 AC_MSG_RESULT([ apple_sensors . . . . $enable_apple_sensors])
6814 AC_MSG_RESULT([ aquaero . . . . . . . $enable_aquaero])
6815 AC_MSG_RESULT([ ascent . . . . . . . $enable_ascent])
6816 AC_MSG_RESULT([ barometer . . . . . . $enable_barometer])
6817 AC_MSG_RESULT([ battery . . . . . . . $enable_battery])
6818 AC_MSG_RESULT([ bind . . . . . . . . $enable_bind])
6819 AC_MSG_RESULT([ ceph . . . . . . . . $enable_ceph])
6820 AC_MSG_RESULT([ cgroups . . . . . . . $enable_cgroups])
6821 AC_MSG_RESULT([ chrony. . . . . . . . $enable_chrony])
6822 AC_MSG_RESULT([ conntrack . . . . . . $enable_conntrack])
6823 AC_MSG_RESULT([ contextswitch . . . . $enable_contextswitch])
6824 AC_MSG_RESULT([ cpu . . . . . . . . . $enable_cpu])
6825 AC_MSG_RESULT([ cpufreq . . . . . . . $enable_cpufreq])
6826 AC_MSG_RESULT([ cpusleep . . . . . . $enable_cpusleep])
6827 AC_MSG_RESULT([ csv . . . . . . . . . $enable_csv])
6828 AC_MSG_RESULT([ curl . . . . . . . . $enable_curl])
6829 AC_MSG_RESULT([ curl_json . . . . . . $enable_curl_json])
6830 AC_MSG_RESULT([ curl_xml . . . . . . $enable_curl_xml])
6831 AC_MSG_RESULT([ dbi . . . . . . . . . $enable_dbi])
6832 AC_MSG_RESULT([ df . . . . . . . . . $enable_df])
6833 AC_MSG_RESULT([ disk . . . . . . . . $enable_disk])
6834 AC_MSG_RESULT([ dns . . . . . . . . . $enable_dns])
6835 AC_MSG_RESULT([ dpdkstat . . . . . . $enable_dpdkstat])
6836 AC_MSG_RESULT([ drbd . . . . . . . . $enable_drbd])
6837 AC_MSG_RESULT([ email . . . . . . . . $enable_email])
6838 AC_MSG_RESULT([ entropy . . . . . . . $enable_entropy])
6839 AC_MSG_RESULT([ ethstat . . . . . . . $enable_ethstat])
6840 AC_MSG_RESULT([ exec . . . . . . . . $enable_exec])
6841 AC_MSG_RESULT([ fhcount . . . . . . . $enable_fhcount])
6842 AC_MSG_RESULT([ filecount . . . . . . $enable_filecount])
6843 AC_MSG_RESULT([ fscache . . . . . . . $enable_fscache])
6844 AC_MSG_RESULT([ gmond . . . . . . . . $enable_gmond])
6845 AC_MSG_RESULT([ gps . . . . . . . . . $enable_gps])
6846 AC_MSG_RESULT([ grpc . . . . . . . . $enable_grpc])
6847 AC_MSG_RESULT([ hddtemp . . . . . . . $enable_hddtemp])
6848 AC_MSG_RESULT([ hugepages . . . . . . $enable_hugepages])
6849 AC_MSG_RESULT([ intel_rdt. . . . . . $enable_intel_rdt])
6850 AC_MSG_RESULT([ interface . . . . . . $enable_interface])
6851 AC_MSG_RESULT([ ipc . . . . . . . . . $enable_ipc])
6852 AC_MSG_RESULT([ ipmi . . . . . . . . $enable_ipmi])
6853 AC_MSG_RESULT([ iptables . . . . . . $enable_iptables])
6854 AC_MSG_RESULT([ ipvs . . . . . . . . $enable_ipvs])
6855 AC_MSG_RESULT([ irq . . . . . . . . . $enable_irq])
6856 AC_MSG_RESULT([ java . . . . . . . . $enable_java])
6857 AC_MSG_RESULT([ load . . . . . . . . $enable_load])
6858 AC_MSG_RESULT([ logfile . . . . . . . $enable_logfile])
6859 AC_MSG_RESULT([ log_logstash . . . . $enable_log_logstash])
6860 AC_MSG_RESULT([ lpar . . . . . . . . $enable_lpar])
6861 AC_MSG_RESULT([ lua . . . . . . . . . $enable_lua])
6862 AC_MSG_RESULT([ lvm . . . . . . . . . $enable_lvm])
6863 AC_MSG_RESULT([ madwifi . . . . . . . $enable_madwifi])
6864 AC_MSG_RESULT([ match_empty_counter . $enable_match_empty_counter])
6865 AC_MSG_RESULT([ match_hashed . . . . $enable_match_hashed])
6866 AC_MSG_RESULT([ match_regex . . . . . $enable_match_regex])
6867 AC_MSG_RESULT([ match_timediff . . . $enable_match_timediff])
6868 AC_MSG_RESULT([ match_value . . . . . $enable_match_value])
6869 AC_MSG_RESULT([ mbmon . . . . . . . . $enable_mbmon])
6870 AC_MSG_RESULT([ md . . . . . . . . . $enable_md])
6871 AC_MSG_RESULT([ memcachec . . . . . . $enable_memcachec])
6872 AC_MSG_RESULT([ memcached . . . . . . $enable_memcached])
6873 AC_MSG_RESULT([ memory . . . . . . . $enable_memory])
6874 AC_MSG_RESULT([ mic . . . . . . . . . $enable_mic])
6875 AC_MSG_RESULT([ modbus . . . . . . . $enable_modbus])
6876 AC_MSG_RESULT([ mqtt . . . . . . . . $enable_mqtt])
6877 AC_MSG_RESULT([ multimeter . . . . . $enable_multimeter])
6878 AC_MSG_RESULT([ mysql . . . . . . . . $enable_mysql])
6879 AC_MSG_RESULT([ netapp . . . . . . . $enable_netapp])
6880 AC_MSG_RESULT([ netlink . . . . . . . $enable_netlink])
6881 AC_MSG_RESULT([ network . . . . . . . $enable_network])
6882 AC_MSG_RESULT([ nfs . . . . . . . . . $enable_nfs])
6883 AC_MSG_RESULT([ nginx . . . . . . . . $enable_nginx])
6884 AC_MSG_RESULT([ notify_desktop . . . $enable_notify_desktop])
6885 AC_MSG_RESULT([ notify_email . . . . $enable_notify_email])
6886 AC_MSG_RESULT([ notify_nagios . . . . $enable_notify_nagios])
6887 AC_MSG_RESULT([ ntpd . . . . . . . . $enable_ntpd])
6888 AC_MSG_RESULT([ numa . . . . . . . . $enable_numa])
6889 AC_MSG_RESULT([ nut . . . . . . . . . $enable_nut])
6890 AC_MSG_RESULT([ olsrd . . . . . . . . $enable_olsrd])
6891 AC_MSG_RESULT([ onewire . . . . . . . $enable_onewire])
6892 AC_MSG_RESULT([ openldap . . . . . . $enable_openldap])
6893 AC_MSG_RESULT([ openvpn . . . . . . . $enable_openvpn])
6894 AC_MSG_RESULT([ oracle . . . . . . . $enable_oracle])
6895 AC_MSG_RESULT([ perl . . . . . . . . $enable_perl])
6896 AC_MSG_RESULT([ pf . . . . . . . . . $enable_pf])
6897 AC_MSG_RESULT([ pinba . . . . . . . . $enable_pinba])
6898 AC_MSG_RESULT([ ping . . . . . . . . $enable_ping])
6899 AC_MSG_RESULT([ postgresql . . . . . $enable_postgresql])
6900 AC_MSG_RESULT([ powerdns . . . . . . $enable_powerdns])
6901 AC_MSG_RESULT([ processes . . . . . . $enable_processes])
6902 AC_MSG_RESULT([ protocols . . . . . . $enable_protocols])
6903 AC_MSG_RESULT([ python . . . . . . . $enable_python])
6904 AC_MSG_RESULT([ redis . . . . . . . . $enable_redis])
6905 AC_MSG_RESULT([ routeros . . . . . . $enable_routeros])
6906 AC_MSG_RESULT([ rrdcached . . . . . . $enable_rrdcached])
6907 AC_MSG_RESULT([ rrdtool . . . . . . . $enable_rrdtool])
6908 AC_MSG_RESULT([ sensors . . . . . . . $enable_sensors])
6909 AC_MSG_RESULT([ serial . . . . . . . $enable_serial])
6910 AC_MSG_RESULT([ sigrok . . . . . . . $enable_sigrok])
6911 AC_MSG_RESULT([ smart . . . . . . . . $enable_smart])
6912 AC_MSG_RESULT([ snmp . . . . . . . . $enable_snmp])
6913 AC_MSG_RESULT([ statsd . . . . . . . $enable_statsd])
6914 AC_MSG_RESULT([ swap . . . . . . . . $enable_swap])
6915 AC_MSG_RESULT([ syslog . . . . . . . $enable_syslog])
6916 AC_MSG_RESULT([ table . . . . . . . . $enable_table])
6917 AC_MSG_RESULT([ tail_csv . . . . . . $enable_tail_csv])
6918 AC_MSG_RESULT([ tail . . . . . . . . $enable_tail])
6919 AC_MSG_RESULT([ tape . . . . . . . . $enable_tape])
6920 AC_MSG_RESULT([ target_notification . $enable_target_notification])
6921 AC_MSG_RESULT([ target_replace . . . $enable_target_replace])
6922 AC_MSG_RESULT([ target_scale . . . . $enable_target_scale])
6923 AC_MSG_RESULT([ target_set . . . . . $enable_target_set])
6924 AC_MSG_RESULT([ target_v5upgrade . . $enable_target_v5upgrade])
6925 AC_MSG_RESULT([ tcpconns . . . . . . $enable_tcpconns])
6926 AC_MSG_RESULT([ teamspeak2 . . . . . $enable_teamspeak2])
6927 AC_MSG_RESULT([ ted . . . . . . . . . $enable_ted])
6928 AC_MSG_RESULT([ thermal . . . . . . . $enable_thermal])
6929 AC_MSG_RESULT([ threshold . . . . . . $enable_threshold])
6930 AC_MSG_RESULT([ tokyotyrant . . . . . $enable_tokyotyrant])
6931 AC_MSG_RESULT([ turbostat . . . . . . $enable_turbostat])
6932 AC_MSG_RESULT([ unixsock . . . . . . $enable_unixsock])
6933 AC_MSG_RESULT([ uptime . . . . . . . $enable_uptime])
6934 AC_MSG_RESULT([ users . . . . . . . . $enable_users])
6935 AC_MSG_RESULT([ uuid . . . . . . . . $enable_uuid])
6936 AC_MSG_RESULT([ varnish . . . . . . . $enable_varnish])
6937 AC_MSG_RESULT([ virt . . . . . . . . $enable_virt])
6938 AC_MSG_RESULT([ vmem . . . . . . . . $enable_vmem])
6939 AC_MSG_RESULT([ vserver . . . . . . . $enable_vserver])
6940 AC_MSG_RESULT([ wireless . . . . . . $enable_wireless])
6941 AC_MSG_RESULT([ write_graphite . . . $enable_write_graphite])
6942 AC_MSG_RESULT([ write_http . . . . . $enable_write_http])
6943 AC_MSG_RESULT([ write_kafka . . . . . $enable_write_kafka])
6944 AC_MSG_RESULT([ write_log . . . . . . $enable_write_log])
6945 AC_MSG_RESULT([ write_mongodb . . . . $enable_write_mongodb])
6946 AC_MSG_RESULT([ write_prometheus. . . $enable_write_prometheus])
6947 AC_MSG_RESULT([ write_redis . . . . . $enable_write_redis])
6948 AC_MSG_RESULT([ write_riemann . . . . $enable_write_riemann])
6949 AC_MSG_RESULT([ write_sensu . . . . . $enable_write_sensu])
6950 AC_MSG_RESULT([ write_tsdb . . . . . $enable_write_tsdb])
6951 AC_MSG_RESULT([ xencpu . . . . . . . $enable_xencpu])
6952 AC_MSG_RESULT([ xmms . . . . . . . . $enable_xmms])
6953 AC_MSG_RESULT([ zfs_arc . . . . . . . $enable_zfs_arc])
6954 AC_MSG_RESULT([ zone . . . . . . . . $enable_zone])
6955 AC_MSG_RESULT([ zookeeper . . . . . . $enable_zookeeper])
6958 if test "x$dependency_error" = "xyes"; then
6959 AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6962 if test "x$dependency_warning" = "xyes"; then
6963 AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6966 # vim: set fdm=marker :