1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT([collectd],[m4_esyscmd(./version-gen.sh)])
3 AC_CONFIG_SRCDIR(src/target_set.c)
4 AC_CONFIG_HEADERS(src/config.h)
5 AC_CONFIG_AUX_DIR([libltdl/config])
7 dnl older automake's default of ARFLAGS=cru is noisy on newer binutils;
8 dnl we don't really need the 'u' even in older toolchains. Then there is
9 dnl older libtool, which spelled it AR_FLAGS
10 m4_divert_text([DEFAULTS], [: "${ARFLAGS=cr} ${AR_FLAGS=cr}"])
12 m4_ifdef([LT_PACKAGE_VERSION],
15 LT_CONFIG_LTDL_DIR([libltdl])
17 LTDL_INIT([convenience])
18 AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.])
23 AC_LIBLTDL_CONVENIENCE
27 AC_CONFIG_SUBDIRS(libltdl)
28 AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.])
32 AM_CONDITIONAL([BUILD_INCLUDED_LTDL], [test "x$LTDLDEPS" != "x"])
34 AM_INIT_AUTOMAKE([subdir-objects tar-pax dist-bzip2 foreign])
35 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
38 AC_PREFIX_DEFAULT("/opt/collectd")
43 # Checks for programs.
53 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
60 AC_PATH_PROG([VALGRIND], [valgrind])
62 # Warn when pkg.m4 is missing
63 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
67 AC_CACHE_CHECK([if bison is the parser generator],
68 [collectd_cv_prog_bison],
69 [AS_IF([$YACC --version 2>/dev/null | $EGREP -q '^bison '],
70 [collectd_cv_prog_bison=yes], [collectd_cv_prog_bison=no]
74 if test "x$collectd_cv_prog_bison" = "xno" && test ! -f "${srcdir}/src/liboconfig/parser.c"
76 AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/src/liboconfig/parser.c. Please install bison])
79 AC_PATH_PROG([PROTOC], [protoc])
81 if test "x$PROTOC" != "x"; then
82 AC_MSG_CHECKING([for protoc 3.0.0+])
83 if $PROTOC --version | grep -q libprotoc.3; then
84 protoc3="yes (`$PROTOC --version`)"
87 protoc3="no (`$PROTOC --version`)"
89 AC_MSG_RESULT([$protoc3])
91 AM_CONDITIONAL(HAVE_PROTOC3, test "x$have_protoc3" = "xyes")
93 AC_PATH_PROG([GRPC_CPP_PLUGIN], [grpc_cpp_plugin])
94 AM_CONDITIONAL(HAVE_GRPC_CPP, test "x$GRPC_CPP_PLUGIN" != "x")
96 AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no])
97 if test "x$have_protoc_c" = "xno"
99 have_protoc_c="no (protoc-c compiler not found)"
102 if test "x$have_protoc_c" = "xyes"
104 AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
105 [have_protoc_c="yes"; break],
106 [have_protoc_c="no (<google/protobuf-c/protobuf-c.h> not found)"])
108 if test "x$have_protoc_c" = "xyes"
110 AC_CHECK_LIB([protobuf-c], [protobuf_c_message_pack],
111 [have_protoc_c="yes"],
112 [have_protoc_c="no (libprotobuf-c not found)"])
115 AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")
117 AC_MSG_CHECKING([for kernel type ($host_os)])
120 AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
124 AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
128 AC_DEFINE([KERNEL_DARWIN], 1, [True if program is to be compiled for a Darwin kernel])
132 AC_DEFINE([KERNEL_OPENBSD], 1, [True if program is to be compiled for an OpenBSD kernel])
136 AC_DEFINE([KERNEL_NETBSD], 1, [True if program is to be compiled for a NetBSD kernel])
140 AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
144 AC_DEFINE([KERNEL_FREEBSD], 1, [True if program is to be compiled for a FreeBSD kernel])
150 AC_MSG_RESULT([$ac_system])
152 AM_CONDITIONAL([BUILD_LINUX],[test "x$ac_system" = "xLinux"])
153 AM_CONDITIONAL([BUILD_SOLARIS],[test "x$ac_system" = "xSolaris"])
154 AM_CONDITIONAL([BUILD_DARWIN],[test "x$ac_system" = "xDarwin"])
155 AM_CONDITIONAL([BUILD_OPENBSD],[test "x$ac_system" = "xOpenBSD"])
156 AM_CONDITIONAL([BUILD_AIX],[test "x$ac_system" = "xAIX"])
157 AM_CONDITIONAL([BUILD_FREEBSD],[test "x$ac_system" = "xFreeBSD"])
159 if test "x$ac_system" = "xLinux"
161 AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
162 if test -z "$KERNEL_DIR"
164 KERNEL_DIR="/lib/modules/`uname -r`/source"
167 KERNEL_CFLAGS="-I$KERNEL_DIR/include"
168 AC_SUBST(KERNEL_CFLAGS)
171 if test "x$ac_system" = "xSolaris"
173 AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
174 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
176 AC_MSG_CHECKING([whether compiler builds 64bit binaries])
177 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
179 # error "Compiler not in 64bit mode."
182 [AC_MSG_RESULT([yes])],
185 AC_MSG_NOTICE([Solaris detected. Please consider building a 64-bit binary.])
189 if test "x$ac_system" = "xAIX"
191 AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
194 # Where to install .pc files.
195 pkgconfigdir="${libdir}/pkgconfig"
196 AC_SUBST(pkgconfigdir)
198 # Check for standards compliance mode
199 AC_ARG_ENABLE(standards,
200 AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
201 [enable_standards="$enableval"],
202 [enable_standards="no"])
203 if test "x$enable_standards" = "xyes"
205 AC_DEFINE(_ISOC99_SOURCE, 1, [Define to enforce ISO C99 compliance.])
206 AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
207 AC_DEFINE(_XOPEN_SOURCE, 700, [Define to enforce X/Open 7 (XSI) compliance.])
208 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
209 if test "x$GCC" = "xyes"
211 CFLAGS="$CFLAGS -std=c99"
214 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
217 # Checks for header files.
224 AC_CHECK_HEADERS(stdio.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h endian.h sys/isa_defs.h fnmatch.h libgen.h)
226 # For entropy plugin on newer NetBSD
227 AC_CHECK_HEADERS(sys/rndio.h, [], [],
228 [#if HAVE_SYS_TYPES_H
229 # include <sys/types.h>
232 # include <sys/ioctl.h>
235 # include <sys/param.h>
240 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
245 # include <sys/types.h>
248 AC_CHECK_HEADERS(netinet/in.h, [], [],
253 # include <sys/types.h>
255 #if HAVE_NETINET_IN_SYSTM_H
256 # include <netinet/in_systm.h>
259 AC_CHECK_HEADERS(netinet/ip.h, [], [],
264 # include <sys/types.h>
266 #if HAVE_NETINET_IN_SYSTM_H
267 # include <netinet/in_systm.h>
269 #if HAVE_NETINET_IN_H
270 # include <netinet/in.h>
273 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
278 # include <sys/types.h>
280 #if HAVE_NETINET_IN_SYSTM_H
281 # include <netinet/in_systm.h>
283 #if HAVE_NETINET_IN_H
284 # include <netinet/in.h>
286 #if HAVE_NETINET_IP_H
287 # include <netinet/ip.h>
290 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
295 # include <sys/types.h>
297 #if HAVE_NETINET_IN_SYSTM_H
298 # include <netinet/in_systm.h>
300 #if HAVE_NETINET_IN_H
301 # include <netinet/in.h>
303 #if HAVE_NETINET_IP_H
304 # include <netinet/ip.h>
307 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
312 # include <sys/types.h>
314 #if HAVE_NETINET_IN_SYSTM_H
315 # include <netinet/in_systm.h>
317 #if HAVE_NETINET_IN_H
318 # include <netinet/in.h>
321 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
326 # include <sys/types.h>
328 #if HAVE_NETINET_IN_SYSTM_H
329 # include <netinet/in_systm.h>
331 #if HAVE_NETINET_IN_H
332 # include <netinet/in.h>
334 #if HAVE_NETINET_IP6_H
335 # include <netinet/ip6.h>
338 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
343 # include <sys/types.h>
345 #if HAVE_NETINET_IN_SYSTM_H
346 # include <netinet/in_systm.h>
348 #if HAVE_NETINET_IN_H
349 # include <netinet/in.h>
351 #if HAVE_NETINET_IP_H
352 # include <netinet/ip.h>
355 AC_CHECK_HEADERS(netinet/udp.h, [], [],
360 # include <sys/types.h>
362 #if HAVE_NETINET_IN_SYSTM_H
363 # include <netinet/in_systm.h>
365 #if HAVE_NETINET_IN_H
366 # include <netinet/in.h>
368 #if HAVE_NETINET_IP_H
369 # include <netinet/ip.h>
374 AC_CHECK_TYPES([struct ip6_ext], [have_ip6_ext="yes"], [have_ip6_ext="no"],
379 # include <sys/types.h>
381 #if HAVE_NETINET_IN_SYSTM_H
382 # include <netinet/in_systm.h>
384 #if HAVE_NETINET_IN_H
385 # include <netinet/in.h>
387 #if HAVE_NETINET_IP6_H
388 # include <netinet/ip6.h>
392 if test "x$have_ip6_ext" = "xno"; then
393 SAVE_CFLAGS="$CFLAGS"
394 CFLAGS="$CFLAGS -DSOLARIS2=8"
396 AC_CHECK_TYPES([struct ip6_ext],
397 [have_ip6_ext="yes, with -DSOLARIS2=8"],
403 # include <sys/types.h>
405 #if HAVE_NETINET_IN_SYSTM_H
406 # include <netinet/in_systm.h>
408 #if HAVE_NETINET_IN_H
409 # include <netinet/in.h>
411 #if HAVE_NETINET_IP6_H
412 # include <netinet/ip6.h>
416 if test "x$have_ip6_ext" = "xno"; then
417 CFLAGS="$SAVE_CFLAGS"
422 AC_CHECK_HEADERS(sys/dkstat.h)
423 if test "x$ac_system" = "xDarwin"
425 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)
426 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
427 # For the battery plugin
428 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
430 #if HAVE_IOKIT_IOKITLIB_H
431 # include <IOKit/IOKitLib.h>
433 #if HAVE_IOKIT_IOTYPES_H
434 # include <IOKit/IOTypes.h>
440 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
443 # include <sys/types.h>
446 # include <sys/param.h>
450 AC_MSG_CHECKING([for sysctl kern.cp_times])
451 if test -x /sbin/sysctl
453 /sbin/sysctl kern.cp_times >/dev/null 2>&1
457 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
458 [Define if sysctl supports kern.cp_times])
466 AC_MSG_CHECKING([for sysctl kern.cp_time])
467 if test -x /sbin/sysctl
469 /sbin/sysctl kern.cp_time >/dev/null 2>&1
473 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIME, 1,
474 [Define if sysctl supports kern.cp_time])
483 AC_CHECK_HEADERS(linux/major.h)
485 # For md module (Linux only)
486 if test "x$ac_system" = "xLinux"
488 AC_CHECK_HEADERS(linux/raid/md_u.h,
489 [have_linux_raid_md_u_h="yes"],
490 [have_linux_raid_md_u_h="no"],
492 #include <sys/ioctl.h>
493 #include <linux/major.h>
494 #include <linux/types.h>
497 have_linux_raid_md_u_h="no"
500 # For the wireless module
501 have_linux_wireless_h="no"
502 if test "x$ac_system" = "xLinux"
504 AC_CHECK_HEADERS(linux/wireless.h,
505 [have_linux_wireless_h="yes"],
506 [have_linux_wireless_h="no"],
509 #include <sys/ioctl.h>
510 #include <sys/socket.h>
514 # For the swap module
515 have_sys_swap_h="yes"
516 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
518 #undef _FILE_OFFSET_BITS
519 #undef _LARGEFILE64_SOURCE
521 # include <sys/types.h>
524 # include <sys/param.h>
529 # For the processes plugin
531 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
533 # For interface plugin
534 AC_CHECK_HEADERS(ifaddrs.h)
535 AC_CHECK_HEADERS(net/if.h, [], [],
538 # include <sys/types.h>
540 #if HAVE_SYS_SOCKET_H
541 # include <sys/socket.h>
544 AC_CHECK_HEADERS(linux/if.h, [], [],
547 # include <sys/types.h>
549 #if HAVE_SYS_SOCKET_H
550 # include <sys/socket.h>
553 AC_CHECK_HEADERS(linux/inet_diag.h, [], [],
556 # include <sys/types.h>
558 #if HAVE_SYS_SOCKET_H
559 # include <sys/socket.h>
561 #if HAVE_LINUX_INET_DIAG_H
562 # include <linux/inet_diag.h>
565 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
568 # include <sys/types.h>
570 #if HAVE_SYS_SOCKET_H
571 # include <sys/socket.h>
574 # include <linux/if.h>
579 AC_CHECK_HEADERS(linux/sockios.h,
580 [have_linux_sockios_h="yes"],
581 [have_linux_sockios_h="no"],
584 # include <sys/ioctl.h>
590 AC_CHECK_HEADERS(linux/ethtool.h,
591 [have_linux_ethtool_h="yes"],
592 [have_linux_ethtool_h="no"],
595 # include <sys/ioctl.h>
600 #if HAVE_LINUX_SOCKIOS_H
601 # include <linux/sockios.h>
606 have_linux_ip_vs_h="no"
607 have_net_ip_vs_h="no"
609 ip_vs_h_needs_kernel_cflags="no"
610 if test "x$ac_system" = "xLinux"
612 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
613 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
614 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
616 if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
618 SAVE_CFLAGS="$CFLAGS"
619 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
621 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
623 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
624 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
625 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
627 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
629 ip_vs_h_needs_kernel_cflags="yes"
632 CFLAGS="$SAVE_CFLAGS"
635 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
638 AC_CHECK_HEADERS(sys/ucred.h, [], [],
641 # include <sys/types.h>
644 # include <sys/param.h>
648 # For mount interface
649 AC_CHECK_HEADERS(sys/mount.h, [], [],
652 # include <sys/types.h>
655 # include <sys/param.h>
659 # For the email plugin
660 AC_CHECK_HEADERS(linux/un.h, [], [],
662 #if HAVE_SYS_SOCKET_H
663 # include <sys/socket.h>
692 AC_CHECK_HEADERS([xfs/xqm.h], [], [],
698 AC_CHECK_HEADERS(arpa/nameser.h)
699 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
701 #if HAVE_ARPA_NAMESER_H
702 # include <arpa/nameser.h>
706 AC_CHECK_HEADERS(net/if_arp.h, [], [],
707 [#if HAVE_SYS_SOCKET_H
708 # include <sys/socket.h>
711 AC_CHECK_HEADERS(net/ppp_defs.h)
712 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
713 [#if HAVE_NET_PPP_DEFS_H
714 # include <net/ppp_defs.h>
717 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
722 # include <sys/types.h>
724 #if HAVE_SYS_SOCKET_H
725 # include <sys/socket.h>
730 #if HAVE_NETINET_IN_H
731 # include <netinet/in.h>
735 have_net_pfvar_h="no"
736 AC_CHECK_HEADERS(net/pfvar.h,
737 [have_net_pfvar_h="yes"],
738 [have_net_pfvar_h="no"],
741 # include <sys/ioctl.h>
743 #if HAVE_SYS_SOCKET_H
744 # include <sys/socket.h>
749 #if HAVE_NETINET_IN_H
750 # include <netinet/in.h>
754 # For the multimeter plugin
756 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
758 # For the turbostat plugin
759 have_asm_msrindex_h="no"
760 AC_CHECK_HEADERS(asm/msr-index.h, [have_asm_msrindex_h="yes"])
762 if test "x$have_asm_msrindex_h" = "xyes"
764 AC_CACHE_CHECK([whether asm/msr-index.h has MSR_PKG_C10_RESIDENCY],
765 [c_cv_have_usable_asm_msrindex_h],
766 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
768 #include<asm/msr-index.h>
771 int y = MSR_PKG_C10_RESIDENCY;
775 [c_cv_have_usable_asm_msrindex_h="yes"],
776 [c_cv_have_usable_asm_msrindex_h="no"],
782 AC_CHECK_HEADERS(cpuid.h, [have_cpuid_h="yes"])
784 AC_CHECK_HEADERS(sys/capability.h)
786 # Checks for typedefs, structures, and compiler characteristics.
795 # Checks for library functions.
797 AC_PROG_GCC_TRADITIONAL
798 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)
805 AC_LANG_SOURCE([[int main(void){}]])
807 $CXX -c conftest.cpp $CXXFLAGS $@ > /dev/null 2> /dev/null
814 SAVE_CFLAGS="$CFLAGS"
815 # Emulate behavior of src/Makefile.am
816 if test "x$GCC" = "xyes"
818 CFLAGS="$CFLAGS -Wall -Werror"
821 AC_CACHE_CHECK([for strtok_r],
822 [c_cv_have_strtok_r_default],
831 char buffer[] = "foo,bar,baz";
838 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
841 printf ("token = %s;\n", token);
845 [c_cv_have_strtok_r_default="yes"],
846 [c_cv_have_strtok_r_default="no"]
850 if test "x$c_cv_have_strtok_r_default" = "xno"
852 CFLAGS="$CFLAGS -D_REENTRANT=1"
854 AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
855 [c_cv_have_strtok_r_reentrant],
864 char buffer[] = "foo,bar,baz";
871 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
874 printf ("token = %s;\n", token);
878 [c_cv_have_strtok_r_reentrant="yes"],
879 [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
884 CFLAGS="$SAVE_CFLAGS"
885 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
887 CFLAGS="$CFLAGS -D_REENTRANT=1"
890 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
892 socket_needs_socket="no"
893 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
894 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
896 clock_gettime_needs_rt="no"
897 clock_gettime_needs_posix4="no"
898 have_clock_gettime="no"
899 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
900 if test "x$have_clock_gettime" = "xno"
902 AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
903 have_clock_gettime="yes"])
905 if test "x$have_clock_gettime" = "xno"
907 AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
908 have_clock_gettime="yes"])
910 if test "x$have_clock_gettime" = "xyes"
912 AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
915 nanosleep_needs_rt="no"
916 nanosleep_needs_posix4="no"
917 AC_CHECK_FUNCS(nanosleep,
919 AC_CHECK_LIB(rt, nanosleep,
920 [nanosleep_needs_rt="yes"],
921 AC_CHECK_LIB(posix4, nanosleep,
922 [nanosleep_needs_posix4="yes"],
923 AC_MSG_ERROR(cannot find nanosleep))))
925 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
926 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
928 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
929 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
930 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
931 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
932 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
933 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
934 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
935 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
936 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
937 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
938 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
939 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
941 # Check for strptime {{{
942 if test "x$GCC" = "xyes"
944 SAVE_CFLAGS="$CFLAGS"
945 CFLAGS="$CFLAGS -Wall -Wextra -Werror"
948 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
949 if test "x$have_strptime" = "xyes"
951 AC_CACHE_CHECK([whether strptime is exported by default],
952 [c_cv_have_strptime_default],
953 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
959 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
962 [c_cv_have_strptime_default="yes"],
963 [c_cv_have_strptime_default="no"]))
965 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
967 AC_CACHE_CHECK([whether strptime needs standards mode],
968 [c_cv_have_strptime_standards],
969 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
971 #ifndef _ISOC99_SOURCE
972 # define _ISOC99_SOURCE 1
974 #ifndef _POSIX_C_SOURCE
975 # define _POSIX_C_SOURCE 200112L
977 #ifndef _XOPEN_SOURCE
978 # define _XOPEN_SOURCE 500
984 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
987 [c_cv_have_strptime_standards="yes"],
988 [c_cv_have_strptime_standards="no"]))
990 if test "x$c_cv_have_strptime_standards" = "xyes"
992 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
998 if test "x$GCC" = "xyes"
1000 CFLAGS="$SAVE_CFLAGS"
1002 # }}} Check for strptime
1004 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
1005 if test "x$have_swapctl" = "xyes"; then
1006 AC_CACHE_CHECK([whether swapctl takes two arguments],
1007 [c_cv_have_swapctl_two_args],
1008 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1010 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1011 # undef _FILE_OFFSET_BITS
1012 # undef _LARGEFILE64_SOURCE
1014 #include <sys/stat.h>
1015 #include <sys/param.h>
1016 #include <sys/swap.h>
1020 int num = swapctl(0, NULL);
1023 [c_cv_have_swapctl_two_args="yes"],
1024 [c_cv_have_swapctl_two_args="no"]
1027 AC_CACHE_CHECK([whether swapctl takes three arguments],
1028 [c_cv_have_swapctl_three_args],
1032 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1033 # undef _FILE_OFFSET_BITS
1034 # undef _LARGEFILE64_SOURCE
1036 #include <sys/stat.h>
1037 #include <sys/param.h>
1038 #include <sys/swap.h>
1042 int num = swapctl(0, NULL, 0);
1045 [c_cv_have_swapctl_three_args="yes"],
1046 [c_cv_have_swapctl_three_args="no"]
1050 # Check for different versions of `swapctl' here..
1051 if test "x$have_swapctl" = "xyes"; then
1052 if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
1053 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
1054 [Define if the function swapctl exists and takes two arguments.])
1056 if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
1057 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
1058 [Define if the function swapctl exists and takes three arguments.])
1063 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
1065 if test "x$withval" = "xno"; then
1067 else if test "x$withval" = "xyes"; then
1074 if test "x$nan_type" = "xnone"; then
1075 AC_CACHE_CHECK([whether NAN is defined by default],
1076 [c_cv_have_nan_default],
1077 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1081 static double foo = NAN;
1090 [c_cv_have_nan_default="yes"],
1091 [c_cv_have_nan_default="no"]
1094 if test "x$c_cv_have_nan_default" = "xyes"
1099 if test "x$nan_type" = "xnone"; then
1100 AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
1101 [c_cv_have_nan_isoc],
1102 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1105 #define __USE_ISOC99 1
1107 static double foo = NAN;
1116 [c_cv_have_nan_isoc="yes"],
1117 [c_cv_have_nan_isoc="no"]
1120 if test "x$c_cv_have_nan_isoc" = "xyes"
1125 if test "x$nan_type" = "xnone"; then
1126 SAVE_LDFLAGS=$LDFLAGS
1127 LDFLAGS="$LDFLAGS -lm"
1128 AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1129 [c_cv_have_nan_zero],
1130 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1137 #define NAN (0.0 / 0.0)
1139 # define isnan(f) ((f) != (f))
1141 static double foo = NAN;
1150 [c_cv_have_nan_zero="yes"],
1151 [c_cv_have_nan_zero="no"]
1154 LDFLAGS=$SAVE_LDFLAGS
1155 if test "x$c_cv_have_nan_zero" = "xyes"
1161 if test "x$nan_type" = "xdefault"; then
1162 AC_DEFINE(NAN_STATIC_DEFAULT, 1,
1163 [Define if NAN is defined by default and can initialize static variables.])
1164 else if test "x$nan_type" = "xisoc99"; then
1165 AC_DEFINE(NAN_STATIC_ISOC, 1,
1166 [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
1167 else if test "x$nan_type" = "xzero"; then
1168 AC_DEFINE(NAN_ZERO_ZERO, 1,
1169 [Define if NAN can be defined as (0.0 / 0.0)])
1171 AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1174 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
1176 if test "x$withval" = "xnothing"; then
1177 fp_layout_type="nothing"
1178 else if test "x$withval" = "xendianflip"; then
1179 fp_layout_type="endianflip"
1180 else if test "x$withval" = "xintswap"; then
1181 fp_layout_type="intswap"
1183 AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1186 [fp_layout_type="unknown"])
1188 if test "x$fp_layout_type" = "xunknown"; then
1189 AC_CACHE_CHECK([if doubles are stored in x86 representation],
1190 [c_cv_fp_layout_need_nothing],
1191 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1197 # include <stdint.h>
1200 # include <inttypes.h>
1203 # include <stdbool.h>
1213 memcpy ((void *) &i0, (void *) &d, 8);
1216 memcpy ((void *) c, (void *) &i1, 8);
1218 if ((c[0] == 0x2f) && (c[1] == 0x25)
1219 && (c[2] == 0xc0) && (c[3] == 0xc7)
1220 && (c[4] == 0x43) && (c[5] == 0x2b)
1221 && (c[6] == 0x1f) && (c[7] == 0x5b))
1227 [c_cv_fp_layout_need_nothing="yes"],
1228 [c_cv_fp_layout_need_nothing="no"]
1231 if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1232 fp_layout_type="nothing"
1235 if test "x$fp_layout_type" = "xunknown"; then
1236 AC_CACHE_CHECK([if endianflip converts to x86 representation],
1237 [c_cv_fp_layout_need_endianflip],
1238 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1244 # include <stdint.h>
1247 # include <inttypes.h>
1250 # include <stdbool.h>
1252 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1253 (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1254 (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1255 (((uint64_t)(A) & 0x000000ff00000000LL) >> 8) | \
1256 (((uint64_t)(A) & 0x00000000ff000000LL) << 8) | \
1257 (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1258 (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1259 (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1268 memcpy ((void *) &i0, (void *) &d, 8);
1270 i1 = endianflip (i0);
1271 memcpy ((void *) c, (void *) &i1, 8);
1273 if ((c[0] == 0x2f) && (c[1] == 0x25)
1274 && (c[2] == 0xc0) && (c[3] == 0xc7)
1275 && (c[4] == 0x43) && (c[5] == 0x2b)
1276 && (c[6] == 0x1f) && (c[7] == 0x5b))
1282 [c_cv_fp_layout_need_endianflip="yes"],
1283 [c_cv_fp_layout_need_endianflip="no"]
1286 if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1287 fp_layout_type="endianflip"
1290 if test "x$fp_layout_type" = "xunknown"; then
1291 AC_CACHE_CHECK([if intswap converts to x86 representation],
1292 [c_cv_fp_layout_need_intswap],
1293 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1299 # include <stdint.h>
1302 # include <inttypes.h>
1305 # include <stdbool.h>
1307 #define intswap(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1308 (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1317 memcpy ((void *) &i0, (void *) &d, 8);
1320 memcpy ((void *) c, (void *) &i1, 8);
1322 if ((c[0] == 0x2f) && (c[1] == 0x25)
1323 && (c[2] == 0xc0) && (c[3] == 0xc7)
1324 && (c[4] == 0x43) && (c[5] == 0x2b)
1325 && (c[6] == 0x1f) && (c[7] == 0x5b))
1331 [c_cv_fp_layout_need_intswap="yes"],
1332 [c_cv_fp_layout_need_intswap="no"]
1335 if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1336 fp_layout_type="intswap"
1340 if test "x$fp_layout_type" = "xnothing"; then
1341 AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1342 [Define if doubles are stored in x86 representation.])
1343 else if test "x$fp_layout_type" = "xendianflip"; then
1344 AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1345 [Define if endianflip is needed to convert to x86 representation.])
1346 else if test "x$fp_layout_type" = "xintswap"; then
1347 AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1348 [Define if intswap is needed to convert to x86 representation.])
1350 AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1353 # --with-useragent {{{
1354 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1356 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1358 AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1365 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1366 have_getvfsstat="no"
1367 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1368 have_listmntent="no"
1369 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1370 have_getmntent_r="no"
1371 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"])
1374 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1375 if test "x$have_getmntent" = "xno"; then
1376 AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1378 if test "x$have_getmntent" = "xno"; then
1379 AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1381 if test "x$have_getmntent" = "xno"; then
1382 AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1385 if test "x$have_getmntent" = "xc"; then
1386 AC_CACHE_CHECK([whether getmntent takes one argument],
1387 [c_cv_have_one_getmntent],
1391 #include "$srcdir/src/utils_mount.h"
1396 fh = setmntent ("/etc/mtab", "r");
1397 me = getmntent (fh);
1398 return(me->mnt_passno);
1401 [c_cv_have_one_getmntent="yes"],
1402 [c_cv_have_one_getmntent="no"]
1405 AC_CACHE_CHECK([whether getmntent takes two arguments],
1406 [c_cv_have_two_getmntent],
1410 #include "$srcdir/src/utils_mount.h"
1416 fh = fopen ("/etc/mnttab", "r");
1417 status = getmntent (fh, &mt);
1421 [c_cv_have_two_getmntent="yes"],
1422 [c_cv_have_two_getmntent="no"]
1427 # Check for different versions of `getmntent' here..
1429 if test "x$have_getmntent" = "xc"; then
1430 if test "x$c_cv_have_one_getmntent" = "xyes"; then
1431 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1432 [Define if the function getmntent exists and takes one argument.])
1434 if test "x$c_cv_have_two_getmntent" = "xyes"; then
1435 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1436 [Define if the function getmntent exists and takes two arguments.])
1439 if test "x$have_getmntent" = "xsun"; then
1440 AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1441 [Define if the function getmntent exists. It's the version from libsun.])
1443 if test "x$have_getmntent" = "xseq"; then
1444 AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1445 [Define if the function getmntent exists. It's the version from libseq.])
1447 if test "x$have_getmntent" = "xgen"; then
1448 AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1449 [Define if the function getmntent exists. It's the version from libgen.])
1453 AC_CACHE_CHECK([if have htonll defined],
1455 AC_LINK_IFELSE([AC_LANG_PROGRAM(
1457 #include <sys/types.h>
1458 #include <netinet/in.h>
1460 # include <inttypes.h>
1467 [c_cv_have_htonll="yes"],
1468 [c_cv_have_htonll="no"]
1471 if test "x$c_cv_have_htonll" = "xyes"
1473 AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1476 # Check for structures
1477 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1478 [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1481 #include <sys/types.h>
1482 #include <sys/socket.h>
1485 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1486 [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1489 #include <sys/types.h>
1490 #include <sys/socket.h>
1491 #include <linux/if.h>
1492 #include <linux/netdevice.h>
1494 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1495 [AC_DEFINE(HAVE_STRUCT_LINUX_INET_DIAG_REQ, 1, [Define if struct inet_diag_req exists and is usable.])],
1498 #include <linux/inet_diag.h>
1502 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1505 #include <netinet/in.h>
1509 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1511 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1512 [Define if struct kinfo_proc exists in the FreeBSD variant.])
1513 have_struct_kinfo_proc_freebsd="yes"
1516 have_struct_kinfo_proc_freebsd="no"
1520 #include <sys/param.h>
1521 #include <sys/sysctl.h>
1522 #include <sys/user.h>
1525 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1527 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1528 [Define if struct kinfo_proc exists in the OpenBSD variant.])
1529 have_struct_kinfo_proc_openbsd="yes"
1532 have_struct_kinfo_proc_openbsd="no"
1535 #include <sys/param.h>
1536 #include <sys/sysctl.h>
1541 AC_CHECK_MEMBERS([struct kinfo_proc2.p_pid, struct kinfo_proc2.p_uru_maxrss],
1543 AC_DEFINE(HAVE_STRUCT_KINFO_PROC2_NETBSD, 1,
1544 [Define if struct kinfo_proc2 exists in the NetBSD variant.])
1545 have_struct_kinfo_proc2_netbsd="yes"
1548 have_struct_kinfo_proc2_netbsd="no"
1551 #include <sys/param.h>
1552 #include <sys/sysctl.h>
1558 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1559 [#define _BSD_SOURCE
1560 #define _DEFAULT_SOURCE
1562 # include <stdint.h>
1564 #if HAVE_SYS_TYPES_H
1565 # include <sys/types.h>
1567 #if HAVE_NETINET_IN_SYSTM_H
1568 # include <netinet/in_systm.h>
1570 #if HAVE_NETINET_IN_H
1571 # include <netinet/in.h>
1573 #if HAVE_NETINET_IP_H
1574 # include <netinet/ip.h>
1576 #if HAVE_NETINET_UDP_H
1577 # include <netinet/udp.h>
1580 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1581 [#define _BSD_SOURCE
1582 #define _DEFAULT_SOURCE
1584 # include <stdint.h>
1586 #if HAVE_SYS_TYPES_H
1587 # include <sys/types.h>
1589 #if HAVE_NETINET_IN_SYSTM_H
1590 # include <netinet/in_systm.h>
1592 #if HAVE_NETINET_IN_H
1593 # include <netinet/in.h>
1595 #if HAVE_NETINET_IP_H
1596 # include <netinet/ip.h>
1598 #if HAVE_NETINET_UDP_H
1599 # include <netinet/udp.h>
1603 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1613 # Checks for libraries begin here
1616 with_libresolv="yes"
1617 AC_CHECK_LIB(resolv, res_search,
1619 AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1621 [with_libresolv="no"])
1622 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1624 dnl Check for HAL (hardware abstraction library)
1626 AC_CHECK_LIB(hal,libhal_device_property_exists,
1627 [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1629 if test "x$with_libhal" = "xyes"; then
1630 if test "x$PKG_CONFIG" != "x"; then
1631 BUILD_WITH_LIBHAL_CFLAGS="`$PKG_CONFIG --cflags hal`"
1632 BUILD_WITH_LIBHAL_LIBS="`$PKG_CONFIG --libs hal`"
1633 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1634 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1639 AC_CHECK_LIB([pthread],
1642 [AC_MSG_ERROR([Symbol 'pthread_create' not found in libpthread"])],
1645 PTHREAD_LIBS="$LIBS"
1648 AC_CHECK_HEADERS([pthread.h],
1650 [AC_MSG_ERROR([pthread.h not found])]
1652 AC_SUBST([PTHREAD_LIBS])
1654 m4_divert_once([HELP_WITH], [
1655 collectd additional packages:])
1657 if test "x$ac_system" = "xAIX"
1662 with_perfstat="no (AIX only)"
1663 with_procinfo="no (AIX only)"
1666 if test "x$with_perfstat" = "xyes"
1668 AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1669 # AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1671 if test "x$with_perfstat" = "xyes"
1673 AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1674 # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1675 AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1676 if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1678 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1681 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1683 # Processes plugin under AIX.
1684 if test "x$with_procinfo" = "xyes"
1686 AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1688 if test "x$with_procinfo" = "xyes"
1690 AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1693 if test "x$ac_system" = "xSolaris"
1698 with_kstat="no (Solaris only)"
1699 with_devinfo="no (Solaris only)"
1702 if test "x$with_kstat" = "xyes"
1704 AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1706 if test "x$with_kstat" = "xyes"
1708 AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1709 AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1711 if test "x$with_kstat" = "xyes"
1713 AC_DEFINE(HAVE_LIBKSTAT, 1,
1714 [Define to 1 if you have the 'kstat' library (-lkstat)])
1716 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1717 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1720 if test "x$ac_system" = "xDarwin"
1726 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1729 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1730 if test "x$with_kvm_getprocs" = "xyes"
1732 AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1733 [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1736 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1738 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1739 if test "x$with_kvm_getswapinfo" = "xyes"
1741 AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1742 [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1745 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1747 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1748 if test "x$with_kvm_nlist" = "xyes"
1750 AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1751 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1752 [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1755 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1757 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1758 if test "x$with_kvm_openfiles" = "xyes"
1760 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1761 [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1764 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1766 # --with-libaquaero5 {{{
1767 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1769 if test "x$withval" = "xyes"
1771 with_libaquaero5="yes"
1772 else if test "x$withval" = "xno"
1774 with_libaquaero5="no"
1776 with_libaquaero5="yes"
1777 LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1778 LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1781 [with_libaquaero5="yes"])
1783 SAVE_CPPFLAGS="$CPPFLAGS"
1784 SAVE_LDFLAGS="$LDFLAGS"
1786 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1787 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1789 if test "x$with_libaquaero5" = "xyes"
1791 if test "x$LIBAQUAERO5_CFLAGS" != "x"
1793 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1795 AC_CHECK_HEADERS(libaquaero5.h,
1796 [with_libaquaero5="yes"],
1797 [with_libaquaero5="no (libaquaero5.h not found)"])
1799 if test "x$with_libaquaero5" = "xyes"
1801 if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1803 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1805 AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1806 [with_libaquaero5="yes"],
1807 [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1810 CPPFLAGS="$SAVE_CPPFLAGS"
1811 LDFLAGS="$SAVE_LDFLAGS"
1813 if test "x$with_libaquaero5" = "xyes"
1815 BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1816 BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1817 AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1818 AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1820 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1823 # --with-libhiredis {{{
1824 AC_ARG_WITH(libhiredis, [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@],
1825 [Path to libhiredis.])],
1827 if test "x$withval" = "xyes"
1829 with_libhiredis="yes"
1830 else if test "x$withval" = "xno"
1832 with_libhiredis="no"
1834 with_libhiredis="yes"
1835 LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
1836 LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
1839 [with_libhiredis="yes"])
1841 SAVE_CPPFLAGS="$CPPFLAGS"
1842 SAVE_LDFLAGS="$LDFLAGS"
1844 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
1845 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
1847 if test "x$with_libhiredis" = "xyes"
1849 if test "x$LIBHIREDIS_CPPFLAGS" != "x"
1851 AC_MSG_NOTICE([libhiredis CPPFLAGS: $LIBHIREDIS_CPPFLAGS])
1853 AC_CHECK_HEADERS(hiredis/hiredis.h,
1854 [with_libhiredis="yes"],
1855 [with_libhiredis="no (hiredis.h not found)"])
1857 if test "x$with_libhiredis" = "xyes"
1859 if test "x$LIBHIREDIS_LDFLAGS" != "x"
1861 AC_MSG_NOTICE([libhiredis LDFLAGS: $LIBHIREDIS_LDFLAGS])
1863 AC_CHECK_LIB(hiredis, redisCommand,
1864 [with_libhiredis="yes"],
1865 [with_libhiredis="no (symbol 'redisCommand' not found)"])
1869 CPPFLAGS="$SAVE_CPPFLAGS"
1870 LDFLAGS="$SAVE_LDFLAGS"
1872 if test "x$with_libhiredis" = "xyes"
1874 BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
1875 BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
1876 AC_SUBST(BUILD_WITH_LIBHIREDIS_CPPFLAGS)
1877 AC_SUBST(BUILD_WITH_LIBHIREDIS_LDFLAGS)
1879 AM_CONDITIONAL(BUILD_WITH_LIBHIREDIS, test "x$with_libhiredis" = "xyes")
1882 # --with-libcurl {{{
1883 with_curl_config="curl-config"
1886 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1888 if test "x$withval" = "xno"
1891 else if test "x$withval" = "xyes"
1895 if test -f "$withval" && test -x "$withval"
1897 with_curl_config="$withval"
1899 else if test -x "$withval/bin/curl-config"
1901 with_curl_config="$withval/bin/curl-config"
1910 if test "x$with_libcurl" = "xyes"
1912 with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1913 curl_config_status=$?
1915 if test $curl_config_status -ne 0
1917 with_libcurl="no ($with_curl_config failed)"
1919 SAVE_CPPFLAGS="$CPPFLAGS"
1920 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1922 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1924 CPPFLAGS="$SAVE_CPPFLAGS"
1927 if test "x$with_libcurl" = "xyes"
1929 with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1930 curl_config_status=$?
1932 if test $curl_config_status -ne 0
1934 with_libcurl="no ($with_curl_config failed)"
1936 AC_CHECK_LIB(curl, curl_easy_init,
1937 [with_libcurl="yes"],
1938 [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1940 AC_CHECK_DECL(CURLOPT_USERNAME,
1941 [have_curlopt_username="yes"],
1942 [have_curlopt_username="no"],
1943 [[#include <curl/curl.h>]])
1944 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
1945 [have_curlopt_timeout="yes"],
1946 [have_curlopt_timeout="no"],
1947 [[#include <curl/curl.h>]])
1950 if test "x$with_libcurl" = "xyes"
1952 BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1953 BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1954 AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1955 AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1957 if test "x$have_curlopt_username" = "xyes"
1959 AC_DEFINE(HAVE_CURLOPT_USERNAME, 1, [Define if libcurl supports CURLOPT_USERNAME option.])
1962 if test "x$have_curlopt_timeout" = "xyes"
1964 AC_DEFINE(HAVE_CURLOPT_TIMEOUT_MS, 1, [Define if libcurl supports CURLOPT_TIMEOUT_MS option.])
1970 with_libdbi_cppflags=""
1971 with_libdbi_ldflags=""
1972 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1974 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1976 with_libdbi_cppflags="-I$withval/include"
1977 with_libdbi_ldflags="-L$withval/lib"
1980 with_libdbi="$withval"
1986 if test "x$with_libdbi" = "xyes"
1988 SAVE_CPPFLAGS="$CPPFLAGS"
1989 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1991 AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1993 CPPFLAGS="$SAVE_CPPFLAGS"
1995 if test "x$with_libdbi" = "xyes"
1997 SAVE_CPPFLAGS="$CPPFLAGS"
1998 SAVE_LDFLAGS="$LDFLAGS"
1999 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2000 LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
2002 AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
2004 CPPFLAGS="$SAVE_CPPFLAGS"
2005 LDFLAGS="$SAVE_LDFLAGS"
2007 if test "x$with_libdbi" = "xyes"
2009 BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
2010 BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
2011 BUILD_WITH_LIBDBI_LIBS="-ldbi"
2012 AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
2013 AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
2014 AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
2016 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
2019 # --with-libesmtp {{{
2020 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
2022 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2024 LDFLAGS="$LDFLAGS -L$withval/lib"
2025 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
2028 with_libesmtp="$withval"
2034 if test "x$with_libesmtp" = "xyes"
2036 AC_CHECK_LIB(esmtp, smtp_create_session,
2038 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
2039 ], [with_libesmtp="no (libesmtp not found)"])
2041 if test "x$with_libesmtp" = "xyes"
2043 AC_CHECK_HEADERS(libesmtp.h,
2045 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
2046 ], [with_libesmtp="no (libesmtp.h not found)"])
2048 if test "x$with_libesmtp" = "xyes"
2054 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
2055 [Wether or not to use the esmtp library])
2056 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
2059 # --with-libganglia {{{
2060 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
2062 if test -f "$withval" && test -x "$withval"
2064 with_libganglia_config="$withval"
2065 with_libganglia="yes"
2066 else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
2068 with_libganglia_config="$withval/bin/ganglia-config"
2069 with_libganglia="yes"
2070 else if test -d "$withval"
2072 GANGLIA_CPPFLAGS="-I$withval/include"
2073 GANGLIA_LDFLAGS="-L$withval/lib"
2074 with_libganglia="yes"
2076 with_libganglia="$withval"
2080 with_libganglia="yes"
2083 if test "x$with_libganglia" = "xyes"
2085 if test "x$with_libganglia_config" != "x"
2087 if test "x$GANGLIA_CPPFLAGS" = "x"
2089 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
2092 if test "x$GANGLIA_LDFLAGS" = "x"
2094 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
2097 if test "x$GANGLIA_LIBS" = "x"
2099 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
2102 GANGLIA_LIBS="-lganglia"
2106 SAVE_CPPFLAGS="$CPPFLAGS"
2107 SAVE_LDFLAGS="$LDFLAGS"
2108 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
2109 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
2111 if test "x$with_libganglia" = "xyes"
2113 AC_CHECK_HEADERS(gm_protocol.h,
2115 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
2116 [Define to 1 if you have the <gm_protocol.h> header file.])
2117 ], [with_libganglia="no (gm_protocol.h not found)"])
2120 if test "x$with_libganglia" = "xyes"
2122 AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
2124 AC_DEFINE(HAVE_LIBGANGLIA, 1,
2125 [Define to 1 if you have the ganglia library (-lganglia).])
2126 ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
2129 CPPFLAGS="$SAVE_CPPFLAGS"
2130 LDFLAGS="$SAVE_LDFLAGS"
2132 AC_SUBST(GANGLIA_CPPFLAGS)
2133 AC_SUBST(GANGLIA_LDFLAGS)
2134 AC_SUBST(GANGLIA_LIBS)
2135 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
2138 # --with-libgcrypt {{{
2139 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
2140 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2141 GCRYPT_LIBS="$GCRYPT_LIBS"
2142 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2144 if test -f "$withval" && test -x "$withval"
2146 with_libgcrypt_config="$withval"
2147 with_libgcrypt="yes"
2148 else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
2150 with_libgcrypt_config="$withval/bin/gcrypt-config"
2151 with_libgcrypt="yes"
2152 else if test -d "$withval"
2154 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2155 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2156 with_libgcrypt="yes"
2158 with_libgcrypt_config="gcrypt-config"
2159 with_libgcrypt="$withval"
2163 with_libgcrypt_config="libgcrypt-config"
2164 with_libgcrypt="yes"
2167 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
2169 if test "x$GCRYPT_CPPFLAGS" = "x"
2171 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2174 if test "x$GCRYPT_LIBS" = "x"
2176 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2180 SAVE_CPPFLAGS="$CPPFLAGS"
2181 SAVE_LDFLAGS="$LDFLAGS"
2183 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2184 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2185 LIBS="$LIBS $GCRYPT_LIBS"
2187 if test "x$with_libgcrypt" = "xyes"
2189 if test "x$GCRYPT_CPPFLAGS" != "x"
2191 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
2193 AC_CHECK_HEADERS(gcrypt.h,
2194 [with_libgcrypt="yes"],
2195 [with_libgcrypt="no (gcrypt.h not found)"])
2198 if test "x$with_libgcrypt" = "xyes"
2200 AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2201 [with_libgcrypt="yes"],
2202 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
2205 CPPFLAGS="$SAVE_CPPFLAGS"
2206 LDFLAGS="$SAVE_LDFLAGS"
2209 if test "x$with_libgcrypt" = "xyes"
2211 AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
2214 AC_SUBST(GCRYPT_CPPFLAGS)
2215 AC_SUBST(GCRYPT_LDFLAGS)
2216 AC_SUBST(GCRYPT_LIBS)
2217 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
2221 AC_ARG_WITH(grpc, [AS_HELP_STRING([--without-grpc], [Disable gRPC (default: autodetect).])],
2223 with_grpc="$withval"
2229 if test "x$with_grpc" = "xyes"
2231 if test "x$have_protoc3" != "xyes"
2233 with_grpc="no (requires protoc 3.0.0+)"
2234 else if test "x$GRPC_CPP_PLUGIN" = "x"
2236 with_grpc"no (requires grpc_cpp_plugin)"
2240 if test "x$with_grpc" = "xyes"
2242 AC_MSG_CHECKING([whether $CXX accepts -std=c++11])
2243 if test_cxx_flags -std=c++11; then
2244 AC_MSG_RESULT([yes])
2247 with_grpc="no (requires C++11 support)"
2251 if test "x$with_grpc" = "xyes"
2254 SAVE_CPPFLAGS="$CPPFLAGS"
2255 SAVE_CXXFLAGS="$CXXFLAGS"
2256 CPPFLAGS="$CPPFLAGS -std=c++11"
2257 CXXFLAGS="$CXXFLAGS -std=c++11"
2258 AC_CHECK_HEADERS([grpc++/grpc++.h], [],
2259 [with_grpc="no (grpc++/grpc++.h not found)"])
2260 CPPFLAGS="$SAVE_CPPFLAGS"
2261 CXXFLAGS="$SAVE_CXXFLAGS"
2265 if test "x$with_grpc" = "xyes"
2268 AC_CHECK_LIB([grpc], [grpc_register_plugin],
2269 [with_libgrpc="yes"],
2270 [with_grpc="no (libgrpc not found)"],
2276 # --with-libiptc {{{
2277 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2279 if test "x$withval" = "xyes"
2281 with_libiptc="pkgconfig"
2282 else if test "x$withval" = "xno"
2287 with_libiptc_cflags="-I$withval/include"
2288 with_libiptc_libs="-L$withval/lib"
2292 if test "x$ac_system" = "xLinux"
2294 with_libiptc="pkgconfig"
2296 with_libiptc="no (Linux only)"
2300 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
2302 with_libiptc="no (Don't have pkg-config)"
2305 if test "x$with_libiptc" = "xpkgconfig"
2307 $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2310 with_libiptc="no (pkg-config doesn't know libiptc)"
2313 if test "x$with_libiptc" = "xpkgconfig"
2315 with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2318 with_libiptc="no ($PKG_CONFIG failed)"
2320 with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2323 with_libiptc="no ($PKG_CONFIG failed)"
2327 SAVE_CPPFLAGS="$CPPFLAGS"
2328 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2330 # check whether the header file for libiptc is available.
2331 if test "x$with_libiptc" = "xpkgconfig"
2333 AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2334 [with_libiptc="no (header file missing)"])
2336 # If the header file is available, check for the required type declaractions.
2337 # They may be missing in old versions of libiptc. In that case, they will be
2338 # declared in the iptables plugin.
2339 if test "x$with_libiptc" = "xpkgconfig"
2341 AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2343 # Check for the iptc_init symbol in the library.
2344 # This could be in iptc or ip4tc
2345 if test "x$with_libiptc" = "xpkgconfig"
2348 AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2349 [with_libiptc="pkgconfig"],
2350 [with_libiptc="no"],
2351 [$with_libiptc_libs])
2354 if test "x$with_libiptc" = "xpkgconfig"
2359 CPPFLAGS="$SAVE_CPPFLAGS"
2361 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2362 if test "x$with_libiptc" = "xyes"
2364 BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2365 BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2366 AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2367 AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2372 with_java_home="$JAVA_HOME"
2373 if test "x$with_java_home" = "x"
2375 with_java_home="/usr/lib/jvm"
2379 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2381 if test "x$withval" = "xno"
2384 else if test "x$withval" = "xyes"
2388 with_java_home="$withval"
2393 if test "x$with_java" = "xyes"
2395 if test -d "$with_java_home"
2397 AC_MSG_CHECKING([for jni.h])
2398 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2399 if test "x$TMPVAR" != "x"
2401 AC_MSG_RESULT([found in $TMPVAR])
2402 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2404 AC_MSG_RESULT([not found])
2407 AC_MSG_CHECKING([for jni_md.h])
2408 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2409 if test "x$TMPVAR" != "x"
2411 AC_MSG_RESULT([found in $TMPVAR])
2412 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2414 AC_MSG_RESULT([not found])
2417 AC_MSG_CHECKING([for libjvm.so])
2418 TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2419 if test "x$TMPVAR" != "x"
2421 AC_MSG_RESULT([found in $TMPVAR])
2422 JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2424 AC_MSG_RESULT([not found])
2427 if test "x$JAVAC" = "x"
2429 AC_MSG_CHECKING([for javac])
2430 TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2431 if test "x$TMPVAR" != "x"
2434 AC_MSG_RESULT([$JAVAC])
2436 AC_MSG_RESULT([not found])
2439 if test "x$JAR" = "x"
2441 AC_MSG_CHECKING([for jar])
2442 TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2443 if test "x$TMPVAR" != "x"
2446 AC_MSG_RESULT([$JAR])
2448 AC_MSG_RESULT([not found])
2451 else if test "x$with_java_home" != "x"
2453 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2457 if test "x$JAVA_CPPFLAGS" != "x"
2459 AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2461 if test "x$JAVA_CFLAGS" != "x"
2463 AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2465 if test "x$JAVA_LDFLAGS" != "x"
2467 AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2469 if test "x$JAVA_LIBS" != "x"
2471 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2473 if test "x$JAVAC" = "x"
2475 with_javac_path="$PATH"
2476 if test "x$with_java_home" != "x"
2478 with_javac_path="$with_java_home:with_javac_path"
2479 if test -d "$with_java_home/bin"
2481 with_javac_path="$with_java_home/bin:with_javac_path"
2485 AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2487 if test "x$JAVAC" = "x"
2489 with_java="no (javac not found)"
2491 if test "x$JAR" = "x"
2493 with_jar_path="$PATH"
2494 if test "x$with_java_home" != "x"
2496 with_jar_path="$with_java_home:$with_jar_path"
2497 if test -d "$with_java_home/bin"
2499 with_jar_path="$with_java_home/bin:$with_jar_path"
2503 AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2505 if test "x$JAR" = "x"
2507 with_java="no (jar not found)"
2510 SAVE_CPPFLAGS="$CPPFLAGS"
2511 SAVE_CFLAGS="$CFLAGS"
2512 SAVE_LDFLAGS="$LDFLAGS"
2514 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2515 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2516 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2517 LIBS="$LIBS $JAVA_LIBS"
2519 if test "x$with_java" = "xyes"
2521 AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2523 if test "x$with_java" = "xyes"
2525 AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2527 [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
2528 [$JAVA_LIBS $PTHREAD_LIBS])
2530 if test "x$with_java" = "xyes"
2532 JAVA_LIBS="$JAVA_LIBS -ljvm"
2533 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2536 CPPFLAGS="$SAVE_CPPFLAGS"
2537 CFLAGS="$SAVE_CFLAGS"
2538 LDFLAGS="$SAVE_LDFLAGS"
2541 AC_SUBST(JAVA_CPPFLAGS)
2542 AC_SUBST(JAVA_CFLAGS)
2543 AC_SUBST(JAVA_LDFLAGS)
2545 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2548 # --with-libldap {{{
2549 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2551 if test "x$withval" = "xyes"
2554 else if test "x$withval" = "xno"
2559 LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2560 LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2563 [with_libldap="yes"])
2565 SAVE_CPPFLAGS="$CPPFLAGS"
2566 SAVE_LDFLAGS="$LDFLAGS"
2568 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2569 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2571 if test "x$with_libldap" = "xyes"
2573 if test "x$LIBLDAP_CPPFLAGS" != "x"
2575 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2577 AC_CHECK_HEADERS(ldap.h,
2578 [with_libldap="yes"],
2579 [with_libldap="no ('ldap.h' not found)"])
2581 if test "x$with_libldap" = "xyes"
2583 if test "x$LIBLDAP_LDFLAGS" != "x"
2585 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2587 AC_CHECK_LIB(ldap, ldap_initialize,
2588 [with_libldap="yes"],
2589 [with_libldap="no (symbol 'ldap_initialize' not found)"])
2593 CPPFLAGS="$SAVE_CPPFLAGS"
2594 LDFLAGS="$SAVE_LDFLAGS"
2596 if test "x$with_libldap" = "xyes"
2598 BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2599 BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2600 AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2601 AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2603 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2606 # --with-liblvm2app {{{
2607 with_liblvm2app_cppflags=""
2608 with_liblvm2app_ldflags=""
2609 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2611 if test "x$withval" = "xno"
2613 with_liblvm2app="no"
2615 with_liblvm2app="yes"
2616 if test "x$withval" != "xyes"
2618 with_liblvm2app_cppflags="-I$withval/include"
2619 with_liblvm2app_ldflags="-L$withval/lib"
2624 if test "x$ac_system" = "xLinux"
2626 with_liblvm2app="yes"
2628 with_liblvm2app="no (Linux only library)"
2631 if test "x$with_liblvm2app" = "xyes"
2633 SAVE_CPPFLAGS="$CPPFLAGS"
2634 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2636 AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2638 CPPFLAGS="$SAVE_CPPFLAGS"
2641 if test "x$with_liblvm2app" = "xyes"
2643 SAVE_CPPFLAGS="$CPPFLAGS"
2644 SAVE_LDFLAGS="$LDFLAGS"
2645 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2646 LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2648 AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
2650 CPPFLAGS="$SAVE_CPPFLAGS"
2651 LDFLAGS="$SAVE_LDFLAGS"
2653 if test "x$with_liblvm2app" = "xyes"
2655 BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2656 BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2657 BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2658 AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2659 AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2660 AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2661 AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2663 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2666 # --with-libmemcached {{{
2667 with_libmemcached_cppflags=""
2668 with_libmemcached_ldflags=""
2669 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2671 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2673 with_libmemcached_cppflags="-I$withval/include"
2674 with_libmemcached_ldflags="-L$withval/lib"
2675 with_libmemcached="yes"
2677 with_libmemcached="$withval"
2681 with_libmemcached="yes"
2683 if test "x$with_libmemcached" = "xyes"
2685 SAVE_CPPFLAGS="$CPPFLAGS"
2686 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2688 AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2690 CPPFLAGS="$SAVE_CPPFLAGS"
2692 if test "x$with_libmemcached" = "xyes"
2694 SAVE_CPPFLAGS="$CPPFLAGS"
2695 SAVE_LDFLAGS="$LDFLAGS"
2696 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2697 LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2699 AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2701 CPPFLAGS="$SAVE_CPPFLAGS"
2702 LDFLAGS="$SAVE_LDFLAGS"
2704 if test "x$with_libmemcached" = "xyes"
2706 BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2707 BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2708 BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2709 AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2710 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2711 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2712 AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2714 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2717 # --with-libmodbus {{{
2718 with_libmodbus_config=""
2719 with_libmodbus_cflags=""
2720 with_libmodbus_libs=""
2721 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2723 if test "x$withval" = "xno"
2726 else if test "x$withval" = "xyes"
2728 with_libmodbus="use_pkgconfig"
2729 else if test -d "$with_libmodbus/lib"
2731 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2732 with_libmodbus_cflags="-I$withval/include"
2733 with_libmodbus_libs="-L$withval/lib -lmodbus"
2734 with_libmodbus="yes"
2737 [with_libmodbus="use_pkgconfig"])
2739 # configure using pkg-config
2740 if test "x$with_libmodbus" = "xuse_pkgconfig"
2742 if test "x$PKG_CONFIG" = "x"
2744 with_libmodbus="no (Don't have pkg-config)"
2747 if test "x$with_libmodbus" = "xuse_pkgconfig"
2749 AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2750 $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2753 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2756 if test "x$with_libmodbus" = "xuse_pkgconfig"
2758 with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2761 with_libmodbus="no ($PKG_CONFIG failed)"
2763 with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2766 with_libmodbus="no ($PKG_CONFIG failed)"
2769 if test "x$with_libmodbus" = "xuse_pkgconfig"
2771 with_libmodbus="yes"
2774 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2775 # the actual checks.
2776 if test "x$with_libmodbus" = "xyes"
2778 SAVE_CPPFLAGS="$CPPFLAGS"
2779 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2781 AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
2783 CPPFLAGS="$SAVE_CPPFLAGS"
2785 if test "x$with_libmodbus" = "xyes"
2787 SAVE_CPPFLAGS="$CPPFLAGS"
2788 SAVE_LDFLAGS="$LDFLAGS"
2790 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2791 LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2793 AC_CHECK_LIB(modbus, modbus_connect,
2794 [with_libmodbus="yes"],
2795 [with_libmodbus="no (symbol modbus_connect not found)"])
2797 CPPFLAGS="$SAVE_CPPFLAGS"
2798 LDFLAGS="$SAVE_LDFLAGS"
2800 if test "x$with_libmodbus" = "xyes"
2802 BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2803 BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2804 AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2805 AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2809 # --with-libmongoc {{{
2810 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2812 if test "x$withval" = "xyes"
2814 with_libmongoc="yes"
2815 else if test "x$withval" = "xno"
2819 with_libmongoc="yes"
2820 LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2821 LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2824 [with_libmongoc="yes"])
2826 SAVE_CPPFLAGS="$CPPFLAGS"
2827 SAVE_LDFLAGS="$LDFLAGS"
2829 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2830 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2832 if test "x$with_libmongoc" = "xyes"
2834 if test "x$LIBMONGOC_CPPFLAGS" != "x"
2836 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2838 AC_CHECK_HEADERS(mongo.h,
2839 [with_libmongoc="yes"],
2840 [with_libmongoc="no ('mongo.h' not found)"],
2842 # define MONGO_HAVE_STDINT 1
2844 # define MONGO_USE_LONG_LONG_INT 1
2848 if test "x$with_libmongoc" = "xyes"
2850 if test "x$LIBMONGOC_LDFLAGS" != "x"
2852 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2854 AC_CHECK_LIB(mongoc, mongo_run_command,
2855 [with_libmongoc="yes"],
2856 [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2859 CPPFLAGS="$SAVE_CPPFLAGS"
2860 LDFLAGS="$SAVE_LDFLAGS"
2862 if test "x$with_libmongoc" = "xyes"
2864 BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2865 BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2866 AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2867 AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2869 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2872 # --with-libmosquitto {{{
2873 with_libmosquitto_cppflags=""
2874 with_libmosquitto_ldflags=""
2875 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
2877 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2879 with_libmosquitto_cppflags="-I$withval/include"
2880 with_libmosquitto_ldflags="-L$withval/lib"
2881 with_libmosquitto="yes"
2883 with_libmosquitto="$withval"
2887 with_libmosquitto="yes"
2889 if test "x$with_libmosquitto" = "xyes"
2891 SAVE_CPPFLAGS="$CPPFLAGS"
2892 CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
2894 AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
2896 CPPFLAGS="$SAVE_CPPFLAGS"
2898 if test "x$with_libmosquitto" = "xyes"
2900 SAVE_LDFLAGS="$LDFLAGS"
2901 SAVE_CPPFLAGS="$CPPFLAGS"
2902 LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
2903 CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
2905 AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
2907 LDFLAGS="$SAVE_LDFLAGS"
2908 CPPFLAGS="$SAVE_CPPFLAGS"
2910 if test "x$with_libmosquitto" = "xyes"
2912 BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
2913 BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
2914 BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
2915 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
2916 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LDFLAGS)
2917 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
2921 # --with-libmysql {{{
2922 with_mysql_config="mysql_config"
2923 with_mysql_cflags=""
2925 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2927 if test "x$withval" = "xno"
2930 else if test "x$withval" = "xyes"
2934 if test -f "$withval" && test -x "$withval";
2936 with_mysql_config="$withval"
2937 else if test -x "$withval/bin/mysql_config"
2939 with_mysql_config="$withval/bin/mysql_config"
2947 if test "x$with_libmysql" = "xyes"
2949 with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
2950 mysql_config_status=$?
2952 if test $mysql_config_status -ne 0
2954 with_libmysql="no ($with_mysql_config failed)"
2956 SAVE_CPPFLAGS="$CPPFLAGS"
2957 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2960 have_mysql_mysql_h="no"
2961 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2963 if test "x$have_mysql_h" = "xno"
2965 AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2968 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2970 with_libmysql="no (mysql.h not found)"
2973 CPPFLAGS="$SAVE_CPPFLAGS"
2976 if test "x$with_libmysql" = "xyes"
2978 with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2979 mysql_config_status=$?
2981 if test $mysql_config_status -ne 0
2983 with_libmysql="no ($with_mysql_config failed)"
2985 SAVE_CPPFLAGS="$CPPFLAGS"
2986 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2988 LIBS="$with_mysql_libs"
2989 AC_SEARCH_LIBS([mysql_get_server_version],
2991 [with_libmysql="yes"],
2992 [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2994 CPPFLAGS="$SAVE_CPPFLAGS"
2998 if test "x$with_libmysql" = "xyes"
3000 BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
3001 BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
3002 AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
3003 AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
3005 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
3009 with_libmnl_cflags=""
3011 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
3013 echo "libmnl: withval = $withval"
3014 if test "x$withval" = "xyes"
3017 else if test "x$withval" = "xno"
3021 if test -d "$withval/include"
3023 with_libmnl_cflags="-I$withval/include"
3024 with_libmnl_libs="-L$withval/lib -lmnl"
3027 AC_MSG_ERROR("no such directory: $withval/include")
3032 if test "x$ac_system" = "xLinux"
3036 with_libmnl="no (Linux only library)"
3039 if test "x$PKG_CONFIG" = "x"
3041 with_libmnl="no (Don't have pkg-config)"
3043 if test "x$with_libmnl" = "xyes"
3045 if $PKG_CONFIG --exists libmnl 2>/dev/null; then
3046 with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
3047 with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
3050 AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
3056 #include <sys/types.h>
3057 #include <asm/types.h>
3058 #include <sys/socket.h>
3059 #include <linux/netlink.h>
3060 #include <linux/rtnetlink.h>])
3061 AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
3063 #include <sys/types.h>
3064 #include <asm/types.h>
3065 #include <sys/socket.h>])
3067 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3070 #include <sys/types.h>
3071 #include <asm/types.h>
3072 #include <sys/socket.h>
3073 #include <linux/netlink.h>
3074 #include <linux/rtnetlink.h>
3077 int retval = TCA_STATS2;
3081 [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
3083 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3086 #include <sys/types.h>
3087 #include <asm/types.h>
3088 #include <sys/socket.h>
3089 #include <linux/netlink.h>
3090 #include <linux/rtnetlink.h>
3093 int retval = TCA_STATS;
3097 [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
3099 if test "x$with_libmnl" = "xyes"
3101 AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3102 [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3105 #include <linux/if_link.h>
3108 if test "x$with_libmnl" = "xyes"
3110 AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
3111 [with_libmnl="yes"],
3112 [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3113 [$with_libmnl_libs])
3115 if test "x$with_libmnl" = "xyes"
3117 AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
3118 BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3119 BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3120 AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
3121 AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
3123 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
3126 # --with-libnetapp {{{
3127 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3128 AC_ARG_VAR([LIBNETAPP_LDFLAGS], [Linker flags required to build with libnetapp])
3129 AC_ARG_VAR([LIBNETAPP_LIBS], [Other libraries required to link against libnetapp])
3130 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
3131 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
3132 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
3133 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3135 if test -d "$withval"
3137 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3138 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3139 with_libnetapp="yes"
3141 with_libnetapp="$withval"
3145 with_libnetapp="yes"
3148 SAVE_CPPFLAGS="$CPPFLAGS"
3149 SAVE_LDFLAGS="$LDFLAGS"
3150 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3151 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3153 if test "x$with_libnetapp" = "xyes"
3155 if test "x$LIBNETAPP_CPPFLAGS" != "x"
3157 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
3159 AC_CHECK_HEADERS(netapp_api.h,
3160 [with_libnetapp="yes"],
3161 [with_libnetapp="no (netapp_api.h not found)"])
3164 if test "x$with_libnetapp" = "xyes"
3166 if test "x$LIBNETAPP_LDFLAGS" != "x"
3168 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
3171 if test "x$LIBNETAPP_LIBS" = "x"
3173 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3175 AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
3177 AC_CHECK_LIB(netapp, na_server_invoke_elem,
3178 [with_libnetapp="yes"],
3179 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3181 LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3184 CPPFLAGS="$SAVE_CPPFLAGS"
3185 LDFLAGS="$SAVE_LDFLAGS"
3187 if test "x$with_libnetapp" = "xyes"
3189 AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
3192 AC_SUBST(LIBNETAPP_CPPFLAGS)
3193 AC_SUBST(LIBNETAPP_LDFLAGS)
3194 AC_SUBST(LIBNETAPP_LIBS)
3195 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
3198 # --with-libnetsnmp {{{
3199 with_snmp_config="net-snmp-config"
3202 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3204 if test "x$withval" = "xno"
3206 with_libnetsnmp="no"
3207 else if test "x$withval" = "xyes"
3209 with_libnetsnmp="yes"
3211 if test -x "$withval"
3213 with_snmp_config="$withval"
3214 with_libnetsnmp="yes"
3216 with_snmp_config="$withval/bin/net-snmp-config"
3217 with_libnetsnmp="yes"
3221 [with_libnetsnmp="yes"])
3222 if test "x$with_libnetsnmp" = "xyes"
3224 with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
3225 snmp_config_status=$?
3227 if test $snmp_config_status -ne 0
3229 with_libnetsnmp="no ($with_snmp_config failed)"
3231 SAVE_CPPFLAGS="$CPPFLAGS"
3232 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
3234 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3236 CPPFLAGS="$SAVE_CPPFLAGS"
3239 if test "x$with_libnetsnmp" = "xyes"
3241 with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
3242 snmp_config_status=$?
3244 if test $snmp_config_status -ne 0
3246 with_libnetsnmp="no ($with_snmp_config failed)"
3248 AC_CHECK_LIB(netsnmp, init_snmp,
3249 [with_libnetsnmp="yes"],
3250 [with_libnetsnmp="no (libnetsnmp not found)"],
3254 if test "x$with_libnetsnmp" = "xyes"
3256 BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
3257 BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
3258 AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
3259 AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
3261 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
3264 # --with-liboconfig {{{
3265 with_own_liboconfig="no"
3266 liboconfig_LDFLAGS="$LDFLAGS"
3267 liboconfig_CPPFLAGS="$CPPFLAGS"
3268 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3270 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3272 if test -d "$withval/lib"
3274 liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3276 if test -d "$withval/include"
3278 liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3281 if test "x$withval" = "xno"
3283 AC_MSG_ERROR("liboconfig is required")
3287 with_liboconfig="yes"
3290 save_LDFLAGS="$LDFLAGS"
3291 save_CPPFLAGS="$CPPFLAGS"
3292 LDFLAGS="$liboconfig_LDFLAGS"
3293 CPPFLAGS="$liboconfig_CPPFLAGS"
3294 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
3296 with_liboconfig="yes"
3297 with_own_liboconfig="no"
3300 with_liboconfig="yes"
3301 with_own_liboconfig="yes"
3302 LDFLAGS="$save_LDFLAGS"
3303 CPPFLAGS="$save_CPPFLAGS"
3306 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3307 if test "x$with_own_liboconfig" = "xyes"
3309 with_liboconfig="yes (shipped version)"
3313 # --with-liboping {{{
3314 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3316 if test "x$withval" = "xyes"
3319 else if test "x$withval" = "xno"
3324 LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3325 LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3328 [with_liboping="yes"])
3330 SAVE_CPPFLAGS="$CPPFLAGS"
3331 SAVE_LDFLAGS="$LDFLAGS"
3333 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3334 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3336 if test "x$with_liboping" = "xyes"
3338 if test "x$LIBOPING_CPPFLAGS" != "x"
3340 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3342 AC_CHECK_HEADERS(oping.h,
3343 [with_liboping="yes"],
3344 [with_liboping="no (oping.h not found)"])
3346 if test "x$with_liboping" = "xyes"
3348 if test "x$LIBOPING_LDFLAGS" != "x"
3350 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3352 AC_CHECK_LIB(oping, ping_construct,
3353 [with_liboping="yes"],
3354 [with_liboping="no (symbol 'ping_construct' not found)"])
3357 CPPFLAGS="$SAVE_CPPFLAGS"
3358 LDFLAGS="$SAVE_LDFLAGS"
3360 if test "x$with_liboping" = "xyes"
3362 BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3363 BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3364 AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3365 AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3367 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3371 with_oracle_cppflags=""
3373 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3375 if test "x$withval" = "xyes"
3377 if test "x$ORACLE_HOME" = "x"
3379 AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3382 else if test "x$withval" = "xno"
3387 ORACLE_HOME="$withval"
3391 if test "x$ORACLE_HOME" = "x"
3393 with_oracle="no (ORACLE_HOME is not set)"
3398 if test "x$ORACLE_HOME" != "x"
3400 with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3402 if test -e "$ORACLE_HOME/lib/ldflags"
3404 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3406 #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3407 with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3409 if test "x$with_oracle" = "xyes"
3411 SAVE_CPPFLAGS="$CPPFLAGS"
3412 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3414 AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3416 CPPFLAGS="$SAVE_CPPFLAGS"
3418 if test "x$with_oracle" = "xyes"
3420 SAVE_CPPFLAGS="$CPPFLAGS"
3422 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3423 LIBS="$LIBS $with_oracle_libs"
3425 AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3427 CPPFLAGS="$SAVE_CPPFLAGS"
3430 if test "x$with_oracle" = "xyes"
3432 BUILD_WITH_ORACLE_CPPFLAGS="$with_oracle_cppflags"
3433 BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3434 AC_SUBST(BUILD_WITH_ORACLE_CPPFLAGS)
3435 AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3439 # --with-libowcapi {{{
3440 with_libowcapi_cppflags=""
3441 with_libowcapi_ldflags=""
3442 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3444 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3446 with_libowcapi_cppflags="-I$withval/include"
3447 with_libowcapi_ldflags="-L$withval/lib"
3448 with_libowcapi="yes"
3450 with_libowcapi="$withval"
3454 with_libowcapi="yes"
3456 if test "x$with_libowcapi" = "xyes"
3458 SAVE_CPPFLAGS="$CPPFLAGS"
3459 CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
3461 AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3463 CPPFLAGS="$SAVE_CPPFLAGS"
3465 if test "x$with_libowcapi" = "xyes"
3467 SAVE_LDFLAGS="$LDFLAGS"
3468 SAVE_CPPFLAGS="$CPPFLAGS"
3469 LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
3470 CPPFLAGS="$with_libowcapi_cppflags"
3472 AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3474 LDFLAGS="$SAVE_LDFLAGS"
3475 CPPFLAGS="$SAVE_CPPFLAGS"
3477 if test "x$with_libowcapi" = "xyes"
3479 BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3480 BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
3481 BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
3482 AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3483 AC_SUBST(BUILD_WITH_LIBOWCAPI_LDFLAGS)
3484 AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3488 # --with-libpcap {{{
3489 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3491 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3493 LDFLAGS="$LDFLAGS -L$withval/lib"
3494 CPPFLAGS="$CPPFLAGS -I$withval/include"
3497 with_libpcap="$withval"
3503 if test "x$with_libpcap" = "xyes"
3505 AC_CHECK_LIB(pcap, pcap_open_live,
3507 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3508 ], [with_libpcap="no (libpcap not found)"])
3510 if test "x$with_libpcap" = "xyes"
3512 AC_CHECK_HEADERS(pcap.h,,
3513 [with_libpcap="no (pcap.h not found)"])
3515 if test "x$with_libpcap" = "xyes"
3517 AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3518 [c_cv_libpcap_have_pcap_error_iface_not_up],
3519 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3524 int val = PCAP_ERROR_IFACE_NOT_UP;
3528 [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3529 [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3531 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3533 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3535 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3538 # --with-libperl {{{
3539 perl_interpreter="perl"
3540 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3542 if test -f "$withval" && test -x "$withval"
3544 perl_interpreter="$withval"
3546 else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3548 LDFLAGS="$LDFLAGS -L$withval/lib"
3549 CPPFLAGS="$CPPFLAGS -I$withval/include"
3550 perl_interpreter="$withval/bin/perl"
3553 with_libperl="$withval"
3560 AC_MSG_CHECKING([for perl])
3561 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3562 if test -x "$perl_interpreter"
3564 AC_MSG_RESULT([yes ($perl_interpreter)])
3570 AC_SUBST(PERL, "$perl_interpreter")
3572 if test "x$with_libperl" = "xyes" \
3573 && test -n "$perl_interpreter"
3575 SAVE_CFLAGS="$CFLAGS"
3577 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3578 PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3579 PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3580 CFLAGS="$CFLAGS $PERL_CFLAGS"
3581 LIBS="$LIBS $PERL_LIBS"
3583 AC_CACHE_CHECK([for libperl],
3584 [c_cv_have_libperl],
3585 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3587 #define PERL_NO_GET_CONTEXT
3594 load_module (PERL_LOADMOD_NOIMPORT,
3595 newSVpv ("Collectd::Plugin::FooBar", 24),
3599 [c_cv_have_libperl="yes"],
3600 [c_cv_have_libperl="no"]
3604 if test "x$c_cv_have_libperl" = "xyes"
3606 AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3607 AC_SUBST(PERL_CFLAGS)
3613 CFLAGS="$SAVE_CFLAGS"
3615 else if test -z "$perl_interpreter"; then
3616 with_libperl="no (no perl interpreter found)"
3617 c_cv_have_libperl="no"
3619 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3621 if test "x$with_libperl" = "xyes"
3623 SAVE_CFLAGS="$CFLAGS"
3625 CFLAGS="$CFLAGS $PERL_CFLAGS"
3626 LIBS="$LIBS $PERL_LIBS"
3628 AC_CACHE_CHECK([if perl supports ithreads],
3629 [c_cv_have_perl_ithreads],
3630 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3636 #if !defined(USE_ITHREADS)
3637 # error "Perl does not support ithreads!"
3638 #endif /* !defined(USE_ITHREADS) */
3642 [c_cv_have_perl_ithreads="yes"],
3643 [c_cv_have_perl_ithreads="no"]
3647 if test "x$c_cv_have_perl_ithreads" = "xyes"
3649 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3652 CFLAGS="$SAVE_CFLAGS"
3656 if test "x$with_libperl" = "xyes"
3658 SAVE_CFLAGS="$CFLAGS"
3660 # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3661 # (see issues #41 and #42)
3662 CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3663 LIBS="$LIBS $PERL_LIBS"
3665 AC_CACHE_CHECK([for broken Perl_load_module()],
3666 [c_cv_have_broken_perl_load_module],
3667 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3669 #define PERL_NO_GET_CONTEXT
3676 load_module (PERL_LOADMOD_NOIMPORT,
3677 newSVpv ("Collectd::Plugin::FooBar", 24),
3681 [c_cv_have_broken_perl_load_module="no"],
3682 [c_cv_have_broken_perl_load_module="yes"]
3686 CFLAGS="$SAVE_CFLAGS"
3689 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3690 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3692 if test "x$with_libperl" = "xyes"
3694 SAVE_CFLAGS="$CFLAGS"
3696 CFLAGS="$CFLAGS $PERL_CFLAGS"
3697 LIBS="$LIBS $PERL_LIBS"
3700 [struct mgvtbl.svt_local],
3701 [have_struct_mgvtbl_svt_local="yes"],
3702 [have_struct_mgvtbl_svt_local="no"],
3709 if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3711 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3712 [Define if Perl's struct mgvtbl has member svt_local.])
3715 CFLAGS="$SAVE_CFLAGS"
3721 with_pg_config="pg_config"
3722 with_libpq_includedir=""
3723 with_libpq_libdir=""
3724 with_libpq_cppflags=""
3725 with_libpq_ldflags=""
3726 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3729 if test "x$withval" = "xno"
3732 else if test "x$withval" = "xyes"
3736 if test -f "$withval" && test -x "$withval";
3738 with_pg_config="$withval"
3739 else if test -x "$withval/bin/pg_config"
3741 with_pg_config="$withval/bin/pg_config"
3749 if test "x$with_libpq" = "xyes"
3751 with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3754 if test $pg_config_status -eq 0
3756 if test -n "$with_libpq_includedir"; then
3757 for dir in $with_libpq_includedir; do
3758 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3762 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3765 SAVE_CPPFLAGS="$CPPFLAGS"
3766 CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3768 AC_CHECK_HEADERS(libpq-fe.h, [],
3769 [with_libpq="no (libpq-fe.h not found)"], [])
3771 CPPFLAGS="$SAVE_CPPFLAGS"
3773 if test "x$with_libpq" = "xyes"
3775 with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3778 if test $pg_config_status -eq 0
3780 if test -n "$with_libpq_libdir"; then
3781 for dir in $with_libpq_libdir; do
3782 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3786 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3789 SAVE_LDFLAGS="$LDFLAGS"
3790 LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3792 AC_CHECK_LIB(pq, PQconnectdb,
3794 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3796 AC_CHECK_LIB(pq, PQserverVersion,
3798 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3800 LDFLAGS="$SAVE_LDFLAGS"
3802 if test "x$with_libpq" = "xyes"
3804 BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3805 BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3806 AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3807 AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3809 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3814 with_python_path="$PATH"
3815 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3817 if test "x$withval" = "xyes" || test "x$withval" = "xno"
3819 with_python="$withval"
3820 else if test -x "$withval"
3822 with_python_prog="$withval"
3823 with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3825 else if test -d "$withval"
3827 with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3830 AC_MSG_WARN([Argument not recognized: $withval])
3832 ], [with_python="yes"])
3835 SAVE_CPPFLAGS="$CPPFLAGS"
3836 SAVE_LDFLAGS="$LDFLAGS"
3839 PATH="$with_python_path"
3841 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3843 AC_MSG_CHECKING([for python])
3844 with_python_prog="`which python 2>/dev/null`"
3845 if test "x$with_python_prog" = "x"
3847 AC_MSG_RESULT([not found])
3848 with_python="no (interpreter not found)"
3850 AC_MSG_RESULT([$with_python_prog])
3854 if test "x$with_python" = "xyes"
3856 AC_MSG_CHECKING([for Python CPPFLAGS])
3857 python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3858 python_config_status=$?
3860 if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3862 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3865 AC_MSG_RESULT([$python_include_path])
3869 if test "x$with_python" = "xyes"
3871 CPPFLAGS="-I$python_include_path $CPPFLAGS"
3872 AC_CHECK_HEADERS(Python.h,
3873 [with_python="yes"],
3874 [with_python="no ('Python.h' not found)"])
3877 if test "x$with_python" = "xyes"
3879 AC_MSG_CHECKING([for Python LDFLAGS])
3880 python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2>&1`
3881 python_config_status=$?
3883 if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3885 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3888 AC_MSG_RESULT([$python_library_path])
3892 if test "x$with_python" = "xyes"
3894 AC_MSG_CHECKING([for Python LIBS])
3895 python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2>&1`
3896 python_config_status=$?
3898 if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3900 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3903 AC_MSG_RESULT([$python_library_flags])
3907 if test "x$with_python" = "xyes"
3909 LDFLAGS="-L$python_library_path $LDFLAGS"
3910 LIBS="$python_library_flags $LIBS"
3912 AC_CHECK_FUNC(PyObject_CallFunction,
3913 [with_python="yes"],
3914 [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3918 CPPFLAGS="$SAVE_CPPFLAGS"
3919 LDFLAGS="$SAVE_LDFLAGS"
3922 if test "x$with_python" = "xyes"
3924 BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3925 BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3926 BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3927 AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3928 AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3929 AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3933 # --with-librabbitmq {{{
3934 with_librabbitmq_cppflags=""
3935 with_librabbitmq_ldflags=""
3936 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3938 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3940 with_librabbitmq_cppflags="-I$withval/include"
3941 with_librabbitmq_ldflags="-L$withval/lib"
3942 with_librabbitmq="yes"
3944 with_librabbitmq="$withval"
3948 with_librabbitmq="yes"
3950 SAVE_CPPFLAGS="$CPPFLAGS"
3951 SAVE_LDFLAGS="$LDFLAGS"
3952 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3953 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3954 if test "x$with_librabbitmq" = "xyes"
3956 AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3958 if test "x$with_librabbitmq" = "xyes"
3960 # librabbitmq up to version 0.9.1 provides "library_errno", later
3961 # versions use "library_error". The library does not provide a version
3962 # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3963 AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3966 # include <stdlib.h>
3972 # include <stdint.h>
3975 # include <inttypes.h>
3980 if test "x$with_librabbitmq" = "xyes"
3982 AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3984 if test "x$with_librabbitmq" = "xyes"
3986 BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3987 BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3988 BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3989 AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3990 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3991 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3992 AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3994 CPPFLAGS="$SAVE_CPPFLAGS"
3995 LDFLAGS="$SAVE_LDFLAGS"
3996 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3998 with_amqp_tcp_socket="no"
3999 if test "x$with_librabbitmq" = "xyes"
4001 SAVE_CPPFLAGS="$CPPFLAGS"
4002 SAVE_LDFLAGS="$LDFLAGS"
4004 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4005 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4008 AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
4009 AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
4010 if test "x$with_amqp_tcp_socket" = "xyes"
4012 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
4013 [Define if librabbitmq provides the new TCP socket interface.])
4016 AC_CHECK_DECLS(amqp_socket_close,
4017 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
4020 #ifdef HAVE_AMQP_TCP_SOCKET_H
4021 # include <amqp_tcp_socket.h>
4023 #ifdef HAVE_AMQP_SOCKET_H
4024 # include <amqp_socket.h>
4028 CPPFLAGS="$SAVE_CPPFLAGS"
4029 LDFLAGS="$SAVE_LDFLAGS"
4034 # --with-librdkafka {{{
4035 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
4037 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4039 with_librdkafka_cppflags="-I$withval/include"
4040 with_librdkafka_ldflags="-L$withval/lib"
4041 with_librdkafka_rpath="$withval/lib"
4042 with_librdkafka="yes"
4044 with_librdkafka="$withval"
4048 with_librdkafka="yes"
4050 SAVE_CPPFLAGS="$CPPFLAGS"
4051 SAVE_LDFLAGS="$LDFLAGS"
4053 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
4054 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
4056 if test "x$with_librdkafka" = "xyes"
4058 AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
4061 if test "x$with_librdkafka" = "xyes"
4063 AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
4064 AC_CHECK_LIB(rdkafka, rd_kafka_conf_set_log_cb, [with_librdkafka_log_cb="yes"], [with_librdkafka_log_cb="no"])
4065 AC_CHECK_LIB(rdkafka, rd_kafka_set_logger, [with_librdkafka_logger="yes"], [with_librdkafka_logger="no"])
4067 if test "x$with_librdkafka" = "xyes"
4069 BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
4070 BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
4071 if test "x$with_librdkafka_rpath" != "x"
4073 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
4075 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
4077 AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
4078 AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
4079 AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
4080 AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
4081 if test "x$with_librdkafka_log_cb" = "xyes"
4083 AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
4085 if test "x$with_librdkafka_logger" = "xyes"
4087 AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
4090 CPPFLAGS="$SAVE_CPPFLAGS"
4091 LDFLAGS="$SAVE_LDFLAGS"
4092 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
4096 # --with-librouteros {{{
4097 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
4099 if test "x$withval" = "xyes"
4101 with_librouteros="yes"
4102 else if test "x$withval" = "xno"
4104 with_librouteros="no"
4106 with_librouteros="yes"
4107 LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
4108 LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
4111 [with_librouteros="yes"])
4113 SAVE_CPPFLAGS="$CPPFLAGS"
4114 SAVE_LDFLAGS="$LDFLAGS"
4116 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
4117 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
4119 if test "x$with_librouteros" = "xyes"
4121 if test "x$LIBROUTEROS_CPPFLAGS" != "x"
4123 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
4125 AC_CHECK_HEADERS(routeros_api.h,
4126 [with_librouteros="yes"],
4127 [with_librouteros="no (routeros_api.h not found)"])
4129 if test "x$with_librouteros" = "xyes"
4131 if test "x$LIBROUTEROS_LDFLAGS" != "x"
4133 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
4135 AC_CHECK_LIB(routeros, ros_interface,
4136 [with_librouteros="yes"],
4137 [with_librouteros="no (symbol 'ros_interface' not found)"])
4140 CPPFLAGS="$SAVE_CPPFLAGS"
4141 LDFLAGS="$SAVE_LDFLAGS"
4143 if test "x$with_librouteros" = "xyes"
4145 BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
4146 BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
4147 AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
4148 AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
4150 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
4156 librrd_threadsafe="no"
4157 librrd_rrdc_update="no"
4159 [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4161 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4163 librrd_cflags="-I$withval/include"
4164 librrd_ldflags="-L$withval/lib"
4167 with_librrd="$withval"
4173 if test "x$with_librrd" = "xyes"
4175 SAVE_LDFLAGS="$LDFLAGS"
4176 LDFLAGS="$LDFLAGS $librrd_ldflags"
4177 PKG_CHECK_MODULES([RRD], [librrd >= 1.6.0],
4179 AC_CHECK_LIB([rrd], [rrd_update_r],
4180 [librrd_threadsafe="yes"],
4183 AC_CHECK_LIB([rrd], [rrdc_update],
4184 [librrd_rrdc_update="yes"],
4189 LDFLAGS="$SAVE_LDFLAGS"
4191 SAVE_CPPFLAGS="$CPPFLAGS"
4192 CPPFLAGS="$CPPFLAGS $RRD_CFLAGS $librrd_cflags"
4194 AC_CHECK_HEADERS([rrd.h],, [with_librrd="no (rrd.h not found)"])
4196 CPPFLAGS="$SAVE_CPPFLAGS"
4199 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4201 SAVE_LDFLAGS="$LDFLAGS"
4202 LDFLAGS="$LDFLAGS $librrd_ldflags"
4204 AC_CHECK_LIB([rrd_th], [rrd_update_r],
4206 librrd_ldflags="$librrd_ldflags -lrrd_th"
4207 librrd_threadsafe="yes"
4208 AC_CHECK_LIB([rrd_th], [rrdc_update],
4209 [librrd_rrdc_update="yes"],
4215 LDFLAGS="$SAVE_LDFLAGS"
4218 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4220 SAVE_LDFLAGS="$LDFLAGS"
4221 LDFLAGS="$LDFLAGS $librrd_ldflags"
4223 AC_CHECK_LIB([rrd], [rrd_update],
4225 librrd_ldflags="$librrd_ldflags -lrrd"
4226 AC_CHECK_LIB([rrd], [rrdc_update],
4227 [librrd_rrdc_update="yes"],
4231 [with_librrd="no (symbol 'rrd_update' not found)"]
4233 LDFLAGS="$SAVE_LDFLAGS"
4236 if test "x$with_librrd" = "xyes"
4238 BUILD_WITH_LIBRRD_CFLAGS="$RRD_CFLAGS $librrd_cflags"
4239 BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4240 BUILD_WITH_LIBRRD_LIBS="$RRD_LIBS"
4241 AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
4242 AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
4243 AC_SUBST(BUILD_WITH_LIBRRD_LIBS)
4245 if test "x$librrd_threadsafe" = "xyes"
4247 AC_DEFINE([HAVE_THREADSAFE_LIBRRD], [1],
4248 [Define to 1 if the rrd library is thread-safe]
4253 # --with-libsensors {{{
4254 with_sensors_cflags=""
4255 with_sensors_ldflags=""
4256 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4258 if test "x$withval" = "xno"
4260 with_libsensors="no"
4262 with_libsensors="yes"
4263 if test "x$withval" != "xyes"
4265 with_sensors_cflags="-I$withval/include"
4266 with_sensors_ldflags="-L$withval/lib"
4267 with_libsensors="yes"
4272 if test "x$ac_system" = "xLinux"
4274 with_libsensors="yes"
4276 with_libsensors="no (Linux only library)"
4279 if test "x$with_libsensors" = "xyes"
4281 SAVE_CPPFLAGS="$CPPFLAGS"
4282 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4284 AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
4286 CPPFLAGS="$SAVE_CPPFLAGS"
4288 if test "x$with_libsensors" = "xyes"
4290 SAVE_CPPFLAGS="$CPPFLAGS"
4291 SAVE_LDFLAGS="$LDFLAGS"
4292 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4293 LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4295 AC_CHECK_LIB(sensors, sensors_init,
4297 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
4299 [with_libsensors="no (libsensors not found)"])
4301 CPPFLAGS="$SAVE_CPPFLAGS"
4302 LDFLAGS="$SAVE_LDFLAGS"
4304 if test "x$with_libsensors" = "xyes"
4306 BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
4307 BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4308 AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
4309 AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
4311 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
4314 # --with-libsigrok {{{
4315 with_libsigrok_cflags=""
4316 with_libsigrok_ldflags=""
4317 AC_ARG_WITH(libsigrok, [AS_HELP_STRING([--with-libsigrok@<:@=PREFIX@:>@], [Path to libsigrok.])],
4319 if test "x$withval" = "xno"
4323 with_libsigrok="yes"
4324 if test "x$withval" != "xyes"
4326 with_libsigrok_cflags="-I$withval/include"
4327 with_libsigrok_ldflags="-L$withval/lib"
4330 ],[with_libsigrok="yes"])
4332 # libsigrok has a glib dependency
4333 if test "x$with_libsigrok" = "xyes"
4335 m4_ifdef([AM_PATH_GLIB_2_0],
4337 AM_PATH_GLIB_2_0([2.28.0],
4338 [with_libsigrok_cflags="$with_libsigrok_cflags $GLIB_CFLAGS"; with_libsigrok_ldflags="$with_libsigrok_ldflags $GLIB_LIBS"])
4341 with_libsigrok="no (glib not available)"
4347 if test "x$with_libsigrok" = "xyes"
4349 SAVE_CPPFLAGS="$CPPFLAGS"
4350 CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
4352 AC_CHECK_HEADERS(libsigrok/libsigrok.h, [], [with_libsigrok="no (libsigrok/libsigrok.h not found)"])
4354 CPPFLAGS="$SAVE_CPPFLAGS"
4358 if test "x$with_libsigrok" = "xyes"
4360 SAVE_CPPFLAGS="$CPPFLAGS"
4361 SAVE_LDFLAGS="$LDFLAGS"
4362 CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
4363 LDFLAGS="$LDFLAGS $with_libsigrok_ldflags"
4365 AC_CHECK_LIB(sigrok, sr_init,
4367 AC_DEFINE(HAVE_LIBSIGROK, 1, [Define to 1 if you have the sigrok library (-lsigrok).])
4369 [with_libsigrok="no (libsigrok not found)"])
4371 CPPFLAGS="$SAVE_CPPFLAGS"
4372 LDFLAGS="$SAVE_LDFLAGS"
4374 if test "x$with_libsigrok" = "xyes"
4376 BUILD_WITH_LIBSIGROK_CFLAGS="$with_libsigrok_cflags"
4377 BUILD_WITH_LIBSIGROK_LDFLAGS="$with_libsigrok_ldflags"
4378 AC_SUBST(BUILD_WITH_LIBSIGROK_CFLAGS)
4379 AC_SUBST(BUILD_WITH_LIBSIGROK_LDFLAGS)
4381 AM_CONDITIONAL(BUILD_WITH_LIBSIGROK, test "x$with_libsigrok" = "xyes")
4384 # --with-libstatgrab {{{
4385 with_libstatgrab_cflags=""
4386 with_libstatgrab_ldflags=""
4387 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4389 if test "x$withval" != "xno" \
4390 && test "x$withval" != "xyes"
4392 with_libstatgrab_cflags="-I$withval/include"
4393 with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4394 with_libstatgrab="yes"
4395 with_libstatgrab_pkg_config="no"
4397 with_libstatgrab="$withval"
4398 with_libstatgrab_pkg_config="yes"
4402 with_libstatgrab="yes"
4403 with_libstatgrab_pkg_config="yes"
4406 if test "x$with_libstatgrab" = "xyes" \
4407 && test "x$with_libstatgrab_pkg_config" = "xyes"
4409 if test "x$PKG_CONFIG" != "x"
4411 AC_MSG_CHECKING([pkg-config for libstatgrab])
4413 $PKG_CONFIG --exists libstatgrab 2>/dev/null
4416 with_libstatgrab_pkg_config="no"
4417 with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4418 temp_result="not found"
4420 AC_MSG_RESULT([$temp_result])
4422 AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
4423 with_libstatgrab_pkg_config="no"
4424 with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
4428 if test "x$with_libstatgrab" = "xyes" \
4429 && test "x$with_libstatgrab_pkg_config" = "xyes" \
4430 && test "x$with_libstatgrab_cflags" = "x"
4432 AC_MSG_CHECKING([for libstatgrab CFLAGS])
4433 temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4436 with_libstatgrab_cflags="$temp_result"
4438 with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4439 temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4441 AC_MSG_RESULT([$temp_result])
4444 if test "x$with_libstatgrab" = "xyes" \
4445 && test "x$with_libstatgrab_pkg_config" = "xyes" \
4446 && test "x$with_libstatgrab_ldflags" = "x"
4448 AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4449 temp_result="`$PKG_CONFIG --libs libstatgrab`"
4452 with_libstatgrab_ldflags="$temp_result"
4454 with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4455 temp_result="$PKG_CONFIG --libs libstatgrab failed"
4457 AC_MSG_RESULT([$temp_result])
4460 if test "x$with_libstatgrab" = "xyes"
4462 SAVE_CPPFLAGS="$CPPFLAGS"
4463 CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4465 AC_CHECK_HEADERS(statgrab.h,
4466 [with_libstatgrab="yes"],
4467 [with_libstatgrab="no (statgrab.h not found)"])
4469 CPPFLAGS="$SAVE_CPPFLAGS"
4472 if test "x$with_libstatgrab" = "xyes"
4474 SAVE_CFLAGS="$CFLAGS"
4475 SAVE_LDFLAGS="$LDFLAGS"
4477 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4478 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4480 AC_CHECK_LIB(statgrab, sg_init,
4481 [with_libstatgrab="yes"],
4482 [with_libstatgrab="no (symbol sg_init not found)"])
4484 CFLAGS="$SAVE_CFLAGS"
4485 LDFLAGS="$SAVE_LDFLAGS"
4488 if test "x$with_libstatgrab" = "xyes"
4490 SAVE_CFLAGS="$CFLAGS"
4491 SAVE_LDFLAGS="$LDFLAGS"
4494 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4495 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4496 LIBS="-lstatgrab $LIBS"
4498 AC_CACHE_CHECK([if libstatgrab >= 0.90],
4499 [c_cv_have_libstatgrab_0_90],
4500 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4503 #include <statgrab.h>
4506 if (sg_init()) return 0;
4509 [c_cv_have_libstatgrab_0_90="no"],
4510 [c_cv_have_libstatgrab_0_90="yes"]
4514 CFLAGS="$SAVE_CFLAGS"
4515 LDFLAGS="$SAVE_LDFLAGS"
4519 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
4520 if test "x$with_libstatgrab" = "xyes"
4522 AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
4523 BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4524 BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
4525 AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
4526 AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
4527 if test "x$c_cv_have_libstatgrab_0_90" = "xyes"
4529 AC_DEFINE(HAVE_LIBSTATGRAB_0_90, 1, [Define to 1 if libstatgrab version >= 0.90])
4534 # --with-libtokyotyrant {{{
4535 with_libtokyotyrant_cppflags=""
4536 with_libtokyotyrant_ldflags=""
4537 with_libtokyotyrant_libs=""
4538 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4540 if test "x$withval" = "xno"
4542 with_libtokyotyrant="no"
4543 else if test "x$withval" = "xyes"
4545 with_libtokyotyrant="yes"
4547 with_libtokyotyrant_cppflags="-I$withval/include"
4548 with_libtokyotyrant_ldflags="-L$withval/include"
4549 with_libtokyotyrant_libs="-ltokyotyrant"
4550 with_libtokyotyrant="yes"
4554 with_libtokyotyrant="yes"
4557 if test "x$with_libtokyotyrant" = "xyes"
4559 if $PKG_CONFIG --exists tokyotyrant
4561 with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
4562 with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
4563 with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
4567 SAVE_CPPFLAGS="$CPPFLAGS"
4568 SAVE_LDFLAGS="$LDFLAGS"
4569 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
4570 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
4572 if test "x$with_libtokyotyrant" = "xyes"
4574 AC_CHECK_HEADERS(tcrdb.h,
4576 AC_DEFINE(HAVE_TCRDB_H, 1,
4577 [Define to 1 if you have the <tcrdb.h> header file.])
4578 ], [with_libtokyotyrant="no (tcrdb.h not found)"])
4581 if test "x$with_libtokyotyrant" = "xyes"
4583 AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4585 AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4586 [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4588 [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4589 [$with_libtokyotyrant_libs])
4592 CPPFLAGS="$SAVE_CPPFLAGS"
4593 LDFLAGS="$SAVE_LDFLAGS"
4595 if test "x$with_libtokyotyrant" = "xyes"
4597 BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4598 BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4599 BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4600 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4601 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4602 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4604 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4607 # --with-libudev {{{
4608 with_libudev_cflags=""
4609 with_libudev_ldflags=""
4610 AC_ARG_WITH(libudev, [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
4612 if test "x$withval" = "xno"
4617 if test "x$withval" != "xyes"
4619 with_libudev_cflags="-I$withval/include"
4620 with_libudev_ldflags="-L$withval/lib"
4626 if test "x$ac_system" = "xLinux"
4630 with_libudev="no (Linux only library)"
4633 if test "x$with_libudev" = "xyes"
4635 SAVE_CPPFLAGS="$CPPFLAGS"
4636 CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4638 AC_CHECK_HEADERS(libudev.h, [], [with_libudev="no (libudev.h not found)"])
4640 CPPFLAGS="$SAVE_CPPFLAGS"
4642 if test "x$with_libudev" = "xyes"
4644 SAVE_CPPFLAGS="$CPPFLAGS"
4645 SAVE_LDFLAGS="$LDFLAGS"
4646 CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4647 LDFLAGS="$LDFLAGS $with_libudev_ldflags"
4649 AC_CHECK_LIB(udev, udev_new,
4651 AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if you have the udev library (-ludev).])
4653 [with_libudev="no (libudev not found)"])
4655 CPPFLAGS="$SAVE_CPPFLAGS"
4656 LDFLAGS="$SAVE_LDFLAGS"
4658 if test "x$with_libudev" = "xyes"
4660 BUILD_WITH_LIBUDEV_CFLAGS="$with_libudev_cflags"
4661 BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
4662 BUILD_WITH_LIBUDEV_LIBS="-ludev"
4663 AC_SUBST(BUILD_WITH_LIBUDEV_CFLAGS)
4664 AC_SUBST(BUILD_WITH_LIBUDEV_LDFLAGS)
4665 AC_SUBST(BUILD_WITH_LIBUDEV_LIBS)
4667 AM_CONDITIONAL(BUILD_WITH_LIBUDEV, test "x$with_libudev" = "xyes")
4670 # --with-libupsclient {{{
4671 with_libupsclient_config=""
4672 with_libupsclient_cflags=""
4673 with_libupsclient_libs=""
4674 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4676 if test "x$withval" = "xno"
4678 with_libupsclient="no"
4679 else if test "x$withval" = "xyes"
4681 with_libupsclient="use_pkgconfig"
4683 if test -x "$withval"
4685 with_libupsclient_config="$withval"
4686 with_libupsclient="use_libupsclient_config"
4687 else if test -x "$withval/bin/libupsclient-config"
4689 with_libupsclient_config="$withval/bin/libupsclient-config"
4690 with_libupsclient="use_libupsclient_config"
4692 AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4693 with_libupsclient_cflags="-I$withval/include"
4694 with_libupsclient_libs="-L$withval/lib -lupsclient"
4695 with_libupsclient="yes"
4699 [with_libupsclient="use_pkgconfig"])
4701 # configure using libupsclient-config
4702 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4704 AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4705 with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4708 with_libupsclient="no ($with_libupsclient_config failed)"
4710 with_libupsclient_libs="`$with_libupsclient_config --libs`"
4713 with_libupsclient="no ($with_libupsclient_config failed)"
4716 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4718 with_libupsclient="yes"
4721 # configure using pkg-config
4722 if test "x$with_libupsclient" = "xuse_pkgconfig"
4724 if test "x$PKG_CONFIG" = "x"
4726 with_libupsclient="no (Don't have pkg-config)"
4729 if test "x$with_libupsclient" = "xuse_pkgconfig"
4731 AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4732 $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4735 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4738 if test "x$with_libupsclient" = "xuse_pkgconfig"
4740 with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4743 with_libupsclient="no ($PKG_CONFIG failed)"
4745 with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4748 with_libupsclient="no ($PKG_CONFIG failed)"
4751 if test "x$with_libupsclient" = "xuse_pkgconfig"
4753 with_libupsclient="yes"
4756 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4757 # the actual checks.
4758 if test "x$with_libupsclient" = "xyes"
4760 SAVE_CPPFLAGS="$CPPFLAGS"
4761 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4763 AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4765 CPPFLAGS="$SAVE_CPPFLAGS"
4767 if test "x$with_libupsclient" = "xyes"
4769 SAVE_CPPFLAGS="$CPPFLAGS"
4770 SAVE_LDFLAGS="$LDFLAGS"
4772 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4773 LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4775 AC_CHECK_LIB(upsclient, upscli_connect,
4776 [with_libupsclient="yes"],
4777 [with_libupsclient="no (symbol upscli_connect not found)"])
4779 CPPFLAGS="$SAVE_CPPFLAGS"
4780 LDFLAGS="$SAVE_LDFLAGS"
4782 if test "x$with_libupsclient" = "xyes"
4784 SAVE_CPPFLAGS="$CPPFLAGS"
4785 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4787 AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4788 [#include <stdlib.h>
4790 #include <upsclient.h>])
4792 CPPFLAGS="$SAVE_CPPFLAGS"
4794 if test "x$with_libupsclient" = "xyes"
4796 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4797 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4798 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4799 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4803 # --with-libxenctrl {{{
4804 with_libxenctrl_cppflags=""
4805 with_libxenctrl_ldflags=""
4806 AC_ARG_WITH(libxenctrl, [AS_HELP_STRING([--with-libxenctrl@<:@=PREFIX@:>@], [Path to libxenctrl.])],
4808 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4810 with_libxenctrl_cppflags="-I$withval/include"
4811 with_libxenctrl_ldflags="-L$withval/lib"
4812 with_libxenctrl="yes"
4814 with_libxenctrl="$withval"
4818 with_libxenctrl="yes"
4820 if test "x$with_libxenctrl" = "xyes"
4822 SAVE_CPPFLAGS="$CPPFLAGS"
4823 CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
4825 AC_CHECK_HEADERS(xenctrl.h, [with_libxenctrl="yes"], [with_libxenctrl="no (xenctrl.h not found)"])
4827 CPPFLAGS="$SAVE_CPPFLAGS"
4829 if test "x$with_libxenctrl" = "xyes"
4831 SAVE_CPPFLAGS="$CPPFLAGS"
4832 SAVE_LDFLAGS="$LDFLAGS"
4833 CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
4834 LDFLAGS="$LDFLAGS $with_libxenctrl_ldflags"
4836 #Xen versions older than 3.4 has no xc_getcpuinfo()
4837 AC_CHECK_LIB(xenctrl, xc_getcpuinfo, [with_libxenctrl="yes"], [with_libxenctrl="no (symbol 'xc_getcpuinfo' not found)"], [])
4839 CPPFLAGS="$SAVE_CPPFLAGS"
4840 LDFLAGS="$SAVE_LDFLAGS"
4841 LIBXENCTL_CPPFLAGS="$with_libxenctl_cppflags"
4842 LIBXENCTL_LDFLAGS="$with_libxenctl_ldflags"
4843 AC_SUBST(LIBXENCTL_CPPFLAGS)
4844 AC_SUBST(LIBXENCTL_LDFLAGS)
4847 # --with-libxmms {{{
4848 with_xmms_config="xmms-config"
4851 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4853 if test "x$withval" != "xno" \
4854 && test "x$withval" != "xyes"
4856 if test -f "$withval" && test -x "$withval";
4858 with_xmms_config="$withval"
4859 else if test -x "$withval/bin/xmms-config"
4861 with_xmms_config="$withval/bin/xmms-config"
4864 else if test "x$withval" = "xno"
4874 if test "x$with_libxmms" = "xyes"
4876 with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4877 xmms_config_status=$?
4879 if test $xmms_config_status -ne 0
4884 if test "x$with_libxmms" = "xyes"
4886 with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4887 xmms_config_status=$?
4889 if test $xmms_config_status -ne 0
4894 if test "x$with_libxmms" = "xyes"
4896 AC_CHECK_LIB(xmms, xmms_remote_get_info,
4898 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4899 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4900 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4901 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4908 with_libxmms_numeric=0
4909 if test "x$with_libxmms" = "xyes"
4911 with_libxmms_numeric=1
4913 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4914 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4917 # --with-libyajl {{{
4918 with_libyajl_cppflags=""
4919 with_libyajl_ldflags=""
4920 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4922 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4924 with_libyajl_cppflags="-I$withval/include"
4925 with_libyajl_ldflags="-L$withval/lib"
4928 with_libyajl="$withval"
4934 if test "x$with_libyajl" = "xyes"
4936 SAVE_CPPFLAGS="$CPPFLAGS"
4937 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4939 AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
4940 AC_CHECK_HEADERS(yajl/yajl_version.h)
4942 CPPFLAGS="$SAVE_CPPFLAGS"
4944 if test "x$with_libyajl" = "xyes"
4946 SAVE_CPPFLAGS="$CPPFLAGS"
4947 SAVE_LDFLAGS="$LDFLAGS"
4948 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4949 LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4951 AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4953 CPPFLAGS="$SAVE_CPPFLAGS"
4954 LDFLAGS="$SAVE_LDFLAGS"
4956 if test "x$with_libyajl" = "xyes"
4958 BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4959 BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4960 BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4961 AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4962 AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4963 AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4964 AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4966 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4970 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
4971 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
4973 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
4975 if test "x$withval" = "xno"
4978 else if test "x$withval" = "xyes"
4981 else if test -d "$with_mic/lib"
4983 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
4984 with_mic_cflags="-I$withval/include"
4985 with_mic_ldpath="-L$withval/lib/Linux"
4986 with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"
4991 if test "x$with_mic" = "xyes"
4993 SAVE_CPPFLAGS="$CPPFLAGS"
4994 CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4995 AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
4996 CPPFLAGS="$SAVE_CPPFLAGS"
4998 if test "x$with_mic" = "xyes"
5000 SAVE_CPPFLAGS="$CPPFLAGS"
5001 SAVE_LDFLAGS="$LDFLAGS"
5003 CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5004 LDFLAGS="$LDFLAGS $with_mic_ldpath"
5006 AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
5007 [with_mic_ldpath="$with_mic_ldpath"
5008 with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"],
5009 [with_mic="no (symbol MicInitAPI not found)"],[$PTHREAD_LIBS -lscif])
5011 CPPFLAGS="$SAVE_CPPFLAGS"
5012 LDFLAGS="$SAVE_LDFLAGS"
5015 if test "x$with_mic" = "xyes"
5017 BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
5018 BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
5019 BUILD_WITH_MIC_LDADD="$with_mic_libs"
5020 AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
5021 AC_SUBST(BUILD_WITH_MIC_LIBPATH)
5022 AC_SUBST(BUILD_WITH_MIC_LDADD)
5026 # --with-libvarnish {{{
5027 with_libvarnish_cppflags=""
5028 with_libvarnish_cflags=""
5029 with_libvarnish_libs=""
5030 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
5032 if test "x$withval" = "xno"
5034 with_libvarnish="no"
5035 else if test "x$withval" = "xyes"
5037 with_libvarnish="use_pkgconfig"
5038 else if test -d "$with_libvarnish/lib"
5040 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
5041 with_libvarnish_cflags="-I$withval/include"
5042 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
5043 with_libvarnish="yes"
5046 [with_libvarnish="use_pkgconfig"])
5048 # configure using pkg-config
5049 if test "x$with_libvarnish" = "xuse_pkgconfig"
5051 if test "x$PKG_CONFIG" = "x"
5053 with_libvarnish="no (Don't have pkg-config)"
5056 if test "x$with_libvarnish" = "xuse_pkgconfig"
5058 AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
5059 $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
5062 with_libvarnish="no (pkg-config doesn't know varnishapi)"
5065 if test "x$with_libvarnish" = "xuse_pkgconfig"
5067 with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
5070 with_libvarnish="no ($PKG_CONFIG failed)"
5072 with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
5075 with_libvarnish="no ($PKG_CONFIG failed)"
5078 if test "x$with_libvarnish" = "xuse_pkgconfig"
5080 with_libvarnish="yes"
5083 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
5084 # the actual checks.
5085 if test "x$with_libvarnish" = "xyes"
5087 SAVE_CPPFLAGS="$CPPFLAGS"
5089 CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
5091 AC_CHECK_HEADERS(vapi/vsc.h,
5092 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
5093 [AC_CHECK_HEADERS(vsc.h,
5094 [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
5095 [AC_CHECK_HEADERS(varnishapi.h,
5096 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
5097 [with_libvarnish="no (found none of the varnish header files)"])])])
5099 CPPFLAGS="$SAVE_CPPFLAGS"
5101 if test "x$with_libvarnish" = "xyes"
5103 BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
5104 BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
5105 AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
5106 AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
5110 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
5111 with_libxml2="no (pkg-config isn't available)"
5112 with_libxml2_cflags=""
5113 with_libxml2_ldflags=""
5114 with_libvirt="no (pkg-config isn't available)"
5115 with_libvirt_cflags=""
5116 with_libvirt_ldflags=""
5117 if test "x$PKG_CONFIG" != "x"
5119 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
5124 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
5127 $PKG_CONFIG --exists libvirt 2>/dev/null
5132 with_libvirt="no (pkg-config doesn't know libvirt)"
5135 if test "x$with_libxml2" = "xyes"
5137 with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
5142 with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
5148 if test "x$with_libxml2" = "xyes"
5150 SAVE_CPPFLAGS="$CPPFLAGS"
5151 CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
5153 AC_CHECK_HEADERS(libxml/parser.h, [],
5154 [with_libxml2="no (libxml/parser.h not found)"])
5156 CPPFLAGS="$SAVE_CPPFLAGS"
5158 if test "x$with_libxml2" = "xyes"
5160 SAVE_CFLAGS="$CFLAGS"
5161 SAVE_LDFLAGS="$LDFLAGS"
5163 CFLAGS="$CFLAGS $with_libxml2_cflags"
5164 LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
5166 AC_CHECK_LIB(xml2, xmlXPathEval,
5167 [with_libxml2="yes"],
5168 [with_libxml2="no (symbol xmlXPathEval not found)"])
5170 CFLAGS="$SAVE_CFLAGS"
5171 LDFLAGS="$SAVE_LDFLAGS"
5173 dnl Add the right compiler flags and libraries.
5174 if test "x$with_libxml2" = "xyes"; then
5175 BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
5176 BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
5177 AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
5178 AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
5180 if test "x$with_libvirt" = "xyes"
5182 with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
5187 with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
5193 if test "x$with_libvirt" = "xyes"
5195 SAVE_CPPFLAGS="$CPPFLAGS"
5196 CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
5198 AC_CHECK_HEADERS(libvirt/libvirt.h, [],
5199 [with_libvirt="no (libvirt/libvirt.h not found)"])
5201 CPPFLAGS="$SAVE_CPPFLAGS"
5203 if test "x$with_libvirt" = "xyes"
5205 SAVE_CFLAGS="$CFLAGS"
5206 SAVE_LDFLAGS="$LDFLAGS"
5208 CFLAGS="$CFLAGS $with_libvirt_cflags"
5209 LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
5211 AC_CHECK_LIB(virt, virDomainBlockStats,
5212 [with_libvirt="yes"],
5213 [with_libvirt="no (symbol virDomainBlockStats not found)"])
5215 CFLAGS="$SAVE_CFLAGS"
5216 LDFLAGS="$SAVE_LDFLAGS"
5218 dnl Add the right compiler flags and libraries.
5219 if test "x$with_libvirt" = "xyes"; then
5220 BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
5221 BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
5222 AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
5223 AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
5227 # $PKG_CONFIG --exists OpenIPMIpthread {{{
5228 with_libopenipmipthread="yes"
5229 with_libopenipmipthread_cflags=""
5230 with_libopenipmipthread_libs=""
5232 AC_MSG_CHECKING([for pkg-config])
5234 if test "x$PKG_CONFIG" = "x"
5236 with_libopenipmipthread="no"
5239 temp_result="$PKG_CONFIG"
5241 AC_MSG_RESULT([$temp_result])
5243 if test "x$with_libopenipmipthread" = "xyes"
5245 AC_MSG_CHECKING([for libOpenIPMIpthread])
5246 $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
5249 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
5251 AC_MSG_RESULT([$with_libopenipmipthread])
5254 if test "x$with_libopenipmipthread" = "xyes"
5256 AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
5257 temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
5260 with_libopenipmipthread_cflags="$temp_result"
5262 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
5263 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
5265 AC_MSG_RESULT([$temp_result])
5268 if test "x$with_libopenipmipthread" = "xyes"
5270 AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
5271 temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
5274 with_libopenipmipthread_ldflags="$temp_result"
5276 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
5277 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
5279 AC_MSG_RESULT([$temp_result])
5282 if test "x$with_libopenipmipthread" = "xyes"
5284 SAVE_CPPFLAGS="$CPPFLAGS"
5285 CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
5287 AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
5288 [with_libopenipmipthread="yes"],
5289 [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
5290 [#include <OpenIPMI/ipmiif.h>
5291 #include <OpenIPMI/ipmi_err.h>
5292 #include <OpenIPMI/ipmi_posix.h>
5293 #include <OpenIPMI/ipmi_conn.h>
5296 CPPFLAGS="$SAVE_CPPFLAGS"
5299 if test "x$with_libopenipmipthread" = "xyes"
5301 BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
5302 BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
5303 AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
5304 AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
5308 # --with-libatasmart {{{
5309 with_libatasmart_cppflags=""
5310 with_libatasmart_ldflags=""
5311 AC_ARG_WITH(libatasmart, [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
5313 if test "x$withval" != "xno" && test "x$withval" != "xyes"
5315 with_libatasmart_cppflags="-I$withval/include"
5316 with_libatasmart_ldflags="-L$withval/lib"
5317 with_libatasmart="yes"
5319 with_libatasmart="$withval"
5323 if test "x$ac_system" = "xLinux"
5325 with_libatasmart="yes"
5327 with_libatasmart="no (Linux only library)"
5330 if test "x$with_libatasmart" = "xyes"
5332 SAVE_CPPFLAGS="$CPPFLAGS"
5333 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5335 AC_CHECK_HEADERS(atasmart.h, [with_libatasmart="yes"], [with_libatasmart="no (atasmart.h not found)"])
5337 CPPFLAGS="$SAVE_CPPFLAGS"
5339 if test "x$with_libatasmart" = "xyes"
5341 SAVE_CPPFLAGS="$CPPFLAGS"
5342 SAVE_LDFLAGS="$LDFLAGS"
5343 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5344 LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
5346 AC_CHECK_LIB(atasmart, sk_disk_open, [with_libatasmart="yes"], [with_libatasmart="no (Symbol 'sk_disk_open' not found)"])
5348 CPPFLAGS="$SAVE_CPPFLAGS"
5349 LDFLAGS="$SAVE_LDFLAGS"
5351 if test "x$with_libatasmart" = "xyes"
5353 BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
5354 BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
5355 BUILD_WITH_LIBATASMART_LIBS="-latasmart"
5356 AC_SUBST(BUILD_WITH_LIBATASMART_CPPFLAGS)
5357 AC_SUBST(BUILD_WITH_LIBATASMART_LDFLAGS)
5358 AC_SUBST(BUILD_WITH_LIBATASMART_LIBS)
5359 AC_DEFINE(HAVE_LIBATASMART, 1, [Define if libatasmart is present and usable.])
5361 AM_CONDITIONAL(BUILD_WITH_LIBATASMART, test "x$with_libatasmart" = "xyes")
5364 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
5365 [with_libnotify="yes"],
5366 [with_libnotify="no (pkg-config doesn't know libnotify)"]
5369 PKG_CHECK_MODULES([LIBRIEMANN_CLIENT], [riemann-client >= 1.8.0],
5370 [with_libriemann_client="yes"],
5371 [with_libriemann_client="no (pkg-config doesn't know libriemann-client)"])
5373 # Check for enabled/disabled features
5376 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
5377 # ------------------------------------------------------------
5379 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
5384 m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
5389 m4_define([EnDis],[disabled])dnl
5390 m4_define([YesNo],[no])dnl
5396 m4_define([EnDis],[enabled])dnl
5397 m4_define([YesNo],[yes])dnl
5400 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
5404 m4_if([$3], [feature], [],
5408 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
5414 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
5416 enable_$1='[YesNo]'dnl
5418 if test "x$enable_$1" = "xno"
5422 if test "x$enable_$1" = "xyes"
5426 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
5431 AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
5432 AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
5434 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
5436 # AC_PLUGIN(name, default, info)
5437 # ------------------------------------------------------------
5444 AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
5446 if test "x$enableval" = "xyes"
5449 else if test "x$enableval" = "xforce"
5454 enable_plugin="no (disabled on command line)"
5458 if test "x$enable_all_plugins" = "xauto"
5460 if test "x$2" = "xyes"
5467 enable_plugin="$enable_all_plugins"
5470 if test "x$enable_plugin" = "xyes"
5472 if test "x$2" = "xyes" || test "x$force" = "xyes"
5474 AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
5475 if test "x$2" != "xyes"
5477 dependency_warning="yes"
5479 else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
5480 dependency_error="yes"
5481 enable_plugin="$2 (dependency error)"
5484 AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
5485 enable_$1="$enable_plugin"
5487 )# AC_PLUGIN(name, default, info)
5489 m4_divert_once([HELP_ENABLE], [
5490 collectd features:])
5491 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
5492 AC_COLLECTD([debug], [enable], [feature], [debugging])
5493 AC_COLLECTD([daemon], [disable], [feature], [daemon mode])
5494 AC_COLLECTD([getifaddrs],[enable], [feature], [getifaddrs under Linux])
5495 AC_COLLECTD([werror], [disable], [feature], [building with -Werror])
5497 dependency_warning="no"
5498 dependency_error="no"
5501 plugin_barometer="no"
5506 plugin_conntrack="no"
5507 plugin_contextswitch="no"
5510 plugin_curl_json="no"
5511 plugin_curl_xml="no"
5519 plugin_interface="no"
5524 plugin_log_logstash="no"
5526 plugin_multimeter="no"
5530 plugin_processes="no"
5531 plugin_protocols="no"
5536 plugin_tcpconns="no"
5539 plugin_turbostat="no"
5545 plugin_wireless="no"
5549 plugin_zookeeper="no"
5552 if test "x$ac_system" = "xLinux"
5554 plugin_battery="yes"
5555 plugin_cgroups="yes"
5556 plugin_conntrack="yes"
5557 plugin_contextswitch="yes"
5559 plugin_cpufreq="yes"
5562 plugin_entropy="yes"
5563 plugin_fhcount="yes"
5564 plugin_fscache="yes"
5565 plugin_interface="yes"
5573 plugin_processes="yes"
5574 plugin_protocols="yes"
5577 plugin_tcpconns="yes"
5578 plugin_thermal="yes"
5581 plugin_vserver="yes"
5582 plugin_wireless="yes"
5583 plugin_zfs_arc="yes"
5585 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
5589 if test "x$c_cv_have_usable_asm_msrindex_h" = "xyes" && test "x$have_cpuid_h" = "xyes"
5591 plugin_turbostat="yes"
5595 if test "x$ac_system" = "xOpenBSD"
5597 plugin_tcpconns="yes"
5600 if test "x$ac_system" = "xNetBSD"
5603 plugin_entropy="yes"
5605 plugin_processes="yes"
5609 if test "x$with_libiokit" = "xyes"
5611 plugin_battery="yes"
5617 if test "x$ac_system" = "xAIX"
5620 plugin_tcpconns="yes"
5625 if test "x$ac_system" = "xFreeBSD"
5628 plugin_zfs_arc="yes"
5632 if test "x$with_perfstat" = "xyes"
5634 plugin_contextswitch="yes"
5637 plugin_interface="yes"
5644 if test "x$with_procinfo" = "xyes"
5646 plugin_processes="yes"
5650 if test "x$with_kstat" = "xyes"
5653 plugin_processes="yes"
5655 plugin_zfs_arc="yes"
5659 if test "x$with_devinfo$with_kstat" = "xyesyes"
5663 plugin_interface="yes"
5669 if test "x$ac_system" = "xLinux"
5671 AC_CHECK_DECL(i2c_smbus_read_i2c_block_data,
5672 [with_libi2c="yes"],
5673 [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
5674 [[#include <stdlib.h>
5675 #include <linux/i2c-dev.h>]])
5677 with_libi2c="no (Linux only)"
5680 if test "x$with_libi2c" = "xyes"
5682 plugin_barometer="yes"
5687 if test "x$with_libstatgrab" = "xyes"
5691 plugin_interface="yes"
5698 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5701 if test "x$have_strptime" = "xyes"
5707 if test "x$with_libopenipmipthread" = "xyes"
5712 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
5714 plugin_curl_json="yes"
5717 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5719 plugin_curl_xml="yes"
5722 if test "x$with_libyajl" = "xyes"
5727 if test "x$have_processor_info" = "xyes"
5731 if test "x$have_sysctl" = "xyes"
5736 if test "x$ac_system" = "xDarwin"
5741 if test "x$have_sysctlbyname" = "xyes"
5743 plugin_contextswitch="yes"
5746 plugin_tcpconns="yes"
5749 # Df plugin: Check if we know how to determine mount points first.
5750 #if test "x$have_listmntent" = "xyes"; then
5753 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
5757 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
5761 #if test "x$have_getmntent" = "xseq"
5765 if test "x$c_cv_have_one_getmntent" = "xyes"
5770 if test "x$c_cv_have_getmntent_r" = "xyes"
5775 # Df plugin: Check if we have either `statfs' or `statvfs' second.
5776 if test "x$plugin_df" = "xyes"
5779 if test "x$have_statfs" = "xyes"
5783 if test "x$have_statvfs" = "xyes"
5789 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
5791 plugin_ethstat="yes"
5794 if test "x$have_getifaddrs" = "xyes"
5796 plugin_interface="yes"
5799 if test "x$have_getloadavg" = "xyes"
5804 if test "x$with_libyajl" = "xyes"
5806 plugin_log_logstash="yes"
5809 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
5814 # Mac OS X memory interface
5815 if test "x$have_host_statistics" = "xyes"
5820 if test "x$have_termios_h" = "xyes"
5822 if test "x$ac_system" != "xAIX"
5824 plugin_multimeter="yes"
5829 if test "x$have_thread_info" = "xyes"
5831 plugin_processes="yes"
5834 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
5836 plugin_processes="yes"
5839 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"
5841 plugin_processes="yes"
5844 if test "x$with_libatasmart" = "xyes" && test "x$with_libudev" = "xyes"
5849 if test "x$with_kvm_getswapinfo" = "xyes"
5854 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
5859 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_three_args" = "xyes"
5864 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
5866 plugin_tcpconns="yes"
5869 if test "x$have_getutent" = "xyes"
5873 if test "x$have_getutxent" = "xyes"
5878 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
5883 if test "x$with_libxenctrl" = "xyes"
5888 m4_divert_once([HELP_ENABLE], [
5891 AC_ARG_ENABLE([all-plugins],
5892 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
5894 if test "x$enableval" = "xyes"
5896 enable_all_plugins="yes"
5897 else if test "x$enableval" = "xauto"
5899 enable_all_plugins="auto"
5901 enable_all_plugins="no"
5904 [enable_all_plugins="auto"])
5906 m4_divert_once([HELP_ENABLE], [])
5908 AC_PLUGIN([aggregation], [yes], [Aggregation plugin])
5909 AC_PLUGIN([amqp], [$with_librabbitmq], [AMQP output plugin])
5910 AC_PLUGIN([apache], [$with_libcurl], [Apache httpd statistics])
5911 AC_PLUGIN([apcups], [yes], [Statistics of UPSes by APC])
5912 AC_PLUGIN([apple_sensors], [$with_libiokit], [Apple hardware sensors])
5913 AC_PLUGIN([aquaero], [$with_libaquaero5], [Aquaero hardware sensors])
5914 AC_PLUGIN([ascent], [$plugin_ascent], [AscentEmu player statistics])
5915 AC_PLUGIN([barometer], [$plugin_barometer], [Barometer sensor on I2C])
5916 AC_PLUGIN([battery], [$plugin_battery], [Battery statistics])
5917 AC_PLUGIN([bind], [$plugin_bind], [ISC Bind nameserver statistics])
5918 AC_PLUGIN([ceph], [$plugin_ceph], [Ceph daemon statistics])
5919 AC_PLUGIN([cgroups], [$plugin_cgroups], [CGroups CPU usage accounting])
5920 AC_PLUGIN([chrony], [yes], [Chrony statistics])
5921 AC_PLUGIN([conntrack], [$plugin_conntrack], [nf_conntrack statistics])
5922 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
5923 AC_PLUGIN([cpu], [$plugin_cpu], [CPU usage statistics])
5924 AC_PLUGIN([cpufreq], [$plugin_cpufreq], [CPU frequency statistics])
5925 AC_PLUGIN([csv], [yes], [CSV output plugin])
5926 AC_PLUGIN([curl], [$with_libcurl], [CURL generic web statistics])
5927 AC_PLUGIN([curl_json], [$plugin_curl_json], [CouchDB statistics])
5928 AC_PLUGIN([curl_xml], [$plugin_curl_xml], [CURL generic xml statistics])
5929 AC_PLUGIN([dbi], [$with_libdbi], [General database statistics])
5930 AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics])
5931 AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics])
5932 AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis])
5933 AC_PLUGIN([drbd], [$plugin_drbd], [DRBD statistics])
5934 AC_PLUGIN([email], [yes], [EMail statistics])
5935 AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics])
5936 AC_PLUGIN([ethstat], [$plugin_ethstat], [Stats from NIC driver])
5937 AC_PLUGIN([exec], [yes], [Execution of external programs])
5938 AC_PLUGIN([fhcount], [$plugin_fhcount], [File handles statistics])
5939 AC_PLUGIN([filecount], [yes], [Count files in directories])
5940 AC_PLUGIN([fscache], [$plugin_fscache], [fscache statistics])
5941 AC_PLUGIN([gmond], [$with_libganglia], [Ganglia plugin])
5942 AC_PLUGIN([grpc], [$with_grpc], [gRPC plugin])
5943 AC_PLUGIN([hddtemp], [yes], [Query hddtempd])
5944 AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics])
5945 AC_PLUGIN([ipc], [$plugin_ipc], [IPC statistics])
5946 AC_PLUGIN([ipmi], [$plugin_ipmi], [IPMI sensor statistics])
5947 AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
5948 AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
5949 AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
5950 AC_PLUGIN([java], [$with_java], [Embed the Java Virtual Machine])
5951 AC_PLUGIN([load], [$plugin_load], [System load])
5952 AC_PLUGIN([log_logstash], [$plugin_log_logstash], [Logstash json_event compatible logging])
5953 AC_PLUGIN([logfile], [yes], [File logging plugin])
5954 AC_PLUGIN([lpar], [$with_perfstat], [AIX logical partitions statistics])
5955 AC_PLUGIN([lvm], [$with_liblvm2app], [LVM statistics])
5956 AC_PLUGIN([madwifi], [$have_linux_wireless_h], [Madwifi wireless statistics])
5957 AC_PLUGIN([match_empty_counter], [yes], [The empty counter match])
5958 AC_PLUGIN([match_hashed], [yes], [The hashed match])
5959 AC_PLUGIN([match_regex], [yes], [The regex match])
5960 AC_PLUGIN([match_timediff], [yes], [The timediff match])
5961 AC_PLUGIN([match_value], [yes], [The value match])
5962 AC_PLUGIN([mbmon], [yes], [Query mbmond])
5963 AC_PLUGIN([md], [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
5964 AC_PLUGIN([memcachec], [$with_libmemcached], [memcachec statistics])
5965 AC_PLUGIN([memcached], [yes], [memcached statistics])
5966 AC_PLUGIN([memory], [$plugin_memory], [Memory usage])
5967 AC_PLUGIN([mic], [$with_mic], [Intel Many Integrated Core stats])
5968 AC_PLUGIN([modbus], [$with_libmodbus], [Modbus plugin])
5969 AC_PLUGIN([mqtt], [$with_libmosquitto], [MQTT output plugin])
5970 AC_PLUGIN([multimeter], [$plugin_multimeter], [Read multimeter values])
5971 AC_PLUGIN([mysql], [$with_libmysql], [MySQL statistics])
5972 AC_PLUGIN([netapp], [$with_libnetapp], [NetApp plugin])
5973 AC_PLUGIN([netlink], [$with_libmnl], [Enhanced Linux network statistics])
5974 AC_PLUGIN([network], [yes], [Network communication plugin])
5975 AC_PLUGIN([nfs], [$plugin_nfs], [NFS statistics])
5976 AC_PLUGIN([nginx], [$with_libcurl], [nginx statistics])
5977 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
5978 AC_PLUGIN([notify_email], [$with_libesmtp], [Email notifier])
5979 AC_PLUGIN([notify_nagios], [yes], [Nagios notification plugin])
5980 AC_PLUGIN([ntpd], [yes], [NTPd statistics])
5981 AC_PLUGIN([numa], [$plugin_numa], [NUMA virtual memory statistics])
5982 AC_PLUGIN([nut], [$with_libupsclient], [Network UPS tools statistics])
5983 AC_PLUGIN([olsrd], [yes], [olsrd statistics])
5984 AC_PLUGIN([onewire], [$with_libowcapi], [OneWire sensor statistics])
5985 AC_PLUGIN([openldap], [$with_libldap], [OpenLDAP statistics])
5986 AC_PLUGIN([openvpn], [yes], [OpenVPN client statistics])
5987 AC_PLUGIN([oracle], [$with_oracle], [Oracle plugin])
5988 AC_PLUGIN([perl], [$plugin_perl], [Embed a Perl interpreter])
5989 AC_PLUGIN([pf], [$have_net_pfvar_h], [BSD packet filter (PF) statistics])
5990 # FIXME: Check for libevent, too.
5991 AC_PLUGIN([pinba], [$have_protoc_c], [Pinba statistics])
5992 AC_PLUGIN([ping], [$with_liboping], [Network latency statistics])
5993 AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics])
5994 AC_PLUGIN([powerdns], [yes], [PowerDNS statistics])
5995 AC_PLUGIN([processes], [$plugin_processes], [Process statistics])
5996 AC_PLUGIN([protocols], [$plugin_protocols], [Protocol (IP, TCP, ...) statistics])
5997 AC_PLUGIN([python], [$with_python], [Embed a Python interpreter])
5998 AC_PLUGIN([redis], [$with_libhiredis], [Redis plugin])
5999 AC_PLUGIN([routeros], [$with_librouteros], [RouterOS plugin])
6000 AC_PLUGIN([rrdcached], [$librrd_rrdc_update], [RRDTool output plugin])
6001 AC_PLUGIN([rrdtool], [$with_librrd], [RRDTool output plugin])
6002 AC_PLUGIN([sensors], [$with_libsensors], [lm_sensors statistics])
6003 AC_PLUGIN([serial], [$plugin_serial], [serial port traffic])
6004 AC_PLUGIN([sigrok], [$with_libsigrok], [sigrok acquisition sources])
6005 AC_PLUGIN([smart], [$plugin_smart], [SMART statistics])
6006 AC_PLUGIN([snmp], [$with_libnetsnmp], [SNMP querying plugin])
6007 AC_PLUGIN([statsd], [yes], [StatsD plugin])
6008 AC_PLUGIN([swap], [$plugin_swap], [Swap usage statistics])
6009 AC_PLUGIN([syslog], [$have_syslog], [Syslog logging plugin])
6010 AC_PLUGIN([table], [yes], [Parsing of tabular data])
6011 AC_PLUGIN([tail], [yes], [Parsing of logfiles])
6012 AC_PLUGIN([tail_csv], [yes], [Parsing of CSV files])
6013 AC_PLUGIN([tape], [$plugin_tape], [Tape drive statistics])
6014 AC_PLUGIN([target_notification], [yes], [The notification target])
6015 AC_PLUGIN([target_replace], [yes], [The replace target])
6016 AC_PLUGIN([target_scale], [yes], [The scale target])
6017 AC_PLUGIN([target_set], [yes], [The set target])
6018 AC_PLUGIN([target_v5upgrade], [yes], [The v5upgrade target])
6019 AC_PLUGIN([tcpconns], [$plugin_tcpconns], [TCP connection statistics])
6020 AC_PLUGIN([teamspeak2], [yes], [TeamSpeak2 server statistics])
6021 AC_PLUGIN([ted], [$plugin_ted], [Read The Energy Detective values])
6022 AC_PLUGIN([thermal], [$plugin_thermal], [Linux ACPI thermal zone statistics])
6023 AC_PLUGIN([threshold], [yes], [Threshold checking plugin])
6024 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant], [TokyoTyrant database statistics])
6025 AC_PLUGIN([turbostat], [$plugin_turbostat], [Advanced statistic on Intel cpu states])
6026 AC_PLUGIN([unixsock], [yes], [Unixsock communication plugin])
6027 AC_PLUGIN([uptime], [$plugin_uptime], [Uptime statistics])
6028 AC_PLUGIN([users], [$plugin_users], [User statistics])
6029 AC_PLUGIN([uuid], [yes], [UUID as hostname plugin])
6030 AC_PLUGIN([varnish], [$with_libvarnish], [Varnish cache statistics])
6031 AC_PLUGIN([virt], [$plugin_virt], [Virtual machine statistics])
6032 AC_PLUGIN([vmem], [$plugin_vmem], [Virtual memory statistics])
6033 AC_PLUGIN([vserver], [$plugin_vserver], [Linux VServer statistics])
6034 AC_PLUGIN([wireless], [$plugin_wireless], [Wireless statistics])
6035 AC_PLUGIN([write_graphite], [yes], [Graphite / Carbon output plugin])
6036 AC_PLUGIN([write_http], [$with_libcurl], [HTTP output plugin])
6037 AC_PLUGIN([write_kafka], [$with_librdkafka], [Kafka output plugin])
6038 AC_PLUGIN([write_log], [yes], [Log output plugin])
6039 AC_PLUGIN([write_mongodb], [$with_libmongoc], [MongoDB output plugin])
6040 AC_PLUGIN([write_redis], [$with_libhiredis], [Redis output plugin])
6041 AC_PLUGIN([write_riemann], [$with_libriemann_client], [Riemann output plugin])
6042 AC_PLUGIN([write_sensu], [yes], [Sensu output plugin])
6043 AC_PLUGIN([write_tsdb], [yes], [TSDB output plugin])
6044 AC_PLUGIN([xencpu], [$plugin_xencpu], [Xen Host CPU usage])
6045 AC_PLUGIN([xmms], [$with_libxmms], [XMMS statistics])
6046 AC_PLUGIN([zfs_arc], [$plugin_zfs_arc], [ZFS ARC statistics])
6047 AC_PLUGIN([zone], [$plugin_zone], [Solaris container statistics])
6048 AC_PLUGIN([zookeeper], [yes], [Zookeeper statistics])
6050 dnl Default configuration file
6051 # Load either syslog or logfile
6052 LOAD_PLUGIN_SYSLOG=""
6053 LOAD_PLUGIN_LOGFILE=""
6054 LOAD_PLUGIN_LOG_LOGSTASH=""
6056 AC_MSG_CHECKING([which default log plugin to load])
6057 default_log_plugin="none"
6058 if test "x$enable_syslog" = "xyes"
6060 default_log_plugin="syslog"
6062 LOAD_PLUGIN_SYSLOG="##"
6065 if test "x$enable_logfile" = "xyes"
6067 if test "x$default_log_plugin" = "xnone"
6069 default_log_plugin="logfile"
6071 LOAD_PLUGIN_LOGFILE="#"
6074 LOAD_PLUGIN_LOGFILE="##"
6077 if test "x$enable_log_logstash" = "xyes"
6079 LOAD_PLUGIN_LOG_LOGSTASH="#"
6081 LOAD_PLUGIN_LOG_LOGSTASH="##"
6085 AC_MSG_RESULT([$default_log_plugin])
6087 AC_SUBST(LOAD_PLUGIN_SYSLOG)
6088 AC_SUBST(LOAD_PLUGIN_LOGFILE)
6089 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
6091 DEFAULT_LOG_LEVEL="info"
6092 if test "x$enable_debug" = "xyes"
6094 DEFAULT_LOG_LEVEL="debug"
6096 AC_SUBST(DEFAULT_LOG_LEVEL)
6098 # Load only one of rrdtool, network, csv in the default config.
6099 LOAD_PLUGIN_RRDTOOL=""
6100 LOAD_PLUGIN_NETWORK=""
6103 AC_MSG_CHECKING([which default write plugin to load])
6104 default_write_plugin="none"
6105 if test "x$enable_rrdtool" = "xyes"
6107 default_write_plugin="rrdtool"
6109 LOAD_PLUGIN_RRDTOOL="##"
6112 if test "x$enable_network" = "xyes"
6114 if test "x$default_write_plugin" = "xnone"
6116 default_write_plugin="network"
6118 LOAD_PLUGIN_NETWORK="#"
6121 LOAD_PLUGIN_NETWORK="##"
6124 if test "x$enable_csv" = "xyes"
6126 if test "x$default_write_plugin" = "xnone"
6128 default_write_plugin="csv"
6133 LOAD_PLUGIN_CSV="##"
6135 AC_MSG_RESULT([$default_write_plugin])
6137 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
6138 AC_SUBST(LOAD_PLUGIN_NETWORK)
6139 AC_SUBST(LOAD_PLUGIN_CSV)
6142 if test "x$ac_system" = "xLinux" \
6143 && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
6145 enable_ipvs="$enable_ipvs (ip_vs.h not found)"
6148 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
6150 enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
6154 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
6155 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
6157 if test "x$withval" != "xno" && test "x$withval" != "xyes"
6159 PERL_BINDINGS_OPTIONS="$withval"
6160 with_perl_bindings="yes"
6162 with_perl_bindings="$withval"
6166 if test -n "$perl_interpreter"
6168 with_perl_bindings="yes"
6170 with_perl_bindings="no (no perl interpreter found)"
6173 if test "x$with_perl_bindings" = "xyes"
6175 PERL_BINDINGS="perl"
6179 AC_SUBST(PERL_BINDINGS)
6180 AC_SUBST(PERL_BINDINGS_OPTIONS)
6182 dnl libcollectdclient
6183 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
6184 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
6185 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
6187 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
6189 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
6191 AC_SUBST(LCC_VERSION_MAJOR)
6192 AC_SUBST(LCC_VERSION_MINOR)
6193 AC_SUBST(LCC_VERSION_PATCH)
6194 AC_SUBST(LCC_VERSION_EXTRA)
6195 AC_SUBST(LCC_VERSION_STRING)
6197 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
6201 if test "x$enable_werror" != "xno"
6203 AM_CFLAGS="$AM_CFLAGS -Werror"
6204 AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
6206 AC_SUBST([AM_CFLAGS])
6207 AC_SUBST([AM_CXXFLAGS])
6209 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])
6212 if test "x$with_librrd" = "xyes" \
6213 && test "x$librrd_threadsafe" != "xyes"
6215 with_librrd="yes (warning: librrd is not thread-safe)"
6218 if test "x$with_libperl" = "xyes"
6220 with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
6222 enable_perl="no (needs libperl)"
6225 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
6227 enable_perl="no (libperl doesn't support ithreads)"
6230 if test "x$with_perl_bindings" = "xyes" \
6231 && test "x$PERL_BINDINGS_OPTIONS" != "x"
6233 with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
6240 Platform . . . . . . $ac_system
6241 CC . . . . . . . . . $CC
6242 CFLAGS . . . . . . . $AM_CFLAGS $CFLAGS
6243 CXXFLAGS . . . . . . $AM_CXXFLAGS $CXXFLAGS
6244 CPP . . . . . . . . . $CPP
6245 CPPFLAGS . . . . . . $CPPFLAGS
6246 GRPC_CPP_PLUGIN . . . $GRPC_CPP_PLUGIN
6247 LD . . . . . . . . . $LD
6248 LDFLAGS . . . . . . . $LDFLAGS
6249 PROTOC . . . . . . . $PROTOC
6250 YACC . . . . . . . . $YACC
6251 YFLAGS . . . . . . . $YFLAGS
6254 intel mic . . . . . . $with_mic
6255 libaquaero5 . . . . . $with_libaquaero5
6256 libatasmart . . . . . $with_libatasmart
6257 libcurl . . . . . . . $with_libcurl
6258 libdbi . . . . . . . $with_libdbi
6259 libesmtp . . . . . . $with_libesmtp
6260 libganglia . . . . . $with_libganglia
6261 libgcrypt . . . . . . $with_libgcrypt
6262 libgrpc . . . . . . . $with_libgrpc
6263 libhal . . . . . . . $with_libhal
6264 libhiredis . . . . . $with_libhiredis
6265 libi2c-dev . . . . . $with_libi2c
6266 libiokit . . . . . . $with_libiokit
6267 libiptc . . . . . . . $with_libiptc
6268 libjvm . . . . . . . $with_java
6269 libkstat . . . . . . $with_kstat
6270 libkvm . . . . . . . $with_libkvm
6271 libldap . . . . . . . $with_libldap
6272 liblvm2app . . . . . $with_liblvm2app
6273 libmemcached . . . . $with_libmemcached
6274 libmnl . . . . . . . $with_libmnl
6275 libmodbus . . . . . . $with_libmodbus
6276 libmongoc . . . . . . $with_libmongoc
6277 libmosquitto . . . . $with_libmosquitto
6278 libmysql . . . . . . $with_libmysql
6279 libnetapp . . . . . . $with_libnetapp
6280 libnetsnmp . . . . . $with_libnetsnmp
6281 libnotify . . . . . . $with_libnotify
6282 liboconfig . . . . . $with_liboconfig
6283 libopenipmi . . . . . $with_libopenipmipthread
6284 liboping . . . . . . $with_liboping
6285 libowcapi . . . . . . $with_libowcapi
6286 libpcap . . . . . . . $with_libpcap
6287 libperfstat . . . . . $with_perfstat
6288 libperl . . . . . . . $with_libperl
6289 libpq . . . . . . . . $with_libpq
6290 librabbitmq . . . . . $with_librabbitmq
6291 libriemann-client . . $with_libriemann_client
6292 librdkafka . . . . . $with_librdkafka
6293 librouteros . . . . . $with_librouteros
6294 librrd . . . . . . . $with_librrd
6295 libsensors . . . . . $with_libsensors
6296 libsigrok . . . . . $with_libsigrok
6297 libstatgrab . . . . . $with_libstatgrab
6298 libtokyotyrant . . . $with_libtokyotyrant
6299 libudev . . . . . . . $with_libudev
6300 libupsclient . . . . $with_libupsclient
6301 libvarnish . . . . . $with_libvarnish
6302 libvirt . . . . . . . $with_libvirt
6303 libxenctrl . . . . . $with_libxenctrl
6304 libxml2 . . . . . . . $with_libxml2
6305 libxmms . . . . . . . $with_libxmms
6306 libyajl . . . . . . . $with_libyajl
6307 oracle . . . . . . . $with_oracle
6308 protobuf-c . . . . . $have_protoc_c
6309 protoc 3 . . . . . . $protoc3
6310 python . . . . . . . $with_python
6313 daemon mode . . . . . $enable_daemon
6314 debug . . . . . . . . $enable_debug
6317 perl . . . . . . . . $with_perl_bindings
6320 aggregation . . . . . $enable_aggregation
6321 amqp . . . . . . . $enable_amqp
6322 apache . . . . . . . $enable_apache
6323 apcups . . . . . . . $enable_apcups
6324 apple_sensors . . . . $enable_apple_sensors
6325 aquaero . . . . . . . $enable_aquaero
6326 ascent . . . . . . . $enable_ascent
6327 barometer . . . . . . $enable_barometer
6328 battery . . . . . . . $enable_battery
6329 bind . . . . . . . . $enable_bind
6330 ceph . . . . . . . . $enable_ceph
6331 cgroups . . . . . . . $enable_cgroups
6332 chrony. . . . . . . . $enable_chrony
6333 conntrack . . . . . . $enable_conntrack
6334 contextswitch . . . . $enable_contextswitch
6335 cpu . . . . . . . . . $enable_cpu
6336 cpufreq . . . . . . . $enable_cpufreq
6337 csv . . . . . . . . . $enable_csv
6338 curl . . . . . . . . $enable_curl
6339 curl_json . . . . . . $enable_curl_json
6340 curl_xml . . . . . . $enable_curl_xml
6341 dbi . . . . . . . . . $enable_dbi
6342 df . . . . . . . . . $enable_df
6343 disk . . . . . . . . $enable_disk
6344 dns . . . . . . . . . $enable_dns
6345 drbd . . . . . . . . $enable_drbd
6346 email . . . . . . . . $enable_email
6347 entropy . . . . . . . $enable_entropy
6348 ethstat . . . . . . . $enable_ethstat
6349 exec . . . . . . . . $enable_exec
6350 fhcount . . . . . . . $enable_fhcount
6351 filecount . . . . . . $enable_filecount
6352 fscache . . . . . . . $enable_fscache
6353 gmond . . . . . . . . $enable_gmond
6354 grpc . . . . . . . . $enable_grpc
6355 hddtemp . . . . . . . $enable_hddtemp
6356 interface . . . . . . $enable_interface
6357 ipc . . . . . . . . . $enable_ipc
6358 ipmi . . . . . . . . $enable_ipmi
6359 iptables . . . . . . $enable_iptables
6360 ipvs . . . . . . . . $enable_ipvs
6361 irq . . . . . . . . . $enable_irq
6362 java . . . . . . . . $enable_java
6363 load . . . . . . . . $enable_load
6364 logfile . . . . . . . $enable_logfile
6365 log_logstash . . . . $enable_log_logstash
6366 lpar . . . . . . . . $enable_lpar
6367 lvm . . . . . . . . . $enable_lvm
6368 madwifi . . . . . . . $enable_madwifi
6369 match_empty_counter . $enable_match_empty_counter
6370 match_hashed . . . . $enable_match_hashed
6371 match_regex . . . . . $enable_match_regex
6372 match_timediff . . . $enable_match_timediff
6373 match_value . . . . . $enable_match_value
6374 mbmon . . . . . . . . $enable_mbmon
6375 md . . . . . . . . . $enable_md
6376 memcachec . . . . . . $enable_memcachec
6377 memcached . . . . . . $enable_memcached
6378 memory . . . . . . . $enable_memory
6379 mic . . . . . . . . . $enable_mic
6380 modbus . . . . . . . $enable_modbus
6381 mqtt . . . . . . . . $enable_mqtt
6382 multimeter . . . . . $enable_multimeter
6383 mysql . . . . . . . . $enable_mysql
6384 netapp . . . . . . . $enable_netapp
6385 netlink . . . . . . . $enable_netlink
6386 network . . . . . . . $enable_network
6387 nfs . . . . . . . . . $enable_nfs
6388 nginx . . . . . . . . $enable_nginx
6389 notify_desktop . . . $enable_notify_desktop
6390 notify_email . . . . $enable_notify_email
6391 notify_nagios . . . . $enable_notify_nagios
6392 ntpd . . . . . . . . $enable_ntpd
6393 numa . . . . . . . . $enable_numa
6394 nut . . . . . . . . . $enable_nut
6395 olsrd . . . . . . . . $enable_olsrd
6396 onewire . . . . . . . $enable_onewire
6397 openldap . . . . . . $enable_openldap
6398 openvpn . . . . . . . $enable_openvpn
6399 oracle . . . . . . . $enable_oracle
6400 perl . . . . . . . . $enable_perl
6401 pf . . . . . . . . . $enable_pf
6402 pinba . . . . . . . . $enable_pinba
6403 ping . . . . . . . . $enable_ping
6404 postgresql . . . . . $enable_postgresql
6405 powerdns . . . . . . $enable_powerdns
6406 processes . . . . . . $enable_processes
6407 protocols . . . . . . $enable_protocols
6408 python . . . . . . . $enable_python
6409 redis . . . . . . . . $enable_redis
6410 routeros . . . . . . $enable_routeros
6411 rrdcached . . . . . . $enable_rrdcached
6412 rrdtool . . . . . . . $enable_rrdtool
6413 sensors . . . . . . . $enable_sensors
6414 serial . . . . . . . $enable_serial
6415 sigrok . . . . . . . $enable_sigrok
6416 smart . . . . . . . . $enable_smart
6417 snmp . . . . . . . . $enable_snmp
6418 statsd . . . . . . . $enable_statsd
6419 swap . . . . . . . . $enable_swap
6420 syslog . . . . . . . $enable_syslog
6421 table . . . . . . . . $enable_table
6422 tail_csv . . . . . . $enable_tail_csv
6423 tail . . . . . . . . $enable_tail
6424 tape . . . . . . . . $enable_tape
6425 target_notification . $enable_target_notification
6426 target_replace . . . $enable_target_replace
6427 target_scale . . . . $enable_target_scale
6428 target_set . . . . . $enable_target_set
6429 target_v5upgrade . . $enable_target_v5upgrade
6430 tcpconns . . . . . . $enable_tcpconns
6431 teamspeak2 . . . . . $enable_teamspeak2
6432 ted . . . . . . . . . $enable_ted
6433 thermal . . . . . . . $enable_thermal
6434 threshold . . . . . . $enable_threshold
6435 tokyotyrant . . . . . $enable_tokyotyrant
6436 turbostat . . . . . . $enable_turbostat
6437 unixsock . . . . . . $enable_unixsock
6438 uptime . . . . . . . $enable_uptime
6439 users . . . . . . . . $enable_users
6440 uuid . . . . . . . . $enable_uuid
6441 varnish . . . . . . . $enable_varnish
6442 virt . . . . . . . . $enable_virt
6443 vmem . . . . . . . . $enable_vmem
6444 vserver . . . . . . . $enable_vserver
6445 wireless . . . . . . $enable_wireless
6446 write_graphite . . . $enable_write_graphite
6447 write_http . . . . . $enable_write_http
6448 write_kafka . . . . . $enable_write_kafka
6449 write_log . . . . . . $enable_write_log
6450 write_mongodb . . . . $enable_write_mongodb
6451 write_redis . . . . . $enable_write_redis
6452 write_riemann . . . . $enable_write_riemann
6453 write_sensu . . . . . $enable_write_sensu
6454 write_tsdb . . . . . $enable_write_tsdb
6455 xencpu . . . . . . . $enable_xencpu
6456 xmms . . . . . . . . $enable_xmms
6457 zfs_arc . . . . . . . $enable_zfs_arc
6458 zone . . . . . . . . $enable_zone
6459 zookeeper . . . . . . $enable_zookeeper
6463 if test "x$dependency_error" = "xyes"; then
6464 AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6467 if test "x$dependency_warning" = "xyes"; then
6468 AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6471 # vim: set fdm=marker :