1 dnl Process this file with autoconf to produce a configure script.
3 [m4_esyscmd(./version-gen.sh)],
4 [https://github.com/collectd/collectd/issues],
6 [https://collectd.org])
8 AC_CONFIG_HEADERS(src/config.h)
9 AC_CONFIG_AUX_DIR([libltdl/config])
11 dnl older automake's default of ARFLAGS=cru is noisy on newer binutils;
12 dnl we don't really need the 'u' even in older toolchains. Then there is
13 dnl older libtool, which spelled it AR_FLAGS
14 m4_divert_text([DEFAULTS], [: "${ARFLAGS=cr} ${AR_FLAGS=cr}"])
16 m4_ifdef([LT_PACKAGE_VERSION],
19 LT_CONFIG_LTDL_DIR([libltdl])
21 LTDL_INIT([convenience])
22 AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.])
27 AC_LIBLTDL_CONVENIENCE
31 AC_CONFIG_SUBDIRS(libltdl)
32 AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.])
36 AM_CONDITIONAL([BUILD_INCLUDED_LTDL], [test "x$LTDLDEPS" != "x"])
38 AM_INIT_AUTOMAKE([tar-pax dist-bzip2 foreign])
39 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
42 AC_PREFIX_DEFAULT("/opt/collectd")
47 # Checks for programs.
55 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
63 AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no])
64 if test "x$have_protoc_c" = "xno"
66 have_protoc_c="no (protoc-c compiler not found)"
69 if test "x$have_protoc_c" = "xyes"
71 AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
72 [have_protoc_c="yes"; break],
73 [have_protoc_c="no (<google/protobuf-c/protobuf-c.h> not found)"])
75 if test "x$have_protoc_c" = "xyes"
77 AC_CHECK_LIB([protobuf-c], [protobuf_c_version],
78 [have_protoc_c="yes"],
79 [have_protoc_c="no (libprotobuf-c not found)"])
82 AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")
84 AC_MSG_CHECKING([for kernel type ($host_os)])
87 AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
91 AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
95 AC_DEFINE([KERNEL_DARWIN], 1, [True if program is to be compiled for a Darwin kernel])
99 AC_DEFINE([KERNEL_OPENBSD], 1, [True if program is to be compiled for an OpenBSD kernel])
103 AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
107 AC_DEFINE([KERNEL_FREEBSD], 1, [True if program is to be compiled for a FreeBSD kernel])
113 AC_MSG_RESULT([$ac_system])
115 AM_CONDITIONAL([BUILD_LINUX],[test "x$ac_system" = "xLinux"])
116 AM_CONDITIONAL([BUILD_SOLARIS],[test "x$ac_system" = "xSolaris"])
117 AM_CONDITIONAL([BUILD_DARWIN],[test "x$ac_system" = "xDarwin"])
118 AM_CONDITIONAL([BUILD_OPENBSD],[test "x$ac_system" = "xOpenBSD"])
119 AM_CONDITIONAL([BUILD_AIX],[test "x$ac_system" = "xAIX"])
120 AM_CONDITIONAL([BUILD_FREEBSD],[test "x$ac_system" = "xFreeBSD"])
122 if test "x$ac_system" = "xLinux"
124 AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
125 if test -z "$KERNEL_DIR"
127 KERNEL_DIR="/lib/modules/`uname -r`/source"
130 KERNEL_CFLAGS="-I$KERNEL_DIR/include"
131 AC_SUBST(KERNEL_CFLAGS)
134 if test "x$ac_system" = "xSolaris"
136 AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
137 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
139 AC_MSG_CHECKING([whether compiler builds 64bit binaries])
140 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
142 # error "Compiler not in 64bit mode."
145 [AC_MSG_RESULT([yes])],
148 AC_MSG_NOTICE([Solaris detected. Please consider building a 64-bit binary.])
152 if test "x$ac_system" = "xAIX"
154 AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
157 # Where to install .pc files.
158 pkgconfigdir="${libdir}/pkgconfig"
159 AC_SUBST(pkgconfigdir)
161 # Check for standards compliance mode
162 AC_ARG_ENABLE(standards,
163 AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
164 [enable_standards="$enableval"],
165 [enable_standards="no"])
166 if test "x$enable_standards" = "xyes"
168 AC_DEFINE(_ISOC99_SOURCE, 1, [Define to enforce ISO C99 compliance.])
169 AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
170 AC_DEFINE(_XOPEN_SOURCE, 700, [Define to enforce X/Open 7 (XSI) compliance.])
171 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
172 if test "x$GCC" = "xyes"
174 CFLAGS="$CFLAGS -std=c99"
177 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
180 # Checks for header files.
187 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)
190 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
195 # include <sys/types.h>
198 AC_CHECK_HEADERS(netinet/in.h, [], [],
203 # include <sys/types.h>
205 #if HAVE_NETINET_IN_SYSTM_H
206 # include <netinet/in_systm.h>
209 AC_CHECK_HEADERS(netinet/ip.h, [], [],
214 # include <sys/types.h>
216 #if HAVE_NETINET_IN_SYSTM_H
217 # include <netinet/in_systm.h>
219 #if HAVE_NETINET_IN_H
220 # include <netinet/in.h>
223 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
228 # include <sys/types.h>
230 #if HAVE_NETINET_IN_SYSTM_H
231 # include <netinet/in_systm.h>
233 #if HAVE_NETINET_IN_H
234 # include <netinet/in.h>
236 #if HAVE_NETINET_IP_H
237 # include <netinet/ip.h>
240 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
245 # include <sys/types.h>
247 #if HAVE_NETINET_IN_SYSTM_H
248 # include <netinet/in_systm.h>
250 #if HAVE_NETINET_IN_H
251 # include <netinet/in.h>
253 #if HAVE_NETINET_IP_H
254 # include <netinet/ip.h>
257 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
262 # include <sys/types.h>
264 #if HAVE_NETINET_IN_SYSTM_H
265 # include <netinet/in_systm.h>
267 #if HAVE_NETINET_IN_H
268 # include <netinet/in.h>
271 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
276 # include <sys/types.h>
278 #if HAVE_NETINET_IN_SYSTM_H
279 # include <netinet/in_systm.h>
281 #if HAVE_NETINET_IN_H
282 # include <netinet/in.h>
284 #if HAVE_NETINET_IP6_H
285 # include <netinet/ip6.h>
288 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
293 # include <sys/types.h>
295 #if HAVE_NETINET_IN_SYSTM_H
296 # include <netinet/in_systm.h>
298 #if HAVE_NETINET_IN_H
299 # include <netinet/in.h>
301 #if HAVE_NETINET_IP_H
302 # include <netinet/ip.h>
305 AC_CHECK_HEADERS(netinet/udp.h, [], [],
310 # include <sys/types.h>
312 #if HAVE_NETINET_IN_SYSTM_H
313 # include <netinet/in_systm.h>
315 #if HAVE_NETINET_IN_H
316 # include <netinet/in.h>
318 #if HAVE_NETINET_IP_H
319 # include <netinet/ip.h>
324 AC_CHECK_TYPES([struct ip6_ext], [have_ip6_ext="yes"], [have_ip6_ext="no"],
329 # include <sys/types.h>
331 #if HAVE_NETINET_IN_SYSTM_H
332 # include <netinet/in_systm.h>
334 #if HAVE_NETINET_IN_H
335 # include <netinet/in.h>
337 #if HAVE_NETINET_IP6_H
338 # include <netinet/ip6.h>
342 if test "x$have_ip6_ext" = "xno"; then
343 SAVE_CFLAGS="$CFLAGS"
344 CFLAGS="$CFLAGS -DSOLARIS2=8"
346 AC_CHECK_TYPES([struct ip6_ext],
347 [have_ip6_ext="yes, with -DSOLARIS2=8"],
353 # include <sys/types.h>
355 #if HAVE_NETINET_IN_SYSTM_H
356 # include <netinet/in_systm.h>
358 #if HAVE_NETINET_IN_H
359 # include <netinet/in.h>
361 #if HAVE_NETINET_IP6_H
362 # include <netinet/ip6.h>
366 if test "x$have_ip6_ext" = "xno"; then
367 CFLAGS="$SAVE_CFLAGS"
372 AC_CHECK_HEADERS(sys/dkstat.h)
373 if test "x$ac_system" = "xDarwin"
375 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)
376 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
377 # For the battery plugin
378 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
380 #if HAVE_IOKIT_IOKITLIB_H
381 # include <IOKit/IOKitLib.h>
383 #if HAVE_IOKIT_IOTYPES_H
384 # include <IOKit/IOTypes.h>
390 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
393 # include <sys/types.h>
396 # include <sys/param.h>
400 AC_MSG_CHECKING([for sysctl kern.cp_times])
401 if test -x /sbin/sysctl
403 /sbin/sysctl kern.cp_times 2>/dev/null
407 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
408 [Define if sysctl supports kern.cp_times])
417 AC_CHECK_HEADERS(linux/major.h)
419 # For md module (Linux only)
420 if test "x$ac_system" = "xLinux"
422 AC_CHECK_HEADERS(linux/raid/md_u.h,
423 [have_linux_raid_md_u_h="yes"],
424 [have_linux_raid_md_u_h="no"],
426 #include <sys/ioctl.h>
427 #include <linux/major.h>
428 #include <linux/types.h>
431 have_linux_raid_md_u_h="no"
434 # For the swap module
435 have_linux_wireless_h="no"
436 if test "x$ac_system" = "xLinux"
438 AC_CHECK_HEADERS(linux/wireless.h,
439 [have_linux_wireless_h="yes"],
440 [have_linux_wireless_h="no"],
443 #include <sys/ioctl.h>
444 #include <sys/socket.h>
448 # For the swap module
449 have_sys_swap_h="yes"
450 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
452 #undef _FILE_OFFSET_BITS
453 #undef _LARGEFILE64_SOURCE
455 # include <sys/types.h>
458 # include <sys/param.h>
463 # For the processes plugin
465 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
467 # For interface plugin
468 AC_CHECK_HEADERS(ifaddrs.h)
469 AC_CHECK_HEADERS(net/if.h, [], [],
472 # include <sys/types.h>
474 #if HAVE_SYS_SOCKET_H
475 # include <sys/socket.h>
478 AC_CHECK_HEADERS(linux/if.h, [], [],
481 # include <sys/types.h>
483 #if HAVE_SYS_SOCKET_H
484 # include <sys/socket.h>
487 AC_CHECK_HEADERS(linux/inet_diag.h, [], [],
490 # include <sys/types.h>
492 #if HAVE_SYS_SOCKET_H
493 # include <sys/socket.h>
495 #if HAVE_LINUX_INET_DIAG_H
496 # include <linux/inet_diag.h>
499 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
502 # include <sys/types.h>
504 #if HAVE_SYS_SOCKET_H
505 # include <sys/socket.h>
508 # include <linux/if.h>
513 AC_CHECK_HEADERS(linux/sockios.h,
514 [have_linux_sockios_h="yes"],
515 [have_linux_sockios_h="no"],
518 # include <sys/ioctl.h>
524 AC_CHECK_HEADERS(linux/ethtool.h,
525 [have_linux_ethtool_h="yes"],
526 [have_linux_ethtool_h="no"],
529 # include <sys/ioctl.h>
534 #if HAVE_LINUX_SOCKIOS_H
535 # include <linux/sockios.h>
540 have_linux_ip_vs_h="no"
541 have_net_ip_vs_h="no"
543 ip_vs_h_needs_kernel_cflags="no"
544 if test "x$ac_system" = "xLinux"
546 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
547 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
548 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
550 if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
552 SAVE_CFLAGS="$CFLAGS"
553 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
555 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
557 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
558 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
559 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
561 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
563 ip_vs_h_needs_kernel_cflags="yes"
566 CFLAGS="$SAVE_CFLAGS"
569 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
572 AC_CHECK_HEADERS(sys/ucred.h, [], [],
575 # include <sys/types.h>
578 # include <sys/param.h>
582 # For mount interface
583 AC_CHECK_HEADERS(sys/mount.h, [], [],
586 # include <sys/types.h>
589 # include <sys/param.h>
593 # For the email plugin
594 AC_CHECK_HEADERS(linux/un.h, [], [],
596 #if HAVE_SYS_SOCKET_H
597 # include <sys/socket.h>
601 AC_CHECK_HEADERS(pwd.h grp.h sys/un.h ctype.h limits.h xfs/xqm.h fs_info.h fshelp.h paths.h mntent.h mnttab.h sys/fstyp.h sys/fs_types.h sys/mntent.h sys/mnttab.h sys/statfs.h sys/statvfs.h sys/vfs.h sys/vfstab.h sys/vmmeter.h kvm.h wordexp.h locale.h)
604 AC_CHECK_HEADERS(arpa/nameser.h)
605 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
607 #if HAVE_ARPA_NAMESER_H
608 # include <arpa/nameser.h>
612 AC_CHECK_HEADERS(net/if_arp.h, [], [],
613 [#if HAVE_SYS_SOCKET_H
614 # include <sys/socket.h>
617 AC_CHECK_HEADERS(net/ppp_defs.h)
618 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
619 [#if HAVE_NET_PPP_DEFS_H
620 # include <net/ppp_defs.h>
623 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
628 # include <sys/types.h>
630 #if HAVE_SYS_SOCKET_H
631 # include <sys/socket.h>
636 #if HAVE_NETINET_IN_H
637 # include <netinet/in.h>
641 AC_CHECK_HEADERS(netinet/ip_compat.h)
643 have_net_pfvar_h="no"
644 AC_CHECK_HEADERS(net/pfvar.h,
645 [have_net_pfvar_h="yes"],
646 [have_net_pfvar_h="no"],
649 # include <sys/ioctl.h>
651 #if HAVE_SYS_SOCKET_H
652 # include <sys/socket.h>
657 #if HAVE_NETINET_IN_H
658 # include <netinet/in.h>
662 # For the multimeter plugin
664 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
666 # For the turbostat plugin
667 have_asm_msrindex_h="no"
668 AC_CHECK_HEADERS(asm/msr-index.h, [have_asm_msrindex_h="yes"])
670 if test "x$have_asm_msrindex_h" = "xyes"
672 AC_CACHE_CHECK([whether asm/msr-index.h has MSR_PKG_C10_RESIDENCY],
673 [c_cv_have_usable_asm_msrindex_h],
674 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
676 #include<asm/msr-index.h>
679 int y = MSR_PKG_C10_RESIDENCY;
683 [c_cv_have_usable_asm_msrindex_h="yes"],
684 [c_cv_have_usable_asm_msrindex_h="no"],
690 AC_CHECK_HEADERS(cpuid.h, [have_cpuid_h="yes"])
692 AC_CHECK_HEADERS(sys/capability.h)
694 # Checks for typedefs, structures, and compiler characteristics.
707 # Checks for library functions.
709 AC_PROG_GCC_TRADITIONAL
710 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)
714 SAVE_CFLAGS="$CFLAGS"
715 # Emulate behavior of src/Makefile.am
716 if test "x$GCC" = "xyes"
718 CFLAGS="$CFLAGS -Wall -Werror"
721 AC_CACHE_CHECK([for strtok_r],
722 [c_cv_have_strtok_r_default],
731 char buffer[] = "foo,bar,baz";
738 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
741 printf ("token = %s;\n", token);
745 [c_cv_have_strtok_r_default="yes"],
746 [c_cv_have_strtok_r_default="no"]
750 if test "x$c_cv_have_strtok_r_default" = "xno"
752 CFLAGS="$CFLAGS -D_REENTRANT=1"
754 AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
755 [c_cv_have_strtok_r_reentrant],
764 char buffer[] = "foo,bar,baz";
771 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
774 printf ("token = %s;\n", token);
778 [c_cv_have_strtok_r_reentrant="yes"],
779 [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
784 CFLAGS="$SAVE_CFLAGS"
785 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
787 CFLAGS="$CFLAGS -D_REENTRANT=1"
790 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
792 socket_needs_socket="no"
793 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
794 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
796 clock_gettime_needs_rt="no"
797 clock_gettime_needs_posix4="no"
798 have_clock_gettime="no"
799 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
800 if test "x$have_clock_gettime" = "xno"
802 AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
803 have_clock_gettime="yes"])
805 if test "x$have_clock_gettime" = "xno"
807 AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
808 have_clock_gettime="yes"])
810 if test "x$have_clock_gettime" = "xyes"
812 AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
814 AC_MSG_WARN(cannot find clock_gettime)
817 nanosleep_needs_rt="no"
818 nanosleep_needs_posix4="no"
819 AC_CHECK_FUNCS(nanosleep,
821 AC_CHECK_LIB(rt, nanosleep,
822 [nanosleep_needs_rt="yes"],
823 AC_CHECK_LIB(posix4, nanosleep,
824 [nanosleep_needs_posix4="yes"],
825 AC_MSG_ERROR(cannot find nanosleep))))
827 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
828 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
830 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
831 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
832 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
833 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
834 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
835 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
836 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
837 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
838 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
839 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
840 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
841 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
843 # Check for strptime {{{
844 if test "x$GCC" = "xyes"
846 SAVE_CFLAGS="$CFLAGS"
847 CFLAGS="$CFLAGS -Wall -Wextra -Werror"
850 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
851 if test "x$have_strptime" = "xyes"
853 AC_CACHE_CHECK([whether strptime is exported by default],
854 [c_cv_have_strptime_default],
855 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
861 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
864 [c_cv_have_strptime_default="yes"],
865 [c_cv_have_strptime_default="no"]))
867 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
869 AC_CACHE_CHECK([whether strptime needs standards mode],
870 [c_cv_have_strptime_standards],
871 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
873 #ifndef _ISOC99_SOURCE
874 # define _ISOC99_SOURCE 1
876 #ifndef _POSIX_C_SOURCE
877 # define _POSIX_C_SOURCE 200112L
879 #ifndef _XOPEN_SOURCE
880 # define _XOPEN_SOURCE 500
886 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
889 [c_cv_have_strptime_standards="yes"],
890 [c_cv_have_strptime_standards="no"]))
892 if test "x$c_cv_have_strptime_standards" = "xyes"
894 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
900 if test "x$GCC" = "xyes"
902 CFLAGS="$SAVE_CFLAGS"
904 # }}} Check for strptime
906 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
907 if test "x$have_swapctl" = "xyes"; then
908 AC_CACHE_CHECK([whether swapctl takes two arguments],
909 [c_cv_have_swapctl_two_args],
910 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
912 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
913 # undef _FILE_OFFSET_BITS
914 # undef _LARGEFILE64_SOURCE
916 #include <sys/stat.h>
917 #include <sys/param.h>
918 #include <sys/swap.h>
922 int num = swapctl(0, NULL);
925 [c_cv_have_swapctl_two_args="yes"],
926 [c_cv_have_swapctl_two_args="no"]
929 AC_CACHE_CHECK([whether swapctl takes three arguments],
930 [c_cv_have_swapctl_three_args],
934 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
935 # undef _FILE_OFFSET_BITS
936 # undef _LARGEFILE64_SOURCE
938 #include <sys/stat.h>
939 #include <sys/param.h>
940 #include <sys/swap.h>
944 int num = swapctl(0, NULL, 0);
947 [c_cv_have_swapctl_three_args="yes"],
948 [c_cv_have_swapctl_three_args="no"]
952 # Check for different versions of `swapctl' here..
953 if test "x$have_swapctl" = "xyes"; then
954 if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
955 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
956 [Define if the function swapctl exists and takes two arguments.])
958 if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
959 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
960 [Define if the function swapctl exists and takes three arguments.])
965 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
967 if test "x$withval" = "xno"; then
969 else if test "x$withval" = "xyes"; then
976 if test "x$nan_type" = "xnone"; then
977 AC_CACHE_CHECK([whether NAN is defined by default],
978 [c_cv_have_nan_default],
979 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
983 static double foo = NAN;
992 [c_cv_have_nan_default="yes"],
993 [c_cv_have_nan_default="no"]
996 if test "x$c_cv_have_nan_default" = "xyes"
1001 if test "x$nan_type" = "xnone"; then
1002 AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
1003 [c_cv_have_nan_isoc],
1004 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1007 #define __USE_ISOC99 1
1009 static double foo = NAN;
1018 [c_cv_have_nan_isoc="yes"],
1019 [c_cv_have_nan_isoc="no"]
1022 if test "x$c_cv_have_nan_isoc" = "xyes"
1027 if test "x$nan_type" = "xnone"; then
1028 SAVE_LDFLAGS=$LDFLAGS
1029 LDFLAGS="$LDFLAGS -lm"
1030 AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1031 [c_cv_have_nan_zero],
1032 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1039 #define NAN (0.0 / 0.0)
1041 # define isnan(f) ((f) != (f))
1043 static double foo = NAN;
1052 [c_cv_have_nan_zero="yes"],
1053 [c_cv_have_nan_zero="no"]
1056 LDFLAGS=$SAVE_LDFLAGS
1057 if test "x$c_cv_have_nan_zero" = "xyes"
1063 if test "x$nan_type" = "xdefault"; then
1064 AC_DEFINE(NAN_STATIC_DEFAULT, 1,
1065 [Define if NAN is defined by default and can initialize static variables.])
1066 else if test "x$nan_type" = "xisoc99"; then
1067 AC_DEFINE(NAN_STATIC_ISOC, 1,
1068 [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
1069 else if test "x$nan_type" = "xzero"; then
1070 AC_DEFINE(NAN_ZERO_ZERO, 1,
1071 [Define if NAN can be defined as (0.0 / 0.0)])
1073 AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1076 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
1078 if test "x$withval" = "xnothing"; then
1079 fp_layout_type="nothing"
1080 else if test "x$withval" = "xendianflip"; then
1081 fp_layout_type="endianflip"
1082 else if test "x$withval" = "xintswap"; then
1083 fp_layout_type="intswap"
1085 AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1088 [fp_layout_type="unknown"])
1090 if test "x$fp_layout_type" = "xunknown"; then
1091 AC_CACHE_CHECK([if doubles are stored in x86 representation],
1092 [c_cv_fp_layout_need_nothing],
1093 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1099 # include <stdint.h>
1102 # include <inttypes.h>
1105 # include <stdbool.h>
1115 memcpy ((void *) &i0, (void *) &d, 8);
1118 memcpy ((void *) c, (void *) &i1, 8);
1120 if ((c[0] == 0x2f) && (c[1] == 0x25)
1121 && (c[2] == 0xc0) && (c[3] == 0xc7)
1122 && (c[4] == 0x43) && (c[5] == 0x2b)
1123 && (c[6] == 0x1f) && (c[7] == 0x5b))
1129 [c_cv_fp_layout_need_nothing="yes"],
1130 [c_cv_fp_layout_need_nothing="no"]
1133 if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1134 fp_layout_type="nothing"
1137 if test "x$fp_layout_type" = "xunknown"; then
1138 AC_CACHE_CHECK([if endianflip converts to x86 representation],
1139 [c_cv_fp_layout_need_endianflip],
1140 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1146 # include <stdint.h>
1149 # include <inttypes.h>
1152 # include <stdbool.h>
1154 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1155 (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1156 (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1157 (((uint64_t)(A) & 0x000000ff00000000LL) >> 8) | \
1158 (((uint64_t)(A) & 0x00000000ff000000LL) << 8) | \
1159 (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1160 (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1161 (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1170 memcpy ((void *) &i0, (void *) &d, 8);
1172 i1 = endianflip (i0);
1173 memcpy ((void *) c, (void *) &i1, 8);
1175 if ((c[0] == 0x2f) && (c[1] == 0x25)
1176 && (c[2] == 0xc0) && (c[3] == 0xc7)
1177 && (c[4] == 0x43) && (c[5] == 0x2b)
1178 && (c[6] == 0x1f) && (c[7] == 0x5b))
1184 [c_cv_fp_layout_need_endianflip="yes"],
1185 [c_cv_fp_layout_need_endianflip="no"]
1188 if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1189 fp_layout_type="endianflip"
1192 if test "x$fp_layout_type" = "xunknown"; then
1193 AC_CACHE_CHECK([if intswap converts to x86 representation],
1194 [c_cv_fp_layout_need_intswap],
1195 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1201 # include <stdint.h>
1204 # include <inttypes.h>
1207 # include <stdbool.h>
1209 #define intswap(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1210 (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1219 memcpy ((void *) &i0, (void *) &d, 8);
1222 memcpy ((void *) c, (void *) &i1, 8);
1224 if ((c[0] == 0x2f) && (c[1] == 0x25)
1225 && (c[2] == 0xc0) && (c[3] == 0xc7)
1226 && (c[4] == 0x43) && (c[5] == 0x2b)
1227 && (c[6] == 0x1f) && (c[7] == 0x5b))
1233 [c_cv_fp_layout_need_intswap="yes"],
1234 [c_cv_fp_layout_need_intswap="no"]
1237 if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1238 fp_layout_type="intswap"
1242 if test "x$fp_layout_type" = "xnothing"; then
1243 AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1244 [Define if doubles are stored in x86 representation.])
1245 else if test "x$fp_layout_type" = "xendianflip"; then
1246 AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1247 [Define if endianflip is needed to convert to x86 representation.])
1248 else if test "x$fp_layout_type" = "xintswap"; then
1249 AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1250 [Define if intswap is needed to convert to x86 representation.])
1252 AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1255 # --with-useragent {{{
1256 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1258 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1260 AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1267 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1268 have_getvfsstat="no"
1269 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1270 have_listmntent="no"
1271 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1272 have_getmntent_r="no"
1273 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"])
1276 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1277 if test "x$have_getmntent" = "xno"; then
1278 AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1280 if test "x$have_getmntent" = "xno"; then
1281 AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1283 if test "x$have_getmntent" = "xno"; then
1284 AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1287 if test "x$have_getmntent" = "xc"; then
1288 AC_CACHE_CHECK([whether getmntent takes one argument],
1289 [c_cv_have_one_getmntent],
1293 #include "$srcdir/src/utils_mount.h"
1298 fh = setmntent ("/etc/mtab", "r");
1299 me = getmntent (fh);
1300 return(me->mnt_passno);
1303 [c_cv_have_one_getmntent="yes"],
1304 [c_cv_have_one_getmntent="no"]
1307 AC_CACHE_CHECK([whether getmntent takes two arguments],
1308 [c_cv_have_two_getmntent],
1312 #include "$srcdir/src/utils_mount.h"
1318 fh = fopen ("/etc/mnttab", "r");
1319 status = getmntent (fh, &mt);
1323 [c_cv_have_two_getmntent="yes"],
1324 [c_cv_have_two_getmntent="no"]
1329 # Check for different versions of `getmntent' here..
1331 if test "x$have_getmntent" = "xc"; then
1332 if test "x$c_cv_have_one_getmntent" = "xyes"; then
1333 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1334 [Define if the function getmntent exists and takes one argument.])
1336 if test "x$c_cv_have_two_getmntent" = "xyes"; then
1337 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1338 [Define if the function getmntent exists and takes two arguments.])
1341 if test "x$have_getmntent" = "xsun"; then
1342 AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1343 [Define if the function getmntent exists. It's the version from libsun.])
1345 if test "x$have_getmntent" = "xseq"; then
1346 AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1347 [Define if the function getmntent exists. It's the version from libseq.])
1349 if test "x$have_getmntent" = "xgen"; then
1350 AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1351 [Define if the function getmntent exists. It's the version from libgen.])
1355 AC_CACHE_CHECK([if have htonll defined],
1357 AC_LINK_IFELSE([AC_LANG_PROGRAM(
1359 #include <sys/types.h>
1360 #include <netinet/in.h>
1362 # include <inttypes.h>
1369 [c_cv_have_htonll="yes"],
1370 [c_cv_have_htonll="no"]
1373 if test "x$c_cv_have_htonll" = "xyes"
1375 AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1378 # Check for structures
1379 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1380 [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1383 #include <sys/types.h>
1384 #include <sys/socket.h>
1387 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1388 [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1391 #include <sys/types.h>
1392 #include <sys/socket.h>
1393 #include <linux/if.h>
1394 #include <linux/netdevice.h>
1396 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1397 [AC_DEFINE(HAVE_STRUCT_LINUX_INET_DIAG_REQ, 1, [Define if struct inet_diag_req exists and is usable.])],
1400 #include <linux/inet_diag.h>
1404 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1407 #include <netinet/in.h>
1411 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1413 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1414 [Define if struct kinfo_proc exists in the FreeBSD variant.])
1415 have_struct_kinfo_proc_freebsd="yes"
1418 have_struct_kinfo_proc_freebsd="no"
1422 #include <sys/param.h>
1423 #include <sys/sysctl.h>
1424 #include <sys/user.h>
1427 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1429 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1430 [Define if struct kinfo_proc exists in the OpenBSD variant.])
1431 have_struct_kinfo_proc_openbsd="yes"
1434 have_struct_kinfo_proc_openbsd="no"
1437 #include <sys/param.h>
1438 #include <sys/sysctl.h>
1442 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1443 [#define _BSD_SOURCE
1444 #define _DEFAULT_SOURCE
1446 # include <stdint.h>
1448 #if HAVE_SYS_TYPES_H
1449 # include <sys/types.h>
1451 #if HAVE_NETINET_IN_SYSTM_H
1452 # include <netinet/in_systm.h>
1454 #if HAVE_NETINET_IN_H
1455 # include <netinet/in.h>
1457 #if HAVE_NETINET_IP_H
1458 # include <netinet/ip.h>
1460 #if HAVE_NETINET_UDP_H
1461 # include <netinet/udp.h>
1464 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1465 [#define _BSD_SOURCE
1466 #define _DEFAULT_SOURCE
1468 # include <stdint.h>
1470 #if HAVE_SYS_TYPES_H
1471 # include <sys/types.h>
1473 #if HAVE_NETINET_IN_SYSTM_H
1474 # include <netinet/in_systm.h>
1476 #if HAVE_NETINET_IN_H
1477 # include <netinet/in.h>
1479 #if HAVE_NETINET_IP_H
1480 # include <netinet/ip.h>
1482 #if HAVE_NETINET_UDP_H
1483 # include <netinet/udp.h>
1487 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1497 # Checks for libraries begin here
1500 with_libresolv="yes"
1501 AC_CHECK_LIB(resolv, res_search,
1503 AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1505 [with_libresolv="no"])
1506 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1508 dnl Check for HAL (hardware abstraction library)
1510 AC_CHECK_LIB(hal,libhal_device_property_exists,
1511 [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1513 if test "x$with_libhal" = "xyes"; then
1514 if test "x$PKG_CONFIG" != "x"; then
1515 BUILD_WITH_LIBHAL_CFLAGS="`$PKG_CONFIG --cflags hal`"
1516 BUILD_WITH_LIBHAL_LIBS="`$PKG_CONFIG --libs hal`"
1517 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1518 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1522 m4_divert_once([HELP_WITH], [
1523 collectd additional packages:])
1525 if test "x$ac_system" = "xAIX"
1530 with_perfstat="no (AIX only)"
1531 with_procinfo="no (AIX only)"
1534 if test "x$with_perfstat" = "xyes"
1536 AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1537 # AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1539 if test "x$with_perfstat" = "xyes"
1541 AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1542 # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1543 AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1544 if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1546 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1549 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1551 # Processes plugin under AIX.
1552 if test "x$with_procinfo" = "xyes"
1554 AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1556 if test "x$with_procinfo" = "xyes"
1558 AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1561 if test "x$ac_system" = "xSolaris"
1566 with_kstat="no (Solaris only)"
1567 with_devinfo="no (Solaris only)"
1570 if test "x$with_kstat" = "xyes"
1572 AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1574 if test "x$with_kstat" = "xyes"
1576 AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1577 AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1579 if test "x$with_kstat" = "xyes"
1581 AC_DEFINE(HAVE_LIBKSTAT, 1,
1582 [Define to 1 if you have the 'kstat' library (-lkstat)])
1584 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1585 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1588 if test "x$ac_system" = "xDarwin"
1594 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1597 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1598 if test "x$with_kvm_getprocs" = "xyes"
1600 AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1601 [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1604 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1606 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1607 if test "x$with_kvm_getswapinfo" = "xyes"
1609 AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1610 [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1613 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1615 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1616 if test "x$with_kvm_nlist" = "xyes"
1618 AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1619 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1620 [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1623 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1625 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1626 if test "x$with_kvm_openfiles" = "xyes"
1628 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1629 [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1632 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1634 # --with-libaquaero5 {{{
1635 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1637 if test "x$withval" = "xyes"
1639 with_libaquaero5="yes"
1640 else if test "x$withval" = "xno"
1642 with_libaquaero5="no"
1644 with_libaquaero5="yes"
1645 LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1646 LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1649 [with_libaquaero5="yes"])
1651 SAVE_CPPFLAGS="$CPPFLAGS"
1652 SAVE_LDFLAGS="$LDFLAGS"
1654 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1655 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1657 if test "x$with_libaquaero5" = "xyes"
1659 if test "x$LIBAQUAERO5_CFLAGS" != "x"
1661 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1663 AC_CHECK_HEADERS(libaquaero5.h,
1664 [with_libaquaero5="yes"],
1665 [with_libaquaero5="no (libaquaero5.h not found)"])
1667 if test "x$with_libaquaero5" = "xyes"
1669 if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1671 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1673 AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1674 [with_libaquaero5="yes"],
1675 [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1678 CPPFLAGS="$SAVE_CPPFLAGS"
1679 LDFLAGS="$SAVE_LDFLAGS"
1681 if test "x$with_libaquaero5" = "xyes"
1683 BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1684 BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1685 AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1686 AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1688 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1691 # --with-libhiredis {{{
1692 AC_ARG_WITH(libhiredis, [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@],
1693 [Path to libhiredis.])],
1695 if test "x$withval" = "xyes"
1697 with_libhiredis="yes"
1698 else if test "x$withval" = "xno"
1700 with_libhiredis="no"
1702 with_libhiredis="yes"
1703 LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
1704 LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
1707 [with_libhiredis="yes"])
1709 SAVE_CPPFLAGS="$CPPFLAGS"
1710 SAVE_LDFLAGS="$LDFLAGS"
1712 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
1713 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
1715 if test "x$with_libhiredis" = "xyes"
1717 if test "x$LIBHIREDIS_CPPFLAGS" != "x"
1719 AC_MSG_NOTICE([libhiredis CPPFLAGS: $LIBHIREDIS_CPPFLAGS])
1721 AC_CHECK_HEADERS(hiredis/hiredis.h,
1722 [with_libhiredis="yes"],
1723 [with_libhiredis="no (hiredis.h not found)"])
1725 if test "x$with_libhiredis" = "xyes"
1727 if test "x$LIBHIREDIS_LDFLAGS" != "x"
1729 AC_MSG_NOTICE([libhiredis LDFLAGS: $LIBHIREDIS_LDFLAGS])
1731 AC_CHECK_LIB(hiredis, redisCommand,
1732 [with_libhiredis="yes"],
1733 [with_libhiredis="no (symbol 'redisCommand' not found)"])
1737 CPPFLAGS="$SAVE_CPPFLAGS"
1738 LDFLAGS="$SAVE_LDFLAGS"
1740 if test "x$with_libhiredis" = "xyes"
1742 BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
1743 BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
1744 AC_SUBST(BUILD_WITH_LIBHIREDIS_CPPFLAGS)
1745 AC_SUBST(BUILD_WITH_LIBHIREDIS_LDFLAGS)
1747 AM_CONDITIONAL(BUILD_WITH_LIBHIREDIS, test "x$with_libhiredis" = "xyes")
1750 # --with-libcurl {{{
1751 with_curl_config="curl-config"
1754 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1756 if test "x$withval" = "xno"
1759 else if test "x$withval" = "xyes"
1763 if test -f "$withval" && test -x "$withval"
1765 with_curl_config="$withval"
1767 else if test -x "$withval/bin/curl-config"
1769 with_curl_config="$withval/bin/curl-config"
1778 if test "x$with_libcurl" = "xyes"
1780 with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1781 curl_config_status=$?
1783 if test $curl_config_status -ne 0
1785 with_libcurl="no ($with_curl_config failed)"
1787 SAVE_CPPFLAGS="$CPPFLAGS"
1788 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1790 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1792 CPPFLAGS="$SAVE_CPPFLAGS"
1795 if test "x$with_libcurl" = "xyes"
1797 with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1798 curl_config_status=$?
1800 if test $curl_config_status -ne 0
1802 with_libcurl="no ($with_curl_config failed)"
1804 AC_CHECK_LIB(curl, curl_easy_init,
1805 [with_libcurl="yes"],
1806 [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1808 AC_CHECK_DECL(CURLOPT_USERNAME,
1809 [have_curlopt_username="yes"],
1810 [have_curlopt_username="no"],
1811 [[#include <curl/curl.h>]])
1812 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
1813 [have_curlopt_timeout="yes"],
1814 [have_curlopt_timeout="no"],
1815 [[#include <curl/curl.h>]])
1818 if test "x$with_libcurl" = "xyes"
1820 BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1821 BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1822 AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1823 AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1825 if test "x$have_curlopt_username" = "xyes"
1827 AC_DEFINE(HAVE_CURLOPT_USERNAME, 1, [Define if libcurl supports CURLOPT_USERNAME option.])
1830 if test "x$have_curlopt_timeout" = "xyes"
1832 AC_DEFINE(HAVE_CURLOPT_TIMEOUT_MS, 1, [Define if libcurl supports CURLOPT_TIMEOUT_MS option.])
1835 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1839 with_libdbi_cppflags=""
1840 with_libdbi_ldflags=""
1841 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1843 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1845 with_libdbi_cppflags="-I$withval/include"
1846 with_libdbi_ldflags="-L$withval/lib"
1849 with_libdbi="$withval"
1855 if test "x$with_libdbi" = "xyes"
1857 SAVE_CPPFLAGS="$CPPFLAGS"
1858 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1860 AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1862 CPPFLAGS="$SAVE_CPPFLAGS"
1864 if test "x$with_libdbi" = "xyes"
1866 SAVE_CPPFLAGS="$CPPFLAGS"
1867 SAVE_LDFLAGS="$LDFLAGS"
1868 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1869 LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1871 AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1873 CPPFLAGS="$SAVE_CPPFLAGS"
1874 LDFLAGS="$SAVE_LDFLAGS"
1876 if test "x$with_libdbi" = "xyes"
1878 BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1879 BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1880 BUILD_WITH_LIBDBI_LIBS="-ldbi"
1881 AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1882 AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1883 AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1885 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1888 # --with-libesmtp {{{
1889 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1891 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1893 LDFLAGS="$LDFLAGS -L$withval/lib"
1894 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1897 with_libesmtp="$withval"
1903 if test "x$with_libesmtp" = "xyes"
1905 AC_CHECK_LIB(esmtp, smtp_create_session,
1907 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1908 ], [with_libesmtp="no (libesmtp not found)"])
1910 if test "x$with_libesmtp" = "xyes"
1912 AC_CHECK_HEADERS(libesmtp.h,
1914 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1915 ], [with_libesmtp="no (libesmtp.h not found)"])
1917 if test "x$with_libesmtp" = "xyes"
1923 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1924 [Wether or not to use the esmtp library])
1925 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1928 # --with-libganglia {{{
1929 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
1931 if test -f "$withval" && test -x "$withval"
1933 with_libganglia_config="$withval"
1934 with_libganglia="yes"
1935 else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
1937 with_libganglia_config="$withval/bin/ganglia-config"
1938 with_libganglia="yes"
1939 else if test -d "$withval"
1941 GANGLIA_CPPFLAGS="-I$withval/include"
1942 GANGLIA_LDFLAGS="-L$withval/lib"
1943 with_libganglia="yes"
1945 with_libganglia="$withval"
1949 with_libganglia="yes"
1952 if test "x$with_libganglia" = "xyes"
1954 if test "x$with_libganglia_config" != "x"
1956 if test "x$GANGLIA_CPPFLAGS" = "x"
1958 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
1961 if test "x$GANGLIA_LDFLAGS" = "x"
1963 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
1966 if test "x$GANGLIA_LIBS" = "x"
1968 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
1971 GANGLIA_LIBS="-lganglia"
1975 SAVE_CPPFLAGS="$CPPFLAGS"
1976 SAVE_LDFLAGS="$LDFLAGS"
1977 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
1978 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
1980 if test "x$with_libganglia" = "xyes"
1982 AC_CHECK_HEADERS(gm_protocol.h,
1984 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
1985 [Define to 1 if you have the <gm_protocol.h> header file.])
1986 ], [with_libganglia="no (gm_protocol.h not found)"])
1989 if test "x$with_libganglia" = "xyes"
1991 AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
1993 AC_DEFINE(HAVE_LIBGANGLIA, 1,
1994 [Define to 1 if you have the ganglia library (-lganglia).])
1995 ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
1998 CPPFLAGS="$SAVE_CPPFLAGS"
1999 LDFLAGS="$SAVE_LDFLAGS"
2001 AC_SUBST(GANGLIA_CPPFLAGS)
2002 AC_SUBST(GANGLIA_LDFLAGS)
2003 AC_SUBST(GANGLIA_LIBS)
2004 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
2007 # --with-libgcrypt {{{
2008 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
2009 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2010 GCRYPT_LIBS="$GCRYPT_LIBS"
2011 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2013 if test -f "$withval" && test -x "$withval"
2015 with_libgcrypt_config="$withval"
2016 with_libgcrypt="yes"
2017 else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
2019 with_libgcrypt_config="$withval/bin/gcrypt-config"
2020 with_libgcrypt="yes"
2021 else if test -d "$withval"
2023 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2024 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2025 with_libgcrypt="yes"
2027 with_libgcrypt_config="gcrypt-config"
2028 with_libgcrypt="$withval"
2032 with_libgcrypt_config="libgcrypt-config"
2033 with_libgcrypt="yes"
2036 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
2038 if test "x$GCRYPT_CPPFLAGS" = "x"
2040 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2043 if test "x$GCRYPT_LDFLAGS" = "x"
2045 gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null`
2046 GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib"
2049 if test "x$GCRYPT_LIBS" = "x"
2051 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2055 SAVE_CPPFLAGS="$CPPFLAGS"
2056 SAVE_LDFLAGS="$LDFLAGS"
2057 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2058 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2060 if test "x$with_libgcrypt" = "xyes"
2062 if test "x$GCRYPT_CPPFLAGS" != "x"
2064 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
2066 AC_CHECK_HEADERS(gcrypt.h,
2067 [with_libgcrypt="yes"],
2068 [with_libgcrypt="no (gcrypt.h not found)"])
2071 if test "x$with_libgcrypt" = "xyes"
2073 if test "x$GCRYPT_LDFLAGS" != "x"
2075 AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS])
2077 AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2078 [with_libgcrypt="yes"],
2079 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
2081 if test "$with_libgcrypt" != "no"; then
2082 m4_ifdef([AM_PATH_LIBGCRYPT],[AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")])
2083 GCRYPT_CPPFLAGS="$LIBGCRYPT_CPPFLAGS $LIBGCRYPT_CFLAGS"
2084 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
2088 CPPFLAGS="$SAVE_CPPFLAGS"
2089 LDFLAGS="$SAVE_LDFLAGS"
2091 if test "x$with_libgcrypt" = "xyes"
2093 AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
2096 AC_SUBST(GCRYPT_CPPFLAGS)
2097 AC_SUBST(GCRYPT_LDFLAGS)
2098 AC_SUBST(GCRYPT_LIBS)
2099 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
2102 # --with-libiptc {{{
2103 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2105 if test "x$withval" = "xyes"
2107 with_libiptc="pkgconfig"
2108 else if test "x$withval" = "xno"
2113 with_libiptc_cflags="-I$withval/include"
2114 with_libiptc_libs="-L$withval/lib"
2118 if test "x$ac_system" = "xLinux"
2120 with_libiptc="pkgconfig"
2122 with_libiptc="no (Linux only)"
2126 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
2128 with_libiptc="no (Don't have pkg-config)"
2131 if test "x$with_libiptc" = "xpkgconfig"
2133 $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2136 with_libiptc="no (pkg-config doesn't know libiptc)"
2139 if test "x$with_libiptc" = "xpkgconfig"
2141 with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2144 with_libiptc="no ($PKG_CONFIG failed)"
2146 with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2149 with_libiptc="no ($PKG_CONFIG failed)"
2153 SAVE_CPPFLAGS="$CPPFLAGS"
2154 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2156 # check whether the header file for libiptc is available.
2157 if test "x$with_libiptc" = "xpkgconfig"
2159 AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2160 [with_libiptc="no (header file missing)"])
2162 # If the header file is available, check for the required type declaractions.
2163 # They may be missing in old versions of libiptc. In that case, they will be
2164 # declared in the iptables plugin.
2165 if test "x$with_libiptc" = "xpkgconfig"
2167 AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2169 # Check for the iptc_init symbol in the library.
2170 # This could be in iptc or ip4tc
2171 if test "x$with_libiptc" = "xpkgconfig"
2174 AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2175 [with_libiptc="pkgconfig"],
2176 [with_libiptc="no"],
2177 [$with_libiptc_libs])
2180 if test "x$with_libiptc" = "xpkgconfig"
2185 CPPFLAGS="$SAVE_CPPFLAGS"
2187 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2188 if test "x$with_libiptc" = "xyes"
2190 BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2191 BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2192 AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2193 AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2198 with_java_home="$JAVA_HOME"
2199 if test "x$with_java_home" = "x"
2201 with_java_home="/usr/lib/jvm"
2203 with_java_vmtype="client"
2208 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2210 if test "x$withval" = "xno"
2213 else if test "x$withval" = "xyes"
2217 with_java_home="$withval"
2222 if test "x$with_java" = "xyes"
2224 if test -d "$with_java_home"
2226 AC_MSG_CHECKING([for jni.h])
2227 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2228 if test "x$TMPVAR" != "x"
2230 AC_MSG_RESULT([found in $TMPVAR])
2231 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2233 AC_MSG_RESULT([not found])
2236 AC_MSG_CHECKING([for jni_md.h])
2237 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2238 if test "x$TMPVAR" != "x"
2240 AC_MSG_RESULT([found in $TMPVAR])
2241 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2243 AC_MSG_RESULT([not found])
2246 AC_MSG_CHECKING([for libjvm.so])
2247 TMPVAR=`find -L "$with_java_home" -name libjvm.so -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2248 if test "x$TMPVAR" != "x"
2250 AC_MSG_RESULT([found in $TMPVAR])
2251 JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2253 AC_MSG_RESULT([not found])
2256 if test "x$JAVAC" = "x"
2258 AC_MSG_CHECKING([for javac])
2259 TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2260 if test "x$TMPVAR" != "x"
2263 AC_MSG_RESULT([$JAVAC])
2265 AC_MSG_RESULT([not found])
2268 if test "x$JAR" = "x"
2270 AC_MSG_CHECKING([for jar])
2271 TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2272 if test "x$TMPVAR" != "x"
2275 AC_MSG_RESULT([$JAR])
2277 AC_MSG_RESULT([not found])
2280 else if test "x$with_java_home" != "x"
2282 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2286 if test "x$JAVA_CPPFLAGS" != "x"
2288 AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2290 if test "x$JAVA_CFLAGS" != "x"
2292 AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2294 if test "x$JAVA_LDFLAGS" != "x"
2296 AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2298 if test "x$JAVAC" = "x"
2300 with_javac_path="$PATH"
2301 if test "x$with_java_home" != "x"
2303 with_javac_path="$with_java_home:with_javac_path"
2304 if test -d "$with_java_home/bin"
2306 with_javac_path="$with_java_home/bin:with_javac_path"
2310 AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2312 if test "x$JAVAC" = "x"
2314 with_java="no (javac not found)"
2316 if test "x$JAR" = "x"
2318 with_jar_path="$PATH"
2319 if test "x$with_java_home" != "x"
2321 with_jar_path="$with_java_home:$with_jar_path"
2322 if test -d "$with_java_home/bin"
2324 with_jar_path="$with_java_home/bin:$with_jar_path"
2328 AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2330 if test "x$JAR" = "x"
2332 with_java="no (jar not found)"
2335 SAVE_CPPFLAGS="$CPPFLAGS"
2336 SAVE_CFLAGS="$CFLAGS"
2337 SAVE_LDFLAGS="$LDFLAGS"
2338 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2339 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2340 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2342 if test "x$with_java" = "xyes"
2344 AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2346 if test "x$with_java" = "xyes"
2348 AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2350 [with_java="no (libjvm not found)"],
2353 if test "x$with_java" = "xyes"
2355 JAVA_LIBS="$JAVA_LIBS -ljvm"
2356 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2359 CPPFLAGS="$SAVE_CPPFLAGS"
2360 CFLAGS="$SAVE_CFLAGS"
2361 LDFLAGS="$SAVE_LDFLAGS"
2363 AC_SUBST(JAVA_CPPFLAGS)
2364 AC_SUBST(JAVA_CFLAGS)
2365 AC_SUBST(JAVA_LDFLAGS)
2367 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2370 # --with-libldap {{{
2371 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2373 if test "x$withval" = "xyes"
2376 else if test "x$withval" = "xno"
2381 LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2382 LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2385 [with_libldap="yes"])
2387 SAVE_CPPFLAGS="$CPPFLAGS"
2388 SAVE_LDFLAGS="$LDFLAGS"
2390 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2391 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2393 if test "x$with_libldap" = "xyes"
2395 if test "x$LIBLDAP_CPPFLAGS" != "x"
2397 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2399 AC_CHECK_HEADERS(ldap.h,
2400 [with_libldap="yes"],
2401 [with_libldap="no ('ldap.h' not found)"])
2403 if test "x$with_libldap" = "xyes"
2405 if test "x$LIBLDAP_LDFLAGS" != "x"
2407 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2409 AC_CHECK_LIB(ldap, ldap_initialize,
2410 [with_libldap="yes"],
2411 [with_libldap="no (symbol 'ldap_initialize' not found)"])
2415 CPPFLAGS="$SAVE_CPPFLAGS"
2416 LDFLAGS="$SAVE_LDFLAGS"
2418 if test "x$with_libldap" = "xyes"
2420 BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2421 BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2422 AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2423 AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2425 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2428 # --with-liblvm2app {{{
2429 with_liblvm2app_cppflags=""
2430 with_liblvm2app_ldflags=""
2431 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2433 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2435 with_liblvm2app_cppflags="-I$withval/include"
2436 with_liblvm2app_ldflags="-L$withval/lib"
2437 with_liblvm2app="yes"
2439 with_liblvm2app="$withval"
2443 with_liblvm2app="yes"
2445 if test "x$with_liblvm2app" = "xyes"
2447 SAVE_CPPFLAGS="$CPPFLAGS"
2448 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2450 AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2452 CPPFLAGS="$SAVE_CPPFLAGS"
2455 if test "x$with_liblvm2app" = "xyes"
2457 SAVE_CPPFLAGS="$CPPFLAGS"
2458 SAVE_LDFLAGS="$LDFLAGS"
2459 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2460 LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2462 AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
2464 CPPFLAGS="$SAVE_CPPFLAGS"
2465 LDFLAGS="$SAVE_LDFLAGS"
2467 if test "x$with_liblvm2app" = "xyes"
2469 BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2470 BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2471 BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2472 AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2473 AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2474 AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2475 AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2477 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2480 # --with-libmemcached {{{
2481 with_libmemcached_cppflags=""
2482 with_libmemcached_ldflags=""
2483 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2485 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2487 with_libmemcached_cppflags="-I$withval/include"
2488 with_libmemcached_ldflags="-L$withval/lib"
2489 with_libmemcached="yes"
2491 with_libmemcached="$withval"
2495 with_libmemcached="yes"
2497 if test "x$with_libmemcached" = "xyes"
2499 SAVE_CPPFLAGS="$CPPFLAGS"
2500 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2502 AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2504 CPPFLAGS="$SAVE_CPPFLAGS"
2506 if test "x$with_libmemcached" = "xyes"
2508 SAVE_CPPFLAGS="$CPPFLAGS"
2509 SAVE_LDFLAGS="$LDFLAGS"
2510 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2511 LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2513 AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2515 CPPFLAGS="$SAVE_CPPFLAGS"
2516 LDFLAGS="$SAVE_LDFLAGS"
2518 if test "x$with_libmemcached" = "xyes"
2520 BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2521 BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2522 BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2523 AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2524 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2525 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2526 AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2528 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2531 # --with-libmodbus {{{
2532 with_libmodbus_config=""
2533 with_libmodbus_cflags=""
2534 with_libmodbus_libs=""
2535 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2537 if test "x$withval" = "xno"
2540 else if test "x$withval" = "xyes"
2542 with_libmodbus="use_pkgconfig"
2543 else if test -d "$with_libmodbus/lib"
2545 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2546 with_libmodbus_cflags="-I$withval/include"
2547 with_libmodbus_libs="-L$withval/lib -lmodbus"
2548 with_libmodbus="yes"
2551 [with_libmodbus="use_pkgconfig"])
2553 # configure using pkg-config
2554 if test "x$with_libmodbus" = "xuse_pkgconfig"
2556 if test "x$PKG_CONFIG" = "x"
2558 with_libmodbus="no (Don't have pkg-config)"
2561 if test "x$with_libmodbus" = "xuse_pkgconfig"
2563 AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2564 $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2567 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2570 if test "x$with_libmodbus" = "xuse_pkgconfig"
2572 with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2575 with_libmodbus="no ($PKG_CONFIG failed)"
2577 with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2580 with_libmodbus="no ($PKG_CONFIG failed)"
2583 if test "x$with_libmodbus" = "xuse_pkgconfig"
2585 with_libmodbus="yes"
2588 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2589 # the actual checks.
2590 if test "x$with_libmodbus" = "xyes"
2592 SAVE_CPPFLAGS="$CPPFLAGS"
2593 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2595 AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
2597 CPPFLAGS="$SAVE_CPPFLAGS"
2599 if test "x$with_libmodbus" = "xyes"
2601 SAVE_CPPFLAGS="$CPPFLAGS"
2602 SAVE_LDFLAGS="$LDFLAGS"
2604 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2605 LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2607 AC_CHECK_LIB(modbus, modbus_connect,
2608 [with_libmodbus="yes"],
2609 [with_libmodbus="no (symbol modbus_connect not found)"])
2611 CPPFLAGS="$SAVE_CPPFLAGS"
2612 LDFLAGS="$SAVE_LDFLAGS"
2614 if test "x$with_libmodbus" = "xyes"
2616 BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2617 BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2618 AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2619 AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2623 # --with-libmongoc {{{
2624 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2626 if test "x$withval" = "xyes"
2628 with_libmongoc="yes"
2629 else if test "x$withval" = "xno"
2633 with_libmongoc="yes"
2634 LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2635 LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2638 [with_libmongoc="yes"])
2640 SAVE_CPPFLAGS="$CPPFLAGS"
2641 SAVE_LDFLAGS="$LDFLAGS"
2643 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2644 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2646 if test "x$with_libmongoc" = "xyes"
2648 if test "x$LIBMONGOC_CPPFLAGS" != "x"
2650 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2652 AC_CHECK_HEADERS(mongo.h,
2653 [with_libmongoc="yes"],
2654 [with_libmongoc="no ('mongo.h' not found)"],
2656 # define MONGO_HAVE_STDINT 1
2658 # define MONGO_USE_LONG_LONG_INT 1
2662 if test "x$with_libmongoc" = "xyes"
2664 if test "x$LIBMONGOC_LDFLAGS" != "x"
2666 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2668 AC_CHECK_LIB(mongoc, mongo_run_command,
2669 [with_libmongoc="yes"],
2670 [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2673 CPPFLAGS="$SAVE_CPPFLAGS"
2674 LDFLAGS="$SAVE_LDFLAGS"
2676 if test "x$with_libmongoc" = "xyes"
2678 BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2679 BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2680 AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2681 AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2683 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2686 # --with-libmosquitto {{{
2687 with_libmosquitto_cppflags=""
2688 with_libmosquitto_libs="-lmosquitto"
2689 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
2691 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2693 with_libmosquitto_cppflags="-I$withval/include"
2694 with_libmosquitto_libs="-L$withval/lib -lmosquitto"
2695 with_libmosquitto="yes"
2697 with_libmosquitto="$withval"
2701 with_libmosquitto="yes"
2703 if test "x$with_libmosquitto" = "xyes"
2705 SAVE_CPPFLAGS="$CPPFLAGS"
2706 CPPFLAGS="$with_libmosquitto_cppflags"
2708 AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
2710 CPPFLAGS="$SAVE_CPPFLAGS"
2712 if test "x$with_libmosquitto" = "xyes"
2714 SAVE_LDFLAGS="$LDFLAGS"
2715 SAVE_CPPFLAGS="$CPPFLAGS"
2716 LDFLAGS="$with_libmosquitto_libs"
2717 CPPFLAGS="$with_libmosquitto_cppflags"
2719 AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
2721 LDFLAGS="$SAVE_LDFLAGS"
2722 CPPFLAGS="$SAVE_CPPFLAGS"
2724 if test "x$with_libmosquitto" = "xyes"
2726 BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
2727 BUILD_WITH_LIBMOSQUITTO_LIBS="$with_libmosquitto_libs"
2728 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
2729 AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
2733 # --with-libmysql {{{
2734 with_mysql_config="mysql_config"
2735 with_mysql_cflags=""
2737 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2739 if test "x$withval" = "xno"
2742 else if test "x$withval" = "xyes"
2746 if test -f "$withval" && test -x "$withval";
2748 with_mysql_config="$withval"
2749 else if test -x "$withval/bin/mysql_config"
2751 with_mysql_config="$withval/bin/mysql_config"
2759 if test "x$with_libmysql" = "xyes"
2761 with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
2762 mysql_config_status=$?
2764 if test $mysql_config_status -ne 0
2766 with_libmysql="no ($with_mysql_config failed)"
2768 SAVE_CPPFLAGS="$CPPFLAGS"
2769 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2772 have_mysql_mysql_h="no"
2773 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2775 if test "x$have_mysql_h" = "xno"
2777 AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2780 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2782 with_libmysql="no (mysql.h not found)"
2785 CPPFLAGS="$SAVE_CPPFLAGS"
2788 if test "x$with_libmysql" = "xyes"
2790 with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2791 mysql_config_status=$?
2793 if test $mysql_config_status -ne 0
2795 with_libmysql="no ($with_mysql_config failed)"
2797 SAVE_CPPFLAGS="$CPPFLAGS"
2798 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2800 LIBS="$with_mysql_libs"
2801 AC_SEARCH_LIBS([mysql_get_server_version],
2803 [with_libmysql="yes"],
2804 [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2806 CPPFLAGS="$SAVE_CPPFLAGS"
2810 if test "x$with_libmysql" = "xyes"
2812 BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2813 BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2814 AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2815 AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
2817 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
2821 with_libmnl_cflags=""
2823 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
2825 echo "libmnl: withval = $withval"
2826 if test "x$withval" = "xyes"
2829 else if test "x$withval" = "xno"
2833 if test -d "$withval/include"
2835 with_libmnl_cflags="-I$withval/include"
2836 with_libmnl_libs="-L$withval/lib -lmnl"
2839 AC_MSG_ERROR("no such directory: $withval/include")
2844 if test "x$ac_system" = "xLinux"
2848 with_libmnl="no (Linux only library)"
2851 if test "x$PKG_CONFIG" = "x"
2853 with_libmnl="no (Don't have pkg-config)"
2855 if test "x$with_libmnl" = "xyes"
2857 if $PKG_CONFIG --exists libmnl 2>/dev/null; then
2858 with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
2859 with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
2862 AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
2868 #include <sys/types.h>
2869 #include <asm/types.h>
2870 #include <sys/socket.h>
2871 #include <linux/netlink.h>
2872 #include <linux/rtnetlink.h>])
2873 AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2875 #include <sys/types.h>
2876 #include <asm/types.h>
2877 #include <sys/socket.h>])
2879 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2882 #include <sys/types.h>
2883 #include <asm/types.h>
2884 #include <sys/socket.h>
2885 #include <linux/netlink.h>
2886 #include <linux/rtnetlink.h>
2889 int retval = TCA_STATS2;
2893 [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2895 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2898 #include <sys/types.h>
2899 #include <asm/types.h>
2900 #include <sys/socket.h>
2901 #include <linux/netlink.h>
2902 #include <linux/rtnetlink.h>
2905 int retval = TCA_STATS;
2909 [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
2911 if test "x$with_libmnl" = "xyes"
2913 AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
2914 [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
2917 #include <linux/if_link.h>
2920 if test "x$with_libmnl" = "xyes"
2922 AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
2923 [with_libmnl="yes"],
2924 [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
2925 [$with_libmnl_libs])
2927 if test "x$with_libmnl" = "xyes"
2929 AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
2930 BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
2931 BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
2932 AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
2933 AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
2935 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
2938 # --with-libnetapp {{{
2939 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2940 AC_ARG_VAR([LIBNETAPP_LDFLAGS], [Linker flags required to build with libnetapp])
2941 AC_ARG_VAR([LIBNETAPP_LIBS], [Other libraries required to link against libnetapp])
2942 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2943 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2944 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2945 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2947 if test -d "$withval"
2949 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2950 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2951 with_libnetapp="yes"
2953 with_libnetapp="$withval"
2957 with_libnetapp="yes"
2960 SAVE_CPPFLAGS="$CPPFLAGS"
2961 SAVE_LDFLAGS="$LDFLAGS"
2962 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2963 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2965 if test "x$with_libnetapp" = "xyes"
2967 if test "x$LIBNETAPP_CPPFLAGS" != "x"
2969 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2971 AC_CHECK_HEADERS(netapp_api.h,
2972 [with_libnetapp="yes"],
2973 [with_libnetapp="no (netapp_api.h not found)"])
2976 if test "x$with_libnetapp" = "xyes"
2978 if test "x$LIBNETAPP_LDFLAGS" != "x"
2980 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2983 if test "x$LIBNETAPP_LIBS" = "x"
2985 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
2987 AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2989 AC_CHECK_LIB(netapp, na_server_invoke_elem,
2990 [with_libnetapp="yes"],
2991 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2993 LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
2996 CPPFLAGS="$SAVE_CPPFLAGS"
2997 LDFLAGS="$SAVE_LDFLAGS"
2999 if test "x$with_libnetapp" = "xyes"
3001 AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
3004 AC_SUBST(LIBNETAPP_CPPFLAGS)
3005 AC_SUBST(LIBNETAPP_LDFLAGS)
3006 AC_SUBST(LIBNETAPP_LIBS)
3007 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
3010 # --with-libnetsnmp {{{
3011 with_snmp_config="net-snmp-config"
3014 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3016 if test "x$withval" = "xno"
3018 with_libnetsnmp="no"
3019 else if test "x$withval" = "xyes"
3021 with_libnetsnmp="yes"
3023 if test -x "$withval"
3025 with_snmp_config="$withval"
3026 with_libnetsnmp="yes"
3028 with_snmp_config="$withval/bin/net-snmp-config"
3029 with_libnetsnmp="yes"
3033 [with_libnetsnmp="yes"])
3034 if test "x$with_libnetsnmp" = "xyes"
3036 with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
3037 snmp_config_status=$?
3039 if test $snmp_config_status -ne 0
3041 with_libnetsnmp="no ($with_snmp_config failed)"
3043 SAVE_CPPFLAGS="$CPPFLAGS"
3044 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
3046 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3048 CPPFLAGS="$SAVE_CPPFLAGS"
3051 if test "x$with_libnetsnmp" = "xyes"
3053 with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
3054 snmp_config_status=$?
3056 if test $snmp_config_status -ne 0
3058 with_libnetsnmp="no ($with_snmp_config failed)"
3060 AC_CHECK_LIB(netsnmp, init_snmp,
3061 [with_libnetsnmp="yes"],
3062 [with_libnetsnmp="no (libnetsnmp not found)"],
3066 if test "x$with_libnetsnmp" = "xyes"
3068 BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
3069 BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
3070 AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
3071 AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
3073 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
3076 # --with-liboconfig {{{
3077 with_own_liboconfig="no"
3078 liboconfig_LDFLAGS="$LDFLAGS"
3079 liboconfig_CPPFLAGS="$CPPFLAGS"
3080 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3082 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3084 if test -d "$withval/lib"
3086 liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3088 if test -d "$withval/include"
3090 liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3093 if test "x$withval" = "xno"
3095 AC_MSG_ERROR("liboconfig is required")
3099 with_liboconfig="yes"
3102 save_LDFLAGS="$LDFLAGS"
3103 save_CPPFLAGS="$CPPFLAGS"
3104 LDFLAGS="$liboconfig_LDFLAGS"
3105 CPPFLAGS="$liboconfig_CPPFLAGS"
3106 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
3108 with_liboconfig="yes"
3109 with_own_liboconfig="no"
3112 with_liboconfig="yes"
3113 with_own_liboconfig="yes"
3114 LDFLAGS="$save_LDFLAGS"
3115 CPPFLAGS="$save_CPPFLAGS"
3118 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3119 if test "x$with_own_liboconfig" = "xyes"
3121 with_liboconfig="yes (shipped version)"
3125 # --with-liboping {{{
3126 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3128 if test "x$withval" = "xyes"
3131 else if test "x$withval" = "xno"
3136 LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3137 LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3140 [with_liboping="yes"])
3142 SAVE_CPPFLAGS="$CPPFLAGS"
3143 SAVE_LDFLAGS="$LDFLAGS"
3145 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3146 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3148 if test "x$with_liboping" = "xyes"
3150 if test "x$LIBOPING_CPPFLAGS" != "x"
3152 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3154 AC_CHECK_HEADERS(oping.h,
3155 [with_liboping="yes"],
3156 [with_liboping="no (oping.h not found)"])
3158 if test "x$with_liboping" = "xyes"
3160 if test "x$LIBOPING_LDFLAGS" != "x"
3162 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3164 AC_CHECK_LIB(oping, ping_construct,
3165 [with_liboping="yes"],
3166 [with_liboping="no (symbol 'ping_construct' not found)"])
3169 CPPFLAGS="$SAVE_CPPFLAGS"
3170 LDFLAGS="$SAVE_LDFLAGS"
3172 if test "x$with_liboping" = "xyes"
3174 BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3175 BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3176 AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3177 AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3179 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3183 with_oracle_cppflags=""
3185 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3187 if test "x$withval" = "xyes"
3189 if test "x$ORACLE_HOME" = "x"
3191 AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3194 else if test "x$withval" = "xno"
3199 ORACLE_HOME="$withval"
3203 if test "x$ORACLE_HOME" = "x"
3205 with_oracle="no (ORACLE_HOME is not set)"
3210 if test "x$ORACLE_HOME" != "x"
3212 with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3214 if test -e "$ORACLE_HOME/lib/ldflags"
3216 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3218 #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3219 with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3221 if test "x$with_oracle" = "xyes"
3223 SAVE_CPPFLAGS="$CPPFLAGS"
3224 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3226 AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3228 CPPFLAGS="$SAVE_CPPFLAGS"
3230 if test "x$with_oracle" = "xyes"
3232 SAVE_CPPFLAGS="$CPPFLAGS"
3234 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3235 LIBS="$LIBS $with_oracle_libs"
3237 AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3239 CPPFLAGS="$SAVE_CPPFLAGS"
3242 if test "x$with_oracle" = "xyes"
3244 BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
3245 BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3246 AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
3247 AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3251 # --with-libowcapi {{{
3252 with_libowcapi_cppflags=""
3253 with_libowcapi_libs="-lowcapi"
3254 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3256 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3258 with_libowcapi_cppflags="-I$withval/include"
3259 with_libowcapi_libs="-L$withval/lib -lowcapi"
3260 with_libowcapi="yes"
3262 with_libowcapi="$withval"
3266 with_libowcapi="yes"
3268 if test "x$with_libowcapi" = "xyes"
3270 SAVE_CPPFLAGS="$CPPFLAGS"
3271 CPPFLAGS="$with_libowcapi_cppflags"
3273 AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3275 CPPFLAGS="$SAVE_CPPFLAGS"
3277 if test "x$with_libowcapi" = "xyes"
3279 SAVE_LDFLAGS="$LDFLAGS"
3280 SAVE_CPPFLAGS="$CPPFLAGS"
3281 LDFLAGS="$with_libowcapi_libs"
3282 CPPFLAGS="$with_libowcapi_cppflags"
3284 AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3286 LDFLAGS="$SAVE_LDFLAGS"
3287 CPPFLAGS="$SAVE_CPPFLAGS"
3289 if test "x$with_libowcapi" = "xyes"
3291 BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3292 BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
3293 AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3294 AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3298 # --with-libpcap {{{
3299 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3301 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3303 LDFLAGS="$LDFLAGS -L$withval/lib"
3304 CPPFLAGS="$CPPFLAGS -I$withval/include"
3307 with_libpcap="$withval"
3313 if test "x$with_libpcap" = "xyes"
3315 AC_CHECK_LIB(pcap, pcap_open_live,
3317 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3318 ], [with_libpcap="no (libpcap not found)"])
3320 if test "x$with_libpcap" = "xyes"
3322 AC_CHECK_HEADERS(pcap.h,,
3323 [with_libpcap="no (pcap.h not found)"])
3325 if test "x$with_libpcap" = "xyes"
3327 AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3328 [c_cv_libpcap_have_pcap_error_iface_not_up],
3329 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3334 int val = PCAP_ERROR_IFACE_NOT_UP;
3338 [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3339 [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3341 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3343 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3345 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3348 # --with-libperl {{{
3349 perl_interpreter="perl"
3350 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3352 if test -f "$withval" && test -x "$withval"
3354 perl_interpreter="$withval"
3356 else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3358 LDFLAGS="$LDFLAGS -L$withval/lib"
3359 CPPFLAGS="$CPPFLAGS -I$withval/include"
3360 perl_interpreter="$withval/bin/perl"
3363 with_libperl="$withval"
3370 AC_MSG_CHECKING([for perl])
3371 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3372 if test -x "$perl_interpreter"
3374 AC_MSG_RESULT([yes ($perl_interpreter)])
3380 AC_SUBST(PERL, "$perl_interpreter")
3382 if test "x$with_libperl" = "xyes" \
3383 && test -n "$perl_interpreter"
3385 SAVE_CFLAGS="$CFLAGS"
3387 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3388 PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3389 PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3390 CFLAGS="$CFLAGS $PERL_CFLAGS"
3391 LIBS="$LIBS $PERL_LIBS"
3393 AC_CACHE_CHECK([for libperl],
3394 [c_cv_have_libperl],
3395 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3397 #define PERL_NO_GET_CONTEXT
3404 load_module (PERL_LOADMOD_NOIMPORT,
3405 newSVpv ("Collectd::Plugin::FooBar", 24),
3409 [c_cv_have_libperl="yes"],
3410 [c_cv_have_libperl="no"]
3414 if test "x$c_cv_have_libperl" = "xyes"
3416 AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3417 AC_SUBST(PERL_CFLAGS)
3423 CFLAGS="$SAVE_CFLAGS"
3425 else if test -z "$perl_interpreter"; then
3426 with_libperl="no (no perl interpreter found)"
3427 c_cv_have_libperl="no"
3429 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3431 if test "x$with_libperl" = "xyes"
3433 SAVE_CFLAGS="$CFLAGS"
3435 CFLAGS="$CFLAGS $PERL_CFLAGS"
3436 LIBS="$LIBS $PERL_LIBS"
3438 AC_CACHE_CHECK([if perl supports ithreads],
3439 [c_cv_have_perl_ithreads],
3440 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3446 #if !defined(USE_ITHREADS)
3447 # error "Perl does not support ithreads!"
3448 #endif /* !defined(USE_ITHREADS) */
3452 [c_cv_have_perl_ithreads="yes"],
3453 [c_cv_have_perl_ithreads="no"]
3457 if test "x$c_cv_have_perl_ithreads" = "xyes"
3459 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3462 CFLAGS="$SAVE_CFLAGS"
3466 if test "x$with_libperl" = "xyes"
3468 SAVE_CFLAGS="$CFLAGS"
3470 # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3471 # (see issues #41 and #42)
3472 CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3473 LIBS="$LIBS $PERL_LIBS"
3475 AC_CACHE_CHECK([for broken Perl_load_module()],
3476 [c_cv_have_broken_perl_load_module],
3477 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3479 #define PERL_NO_GET_CONTEXT
3486 load_module (PERL_LOADMOD_NOIMPORT,
3487 newSVpv ("Collectd::Plugin::FooBar", 24),
3491 [c_cv_have_broken_perl_load_module="no"],
3492 [c_cv_have_broken_perl_load_module="yes"]
3496 CFLAGS="$SAVE_CFLAGS"
3499 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3500 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3502 if test "x$with_libperl" = "xyes"
3504 SAVE_CFLAGS="$CFLAGS"
3506 CFLAGS="$CFLAGS $PERL_CFLAGS"
3507 LIBS="$LIBS $PERL_LIBS"
3510 [struct mgvtbl.svt_local],
3511 [have_struct_mgvtbl_svt_local="yes"],
3512 [have_struct_mgvtbl_svt_local="no"],
3519 if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3521 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3522 [Define if Perl's struct mgvtbl has member svt_local.])
3525 CFLAGS="$SAVE_CFLAGS"
3531 with_pg_config="pg_config"
3532 with_libpq_includedir=""
3533 with_libpq_libdir=""
3534 with_libpq_cppflags=""
3535 with_libpq_ldflags=""
3536 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3539 if test "x$withval" = "xno"
3542 else if test "x$withval" = "xyes"
3546 if test -f "$withval" && test -x "$withval";
3548 with_pg_config="$withval"
3549 else if test -x "$withval/bin/pg_config"
3551 with_pg_config="$withval/bin/pg_config"
3559 if test "x$with_libpq" = "xyes"
3561 with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3564 if test $pg_config_status -eq 0
3566 if test -n "$with_libpq_includedir"; then
3567 for dir in $with_libpq_includedir; do
3568 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3572 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3575 SAVE_CPPFLAGS="$CPPFLAGS"
3576 CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3578 AC_CHECK_HEADERS(libpq-fe.h, [],
3579 [with_libpq="no (libpq-fe.h not found)"], [])
3581 CPPFLAGS="$SAVE_CPPFLAGS"
3583 if test "x$with_libpq" = "xyes"
3585 with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3588 if test $pg_config_status -eq 0
3590 if test -n "$with_libpq_libdir"; then
3591 for dir in $with_libpq_libdir; do
3592 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3596 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3599 SAVE_LDFLAGS="$LDFLAGS"
3600 LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3602 AC_CHECK_LIB(pq, PQconnectdb,
3604 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3606 AC_CHECK_LIB(pq, PQserverVersion,
3608 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3610 LDFLAGS="$SAVE_LDFLAGS"
3612 if test "x$with_libpq" = "xyes"
3614 BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3615 BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3616 AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3617 AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3619 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3622 # --with-libpthread {{{
3623 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3624 [ if test "x$withval" != "xno" \
3625 && test "x$withval" != "xyes"
3627 LDFLAGS="$LDFLAGS -L$withval/lib"
3628 CPPFLAGS="$CPPFLAGS -I$withval/include"
3629 with_libpthread="yes"
3631 if test "x$withval" = "xno"
3633 with_libpthread="no (disabled)"
3636 ], [with_libpthread="yes"])
3637 if test "x$with_libpthread" = "xyes"
3639 AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3642 if test "x$with_libpthread" = "xyes"
3644 AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
3646 if test "x$with_libpthread" = "xyes"
3652 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3653 [Wether or not to use pthread (POSIX threads) library])
3654 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
3659 with_python_path="$PATH"
3660 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3662 if test "x$withval" = "xyes" || test "x$withval" = "xno"
3664 with_python="$withval"
3665 else if test -x "$withval"
3667 with_python_prog="$withval"
3668 with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3670 else if test -d "$withval"
3672 with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3675 AC_MSG_WARN([Argument not recognized: $withval])
3677 ], [with_python="yes"])
3680 SAVE_CPPFLAGS="$CPPFLAGS"
3681 SAVE_LDFLAGS="$LDFLAGS"
3684 PATH="$with_python_path"
3686 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3688 AC_MSG_CHECKING([for python])
3689 with_python_prog="`which python 2>/dev/null`"
3690 if test "x$with_python_prog" = "x"
3692 AC_MSG_RESULT([not found])
3693 with_python="no (interpreter not found)"
3695 AC_MSG_RESULT([$with_python_prog])
3699 if test "x$with_python" = "xyes"
3701 AC_MSG_CHECKING([for Python CPPFLAGS])
3702 python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3703 python_config_status=$?
3705 if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3707 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3710 AC_MSG_RESULT([$python_include_path])
3714 if test "x$with_python" = "xyes"
3716 CPPFLAGS="-I$python_include_path $CPPFLAGS"
3717 AC_CHECK_HEADERS(Python.h,
3718 [with_python="yes"],
3719 [with_python="no ('Python.h' not found)"])
3722 if test "x$with_python" = "xyes"
3724 AC_MSG_CHECKING([for Python LDFLAGS])
3725 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`
3726 python_config_status=$?
3728 if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3730 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3733 AC_MSG_RESULT([$python_library_path])
3737 if test "x$with_python" = "xyes"
3739 AC_MSG_CHECKING([for Python LIBS])
3740 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`
3741 python_config_status=$?
3743 if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3745 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3748 AC_MSG_RESULT([$python_library_flags])
3752 if test "x$with_python" = "xyes"
3754 LDFLAGS="-L$python_library_path $LDFLAGS"
3755 LIBS="$python_library_flags $LIBS"
3757 AC_CHECK_FUNC(PyObject_CallFunction,
3758 [with_python="yes"],
3759 [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3763 CPPFLAGS="$SAVE_CPPFLAGS"
3764 LDFLAGS="$SAVE_LDFLAGS"
3767 if test "x$with_python" = "xyes"
3769 BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3770 BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3771 BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3772 AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3773 AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3774 AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3778 # --with-librabbitmq {{{
3779 with_librabbitmq_cppflags=""
3780 with_librabbitmq_ldflags=""
3781 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3783 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3785 with_librabbitmq_cppflags="-I$withval/include"
3786 with_librabbitmq_ldflags="-L$withval/lib"
3787 with_librabbitmq="yes"
3789 with_librabbitmq="$withval"
3793 with_librabbitmq="yes"
3795 SAVE_CPPFLAGS="$CPPFLAGS"
3796 SAVE_LDFLAGS="$LDFLAGS"
3797 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3798 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3799 if test "x$with_librabbitmq" = "xyes"
3801 AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3803 if test "x$with_librabbitmq" = "xyes"
3805 # librabbitmq up to version 0.9.1 provides "library_errno", later
3806 # versions use "library_error". The library does not provide a version
3807 # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3808 AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3811 # include <stdlib.h>
3817 # include <stdint.h>
3820 # include <inttypes.h>
3825 if test "x$with_librabbitmq" = "xyes"
3827 AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3829 if test "x$with_librabbitmq" = "xyes"
3831 BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3832 BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3833 BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3834 AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3835 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3836 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3837 AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3839 CPPFLAGS="$SAVE_CPPFLAGS"
3840 LDFLAGS="$SAVE_LDFLAGS"
3841 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3843 with_amqp_tcp_socket="no"
3844 if test "x$with_librabbitmq" = "xyes"
3846 SAVE_CPPFLAGS="$CPPFLAGS"
3847 SAVE_LDFLAGS="$LDFLAGS"
3849 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3850 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3853 AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
3854 AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
3855 if test "x$with_amqp_tcp_socket" = "xyes"
3857 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
3858 [Define if librabbitmq provides the new TCP socket interface.])
3861 AC_CHECK_DECLS(amqp_socket_close,
3862 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
3865 #ifdef HAVE_AMQP_TCP_SOCKET_H
3866 # include <amqp_tcp_socket.h>
3868 #ifdef HAVE_AMQP_SOCKET_H
3869 # include <amqp_socket.h>
3873 CPPFLAGS="$SAVE_CPPFLAGS"
3874 LDFLAGS="$SAVE_LDFLAGS"
3879 # --with-librdkafka {{{
3880 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
3882 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3884 with_librdkafka_cppflags="-I$withval/include"
3885 with_librdkafka_ldflags="-L$withval/lib"
3886 with_librdkafka_rpath="$withval/lib"
3887 with_librdkafka="yes"
3889 with_librdkafka="$withval"
3893 with_librdkafka="yes"
3895 SAVE_CPPFLAGS="$CPPFLAGS"
3896 SAVE_LDFLAGS="$LDFLAGS"
3898 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
3899 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
3901 if test "x$with_librdkafka" = "xyes"
3903 AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
3906 if test "x$with_librdkafka" = "xyes"
3908 AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
3909 AC_CHECK_LIB(rdkafka, rd_kafka_conf_set_log_cb, [with_librdkafka_log_cb="yes"], [with_librdkafka_log_cb="no"])
3910 AC_CHECK_LIB(rdkafka, rd_kafka_set_logger, [with_librdkafka_logger="yes"], [with_librdkafka_logger="no"])
3912 if test "x$with_librdkafka" = "xyes"
3914 BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
3915 BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
3916 if test "x$with_librdkafka_rpath" != "x"
3918 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
3920 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
3922 AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
3923 AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
3924 AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
3925 AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
3926 if test "x$with_librdkafka_log_cb" = "xyes"
3928 AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
3930 if test "x$with_librdkafka_logger" = "xyes"
3932 AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
3935 CPPFLAGS="$SAVE_CPPFLAGS"
3936 LDFLAGS="$SAVE_LDFLAGS"
3937 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
3941 # --with-librouteros {{{
3942 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3944 if test "x$withval" = "xyes"
3946 with_librouteros="yes"
3947 else if test "x$withval" = "xno"
3949 with_librouteros="no"
3951 with_librouteros="yes"
3952 LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3953 LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3956 [with_librouteros="yes"])
3958 SAVE_CPPFLAGS="$CPPFLAGS"
3959 SAVE_LDFLAGS="$LDFLAGS"
3961 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3962 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3964 if test "x$with_librouteros" = "xyes"
3966 if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3968 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3970 AC_CHECK_HEADERS(routeros_api.h,
3971 [with_librouteros="yes"],
3972 [with_librouteros="no (routeros_api.h not found)"])
3974 if test "x$with_librouteros" = "xyes"
3976 if test "x$LIBROUTEROS_LDFLAGS" != "x"
3978 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3980 AC_CHECK_LIB(routeros, ros_interface,
3981 [with_librouteros="yes"],
3982 [with_librouteros="no (symbol 'ros_interface' not found)"])
3985 CPPFLAGS="$SAVE_CPPFLAGS"
3986 LDFLAGS="$SAVE_LDFLAGS"
3988 if test "x$with_librouteros" = "xyes"
3990 BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3991 BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3992 AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3993 AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3995 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3999 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
4002 librrd_threadsafe="yes"
4003 librrd_rrdc_update="no"
4004 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4005 [ if test "x$withval" != "xno" && test "x$withval" != "xyes"
4007 librrd_cflags="-I$withval/include"
4008 librrd_ldflags="-L$withval/lib"
4011 with_librrd="$withval"
4013 ], [with_librrd="yes"])
4014 if test "x$with_librrd" = "xyes"
4016 SAVE_CPPFLAGS="$CPPFLAGS"
4017 SAVE_LDFLAGS="$LDFLAGS"
4019 CPPFLAGS="$CPPFLAGS $librrd_cflags"
4020 LDFLAGS="$LDFLAGS $librrd_ldflags"
4022 AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
4024 CPPFLAGS="$SAVE_CPPFLAGS"
4025 LDFLAGS="$SAVE_LDFLAGS"
4027 if test "x$with_librrd" = "xyes"
4029 SAVE_CPPFLAGS="$CPPFLAGS"
4030 SAVE_LDFLAGS="$LDFLAGS"
4032 CPPFLAGS="$CPPFLAGS $librrd_cflags"
4033 LDFLAGS="$LDFLAGS $librrd_ldflags"
4035 AC_CHECK_LIB(rrd_th, rrd_update_r,
4037 librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
4039 [librrd_threadsafe="no"
4040 AC_CHECK_LIB(rrd, rrd_update,
4042 librrd_ldflags="$librrd_ldflags -lrrd -lm"
4044 [with_librrd="no (symbol 'rrd_update' not found)"],
4049 if test "x$librrd_threadsafe" = "xyes"
4051 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
4053 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
4056 CPPFLAGS="$SAVE_CPPFLAGS"
4057 LDFLAGS="$SAVE_LDFLAGS"
4059 if test "x$with_librrd" = "xyes"
4061 BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
4062 BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4063 AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
4064 AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
4066 if test "x$librrd_threadsafe" = "xyes"
4068 AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
4072 # --with-libsensors {{{
4073 with_sensors_cflags=""
4074 with_sensors_ldflags=""
4075 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4077 if test "x$withval" = "xno"
4079 with_libsensors="no"
4081 with_libsensors="yes"
4082 if test "x$withval" != "xyes"
4084 with_sensors_cflags="-I$withval/include"
4085 with_sensors_ldflags="-L$withval/lib"
4086 with_libsensors="yes"
4091 if test "x$ac_system" = "xLinux"
4093 with_libsensors="yes"
4095 with_libsensors="no (Linux only library)"
4098 if test "x$with_libsensors" = "xyes"
4100 SAVE_CPPFLAGS="$CPPFLAGS"
4101 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4103 # AC_CHECK_HEADERS(sensors/sensors.h,
4105 # AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
4107 # [with_libsensors="no (sensors/sensors.h not found)"])
4108 AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
4110 CPPFLAGS="$SAVE_CPPFLAGS"
4112 if test "x$with_libsensors" = "xyes"
4114 SAVE_CPPFLAGS="$CPPFLAGS"
4115 SAVE_LDFLAGS="$LDFLAGS"
4116 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4117 LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4119 AC_CHECK_LIB(sensors, sensors_init,
4121 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
4123 [with_libsensors="no (libsensors not found)"])
4125 CPPFLAGS="$SAVE_CPPFLAGS"
4126 LDFLAGS="$SAVE_LDFLAGS"
4128 if test "x$with_libsensors" = "xyes"
4130 BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
4131 BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4132 AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
4133 AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
4135 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
4138 # --with-libsigrok {{{
4139 with_libsigrok_cflags=""
4140 with_libsigrok_ldflags=""
4141 AC_ARG_WITH(libsigrok, [AS_HELP_STRING([--with-libsigrok@<:@=PREFIX@:>@], [Path to libsigrok.])],
4143 if test "x$withval" = "xno"
4147 with_libsigrok="yes"
4148 if test "x$withval" != "xyes"
4150 with_libsigrok_cflags="-I$withval/include"
4151 with_libsigrok_ldflags="-L$withval/lib"
4154 ],[with_libsigrok="yes"])
4156 # libsigrok has a glib dependency
4157 if test "x$with_libsigrok" = "xyes"
4159 m4_ifdef([AM_PATH_GLIB_2_0],
4161 AM_PATH_GLIB_2_0([2.28.0],
4162 [with_libsigrok_cflags="$with_libsigrok_cflags $GLIB_CFLAGS"; with_libsigrok_ldflags="$with_libsigrok_ldflags $GLIB_LIBS"])
4165 with_libsigrok="no (glib not available)"
4171 if test "x$with_libsigrok" = "xyes"
4173 SAVE_CPPFLAGS="$CPPFLAGS"
4174 CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
4176 AC_CHECK_HEADERS(libsigrok/libsigrok.h, [], [with_libsigrok="no (libsigrok/libsigrok.h not found)"])
4178 CPPFLAGS="$SAVE_CPPFLAGS"
4182 if test "x$with_libsigrok" = "xyes"
4184 SAVE_CPPFLAGS="$CPPFLAGS"
4185 SAVE_LDFLAGS="$LDFLAGS"
4186 CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
4187 LDFLAGS="$LDFLAGS $with_libsigrok_ldflags"
4189 AC_CHECK_LIB(sigrok, sr_init,
4191 AC_DEFINE(HAVE_LIBSIGROK, 1, [Define to 1 if you have the sigrok library (-lsigrok).])
4193 [with_libsigrok="no (libsigrok not found)"])
4195 CPPFLAGS="$SAVE_CPPFLAGS"
4196 LDFLAGS="$SAVE_LDFLAGS"
4198 if test "x$with_libsigrok" = "xyes"
4200 BUILD_WITH_LIBSIGROK_CFLAGS="$with_libsigrok_cflags"
4201 BUILD_WITH_LIBSIGROK_LDFLAGS="$with_libsigrok_ldflags"
4202 AC_SUBST(BUILD_WITH_LIBSIGROK_CFLAGS)
4203 AC_SUBST(BUILD_WITH_LIBSIGROK_LDFLAGS)
4205 AM_CONDITIONAL(BUILD_WITH_LIBSIGROK, test "x$with_libsigrok" = "xyes")
4208 # --with-libstatgrab {{{
4209 with_libstatgrab_cflags=""
4210 with_libstatgrab_ldflags=""
4211 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4213 if test "x$withval" != "xno" \
4214 && test "x$withval" != "xyes"
4216 with_libstatgrab_cflags="-I$withval/include"
4217 with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4218 with_libstatgrab="yes"
4219 with_libstatgrab_pkg_config="no"
4221 with_libstatgrab="$withval"
4222 with_libstatgrab_pkg_config="yes"
4226 with_libstatgrab="yes"
4227 with_libstatgrab_pkg_config="yes"
4230 if test "x$with_libstatgrab" = "xyes" \
4231 && test "x$with_libstatgrab_pkg_config" = "xyes"
4233 if test "x$PKG_CONFIG" != "x"
4235 AC_MSG_CHECKING([pkg-config for libstatgrab])
4237 $PKG_CONFIG --exists libstatgrab 2>/dev/null
4240 with_libstatgrab_pkg_config="no"
4241 with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4242 temp_result="not found"
4244 AC_MSG_RESULT([$temp_result])
4246 AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
4247 with_libstatgrab_pkg_config="no"
4248 with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
4252 if test "x$with_libstatgrab" = "xyes" \
4253 && test "x$with_libstatgrab_pkg_config" = "xyes" \
4254 && test "x$with_libstatgrab_cflags" = "x"
4256 AC_MSG_CHECKING([for libstatgrab CFLAGS])
4257 temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4260 with_libstatgrab_cflags="$temp_result"
4262 with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4263 temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4265 AC_MSG_RESULT([$temp_result])
4268 if test "x$with_libstatgrab" = "xyes" \
4269 && test "x$with_libstatgrab_pkg_config" = "xyes" \
4270 && test "x$with_libstatgrab_ldflags" = "x"
4272 AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4273 temp_result="`$PKG_CONFIG --libs libstatgrab`"
4276 with_libstatgrab_ldflags="$temp_result"
4278 with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4279 temp_result="$PKG_CONFIG --libs libstatgrab failed"
4281 AC_MSG_RESULT([$temp_result])
4284 if test "x$with_libstatgrab" = "xyes"
4286 SAVE_CPPFLAGS="$CPPFLAGS"
4287 CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4289 AC_CHECK_HEADERS(statgrab.h,
4290 [with_libstatgrab="yes"],
4291 [with_libstatgrab="no (statgrab.h not found)"])
4293 CPPFLAGS="$SAVE_CPPFLAGS"
4296 if test "x$with_libstatgrab" = "xyes"
4298 SAVE_CFLAGS="$CFLAGS"
4299 SAVE_LDFLAGS="$LDFLAGS"
4301 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4302 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4304 AC_CHECK_LIB(statgrab, sg_init,
4305 [with_libstatgrab="yes"],
4306 [with_libstatgrab="no (symbol sg_init not found)"])
4308 CFLAGS="$SAVE_CFLAGS"
4309 LDFLAGS="$SAVE_LDFLAGS"
4312 if test "x$with_libstatgrab" = "xyes"
4314 SAVE_CFLAGS="$CFLAGS"
4317 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4318 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4319 LIBS="-lstatgrab $LIBS"
4321 AC_CACHE_CHECK([if libstatgrab >= 0.90],
4322 [c_cv_have_libstatgrab_0_90],
4323 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4326 #include <statgrab.h>
4329 if (sg_init()) return 0;
4332 [c_cv_have_libstatgrab_0_90="no"],
4333 [c_cv_have_libstatgrab_0_90="yes"]
4337 CFLAGS="$SAVE_CFLAGS"
4338 LDFLAGS="$SAVE_LDFLAGS"
4342 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
4343 if test "x$with_libstatgrab" = "xyes"
4345 AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
4346 BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4347 BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
4348 AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
4349 AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
4350 if test "x$c_cv_have_libstatgrab_0_90" = "xyes"
4352 AC_DEFINE(HAVE_LIBSTATGRAB_0_90, 1, [Define to 1 if libstatgrab version >= 0.90])
4357 # --with-libtokyotyrant {{{
4358 with_libtokyotyrant_cppflags=""
4359 with_libtokyotyrant_ldflags=""
4360 with_libtokyotyrant_libs=""
4361 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4363 if test "x$withval" = "xno"
4365 with_libtokyotyrant="no"
4366 else if test "x$withval" = "xyes"
4368 with_libtokyotyrant="yes"
4370 with_libtokyotyrant_cppflags="-I$withval/include"
4371 with_libtokyotyrant_ldflags="-L$withval/include"
4372 with_libtokyotyrant_libs="-ltokyotyrant"
4373 with_libtokyotyrant="yes"
4377 with_libtokyotyrant="yes"
4380 if test "x$with_libtokyotyrant" = "xyes"
4382 if $PKG_CONFIG --exists tokyotyrant
4384 with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
4385 with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
4386 with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
4390 SAVE_CPPFLAGS="$CPPFLAGS"
4391 SAVE_LDFLAGS="$LDFLAGS"
4392 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
4393 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
4395 if test "x$with_libtokyotyrant" = "xyes"
4397 AC_CHECK_HEADERS(tcrdb.h,
4399 AC_DEFINE(HAVE_TCRDB_H, 1,
4400 [Define to 1 if you have the <tcrdb.h> header file.])
4401 ], [with_libtokyotyrant="no (tcrdb.h not found)"])
4404 if test "x$with_libtokyotyrant" = "xyes"
4406 AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4408 AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4409 [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4411 [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4412 [$with_libtokyotyrant_libs])
4415 CPPFLAGS="$SAVE_CPPFLAGS"
4416 LDFLAGS="$SAVE_LDFLAGS"
4418 if test "x$with_libtokyotyrant" = "xyes"
4420 BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4421 BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4422 BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4423 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4424 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4425 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4427 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4430 # --with-libudev {{{
4431 with_libudev_cflags=""
4432 with_libudev_ldflags=""
4433 AC_ARG_WITH(libudev, [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
4435 if test "x$withval" = "xno"
4440 if test "x$withval" != "xyes"
4442 with_libudev_cflags="-I$withval/include"
4443 with_libudev_ldflags="-L$withval/lib"
4449 if test "x$ac_system" = "xLinux"
4453 with_libudev="no (Linux only library)"
4456 if test "x$with_libudev" = "xyes"
4458 SAVE_CPPFLAGS="$CPPFLAGS"
4459 CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4461 AC_CHECK_HEADERS(libudev.h, [], [with_libudev="no (libudev.h not found)"])
4463 CPPFLAGS="$SAVE_CPPFLAGS"
4465 if test "x$with_libudev" = "xyes"
4467 SAVE_CPPFLAGS="$CPPFLAGS"
4468 SAVE_LDFLAGS="$LDFLAGS"
4469 CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4470 LDFLAGS="$LDFLAGS $with_libudev_ldflags"
4472 AC_CHECK_LIB(udev, udev_new,
4474 AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if you have the udev library (-ludev).])
4476 [with_libudev="no (libudev not found)"])
4478 CPPFLAGS="$SAVE_CPPFLAGS"
4479 LDFLAGS="$SAVE_LDFLAGS"
4481 if test "x$with_libudev" = "xyes"
4483 BUILD_WITH_LIBUDEV_CFLAGS="$with_libudev_cflags"
4484 BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
4485 AC_SUBST(BUILD_WITH_LIBUDEV_CFLAGS)
4486 AC_SUBST(BUILD_WITH_LIBUDEV_LDFLAGS)
4488 AM_CONDITIONAL(BUILD_WITH_LIBUDEV, test "x$with_libudev" = "xyes")
4491 # --with-libupsclient {{{
4492 with_libupsclient_config=""
4493 with_libupsclient_cflags=""
4494 with_libupsclient_libs=""
4495 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4497 if test "x$withval" = "xno"
4499 with_libupsclient="no"
4500 else if test "x$withval" = "xyes"
4502 with_libupsclient="use_pkgconfig"
4504 if test -x "$withval"
4506 with_libupsclient_config="$withval"
4507 with_libupsclient="use_libupsclient_config"
4508 else if test -x "$withval/bin/libupsclient-config"
4510 with_libupsclient_config="$withval/bin/libupsclient-config"
4511 with_libupsclient="use_libupsclient_config"
4513 AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4514 with_libupsclient_cflags="-I$withval/include"
4515 with_libupsclient_libs="-L$withval/lib -lupsclient"
4516 with_libupsclient="yes"
4520 [with_libupsclient="use_pkgconfig"])
4522 # configure using libupsclient-config
4523 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4525 AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4526 with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4529 with_libupsclient="no ($with_libupsclient_config failed)"
4531 with_libupsclient_libs="`$with_libupsclient_config --libs`"
4534 with_libupsclient="no ($with_libupsclient_config failed)"
4537 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4539 with_libupsclient="yes"
4542 # configure using pkg-config
4543 if test "x$with_libupsclient" = "xuse_pkgconfig"
4545 if test "x$PKG_CONFIG" = "x"
4547 with_libupsclient="no (Don't have pkg-config)"
4550 if test "x$with_libupsclient" = "xuse_pkgconfig"
4552 AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4553 $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4556 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4559 if test "x$with_libupsclient" = "xuse_pkgconfig"
4561 with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4564 with_libupsclient="no ($PKG_CONFIG failed)"
4566 with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4569 with_libupsclient="no ($PKG_CONFIG failed)"
4572 if test "x$with_libupsclient" = "xuse_pkgconfig"
4574 with_libupsclient="yes"
4577 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4578 # the actual checks.
4579 if test "x$with_libupsclient" = "xyes"
4581 SAVE_CPPFLAGS="$CPPFLAGS"
4582 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4584 AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4586 CPPFLAGS="$SAVE_CPPFLAGS"
4588 if test "x$with_libupsclient" = "xyes"
4590 SAVE_CPPFLAGS="$CPPFLAGS"
4591 SAVE_LDFLAGS="$LDFLAGS"
4593 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4594 LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4596 AC_CHECK_LIB(upsclient, upscli_connect,
4597 [with_libupsclient="yes"],
4598 [with_libupsclient="no (symbol upscli_connect not found)"])
4600 CPPFLAGS="$SAVE_CPPFLAGS"
4601 LDFLAGS="$SAVE_LDFLAGS"
4603 if test "x$with_libupsclient" = "xyes"
4605 SAVE_CPPFLAGS="$CPPFLAGS"
4606 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4608 AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4609 [#include <stdlib.h>
4611 #include <upsclient.h>])
4613 CPPFLAGS="$SAVE_CPPFLAGS"
4615 if test "x$with_libupsclient" = "xyes"
4617 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4618 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4619 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4620 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4624 # --with-libxmms {{{
4625 with_xmms_config="xmms-config"
4628 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4630 if test "x$withval" != "xno" \
4631 && test "x$withval" != "xyes"
4633 if test -f "$withval" && test -x "$withval";
4635 with_xmms_config="$withval"
4636 else if test -x "$withval/bin/xmms-config"
4638 with_xmms_config="$withval/bin/xmms-config"
4641 else if test "x$withval" = "xno"
4651 if test "x$with_libxmms" = "xyes"
4653 with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4654 xmms_config_status=$?
4656 if test $xmms_config_status -ne 0
4661 if test "x$with_libxmms" = "xyes"
4663 with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4664 xmms_config_status=$?
4666 if test $xmms_config_status -ne 0
4671 if test "x$with_libxmms" = "xyes"
4673 AC_CHECK_LIB(xmms, xmms_remote_get_info,
4675 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4676 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4677 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4678 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4685 with_libxmms_numeric=0
4686 if test "x$with_libxmms" = "xyes"
4688 with_libxmms_numeric=1
4690 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4691 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4694 # --with-libyajl {{{
4695 with_libyajl_cppflags=""
4696 with_libyajl_ldflags=""
4697 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4699 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4701 with_libyajl_cppflags="-I$withval/include"
4702 with_libyajl_ldflags="-L$withval/lib"
4705 with_libyajl="$withval"
4711 if test "x$with_libyajl" = "xyes"
4713 SAVE_CPPFLAGS="$CPPFLAGS"
4714 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4716 AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
4717 AC_CHECK_HEADERS(yajl/yajl_version.h)
4719 CPPFLAGS="$SAVE_CPPFLAGS"
4721 if test "x$with_libyajl" = "xyes"
4723 SAVE_CPPFLAGS="$CPPFLAGS"
4724 SAVE_LDFLAGS="$LDFLAGS"
4725 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4726 LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4728 AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4730 CPPFLAGS="$SAVE_CPPFLAGS"
4731 LDFLAGS="$SAVE_LDFLAGS"
4733 if test "x$with_libyajl" = "xyes"
4735 BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4736 BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4737 BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4738 AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4739 AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4740 AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4741 AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4743 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4747 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
4748 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
4750 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
4752 if test "x$withval" = "xno"
4755 else if test "x$withval" = "xyes"
4758 else if test -d "$with_mic/lib"
4760 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
4761 with_mic_cflags="-I$withval/include"
4762 with_mic_ldpath="-L$withval/lib/Linux"
4763 with_mic_libs="-lMicAccessSDK -lscif -lpthread"
4768 if test "x$with_mic" = "xyes"
4770 SAVE_CPPFLAGS="$CPPFLAGS"
4771 CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4772 AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
4773 CPPFLAGS="$SAVE_CPPFLAGS"
4775 if test "x$with_mic" = "xyes"
4777 SAVE_CPPFLAGS="$CPPFLAGS"
4778 SAVE_LDFLAGS="$LDFLAGS"
4780 CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4781 LDFLAGS="$LDFLAGS $with_mic_ldpath"
4783 AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
4784 [with_mic_ldpath="$with_mic_ldpath"
4785 with_mic_libs="-lMicAccessSDK -lscif -lpthread"],
4786 [with_mic="no (symbol MicInitAPI not found)"],[-lscif -lpthread])
4788 CPPFLAGS="$SAVE_CPPFLAGS"
4789 LDFLAGS="$SAVE_LDFLAGS"
4792 if test "x$with_mic" = "xyes"
4794 BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
4795 BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
4796 BUILD_WITH_MIC_LDADD="$with_mic_libs"
4797 AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
4798 AC_SUBST(BUILD_WITH_MIC_LIBPATH)
4799 AC_SUBST(BUILD_WITH_MIC_LDADD)
4803 # --with-libvarnish {{{
4804 with_libvarnish_cppflags=""
4805 with_libvarnish_cflags=""
4806 with_libvarnish_libs=""
4807 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
4809 if test "x$withval" = "xno"
4811 with_libvarnish="no"
4812 else if test "x$withval" = "xyes"
4814 with_libvarnish="use_pkgconfig"
4815 else if test -d "$with_libvarnish/lib"
4817 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
4818 with_libvarnish_cflags="-I$withval/include"
4819 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
4820 with_libvarnish="yes"
4823 [with_libvarnish="use_pkgconfig"])
4825 # configure using pkg-config
4826 if test "x$with_libvarnish" = "xuse_pkgconfig"
4828 if test "x$PKG_CONFIG" = "x"
4830 with_libvarnish="no (Don't have pkg-config)"
4833 if test "x$with_libvarnish" = "xuse_pkgconfig"
4835 AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
4836 $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
4839 with_libvarnish="no (pkg-config doesn't know varnishapi)"
4842 if test "x$with_libvarnish" = "xuse_pkgconfig"
4844 with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
4847 with_libvarnish="no ($PKG_CONFIG failed)"
4849 with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
4852 with_libvarnish="no ($PKG_CONFIG failed)"
4855 if test "x$with_libvarnish" = "xuse_pkgconfig"
4857 with_libvarnish="yes"
4860 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
4861 # the actual checks.
4862 if test "x$with_libvarnish" = "xyes"
4864 SAVE_CPPFLAGS="$CPPFLAGS"
4866 CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4868 AC_CHECK_HEADERS(vapi/vsc.h,
4869 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
4870 [AC_CHECK_HEADERS(vsc.h,
4871 [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
4872 [AC_CHECK_HEADERS(varnishapi.h,
4873 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
4874 [with_libvarnish="no (found none of the varnish header files)"])])])
4876 CPPFLAGS="$SAVE_CPPFLAGS"
4878 if test "x$with_libvarnish" = "xyes"
4880 BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
4881 BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
4882 AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
4883 AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
4887 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
4888 with_libxml2="no (pkg-config isn't available)"
4889 with_libxml2_cflags=""
4890 with_libxml2_ldflags=""
4891 with_libvirt="no (pkg-config isn't available)"
4892 with_libvirt_cflags=""
4893 with_libvirt_ldflags=""
4894 if test "x$PKG_CONFIG" != "x"
4896 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
4901 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
4904 $PKG_CONFIG --exists libvirt 2>/dev/null
4909 with_libvirt="no (pkg-config doesn't know libvirt)"
4912 if test "x$with_libxml2" = "xyes"
4914 with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
4919 with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
4925 if test "x$with_libxml2" = "xyes"
4927 SAVE_CPPFLAGS="$CPPFLAGS"
4928 CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
4930 AC_CHECK_HEADERS(libxml/parser.h, [],
4931 [with_libxml2="no (libxml/parser.h not found)"])
4933 CPPFLAGS="$SAVE_CPPFLAGS"
4935 if test "x$with_libxml2" = "xyes"
4937 SAVE_CFLAGS="$CFLAGS"
4938 SAVE_LDFLAGS="$LDFLAGS"
4940 CFLAGS="$CFLAGS $with_libxml2_cflags"
4941 LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
4943 AC_CHECK_LIB(xml2, xmlXPathEval,
4944 [with_libxml2="yes"],
4945 [with_libxml2="no (symbol xmlXPathEval not found)"])
4947 CFLAGS="$SAVE_CFLAGS"
4948 LDFLAGS="$SAVE_LDFLAGS"
4950 dnl Add the right compiler flags and libraries.
4951 if test "x$with_libxml2" = "xyes"; then
4952 BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
4953 BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
4954 AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
4955 AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
4957 if test "x$with_libvirt" = "xyes"
4959 with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
4964 with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
4970 if test "x$with_libvirt" = "xyes"
4972 SAVE_CPPFLAGS="$CPPFLAGS"
4973 CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
4975 AC_CHECK_HEADERS(libvirt/libvirt.h, [],
4976 [with_libvirt="no (libvirt/libvirt.h not found)"])
4978 CPPFLAGS="$SAVE_CPPFLAGS"
4980 if test "x$with_libvirt" = "xyes"
4982 SAVE_CFLAGS="$CFLAGS"
4983 SAVE_LDFLAGS="$LDFLAGS"
4985 CFLAGS="$CFLAGS $with_libvirt_cflags"
4986 LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
4988 AC_CHECK_LIB(virt, virDomainBlockStats,
4989 [with_libvirt="yes"],
4990 [with_libvirt="no (symbol virDomainBlockStats not found)"])
4992 CFLAGS="$SAVE_CFLAGS"
4993 LDFLAGS="$SAVE_LDFLAGS"
4995 dnl Add the right compiler flags and libraries.
4996 if test "x$with_libvirt" = "xyes"; then
4997 BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
4998 BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
4999 AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
5000 AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
5004 # $PKG_CONFIG --exists OpenIPMIpthread {{{
5005 with_libopenipmipthread="yes"
5006 with_libopenipmipthread_cflags=""
5007 with_libopenipmipthread_libs=""
5009 AC_MSG_CHECKING([for pkg-config])
5011 if test "x$PKG_CONFIG" = "x"
5013 with_libopenipmipthread="no"
5016 temp_result="$PKG_CONFIG"
5018 AC_MSG_RESULT([$temp_result])
5020 if test "x$with_libopenipmipthread" = "xyes"
5022 AC_MSG_CHECKING([for libOpenIPMIpthread])
5023 $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
5026 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
5028 AC_MSG_RESULT([$with_libopenipmipthread])
5031 if test "x$with_libopenipmipthread" = "xyes"
5033 AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
5034 temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
5037 with_libopenipmipthread_cflags="$temp_result"
5039 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
5040 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
5042 AC_MSG_RESULT([$temp_result])
5045 if test "x$with_libopenipmipthread" = "xyes"
5047 AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
5048 temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
5051 with_libopenipmipthread_ldflags="$temp_result"
5053 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
5054 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
5056 AC_MSG_RESULT([$temp_result])
5059 if test "x$with_libopenipmipthread" = "xyes"
5061 SAVE_CPPFLAGS="$CPPFLAGS"
5062 CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
5064 AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
5065 [with_libopenipmipthread="yes"],
5066 [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
5067 [#include <OpenIPMI/ipmiif.h>
5068 #include <OpenIPMI/ipmi_err.h>
5069 #include <OpenIPMI/ipmi_posix.h>
5070 #include <OpenIPMI/ipmi_conn.h>
5073 CPPFLAGS="$SAVE_CPPFLAGS"
5076 if test "x$with_libopenipmipthread" = "xyes"
5078 BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
5079 BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
5080 AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
5081 AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
5085 # --with-libatasmart {{{
5086 with_libatasmart_cppflags=""
5087 with_libatasmart_ldflags=""
5088 AC_ARG_WITH(libatasmart, [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
5090 if test "x$withval" != "xno" && test "x$withval" != "xyes"
5092 with_libatasmart_cppflags="-I$withval/include"
5093 with_libatasmart_ldflags="-L$withval/lib"
5094 with_libatasmart="yes"
5096 with_libatasmart="$withval"
5100 if test "x$ac_system" = "xLinux"
5102 with_libatasmart="yes"
5104 with_libatasmart="no (Linux only library)"
5107 if test "x$with_libatasmart" = "xyes"
5109 SAVE_CPPFLAGS="$CPPFLAGS"
5110 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5112 AC_CHECK_HEADERS(atasmart.h, [with_libatasmart="yes"], [with_libatasmart="no (atasmart.h not found)"])
5114 CPPFLAGS="$SAVE_CPPFLAGS"
5116 if test "x$with_libatasmart" = "xyes"
5118 SAVE_CPPFLAGS="$CPPFLAGS"
5119 SAVE_LDFLAGS="$LDFLAGS"
5120 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5121 LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
5123 AC_CHECK_LIB(atasmart, sk_disk_open, [with_libatasmart="yes"], [with_libatasmart="no (Symbol 'sk_disk_open' not found)"])
5125 CPPFLAGS="$SAVE_CPPFLAGS"
5126 LDFLAGS="$SAVE_LDFLAGS"
5128 if test "x$with_libatasmart" = "xyes"
5130 BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
5131 BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
5132 BUILD_WITH_LIBATASMART_LIBS="-latasmart"
5133 AC_SUBST(BUILD_WITH_LIBATASMART_CPPFLAGS)
5134 AC_SUBST(BUILD_WITH_LIBATASMART_LDFLAGS)
5135 AC_SUBST(BUILD_WITH_LIBATASMART_LIBS)
5136 AC_DEFINE(HAVE_LIBATASMART, 1, [Define if libatasmart is present and usable.])
5138 AM_CONDITIONAL(BUILD_WITH_LIBATASMART, test "x$with_libatasmart" = "xyes")
5141 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
5142 [with_libnotify="yes"],
5143 [if test "x$LIBNOTIFY_PKG_ERRORS" = "x"; then
5146 with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"
5149 # Check for enabled/disabled features
5152 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
5153 # ------------------------------------------------------------
5155 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
5160 m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
5165 m4_define([EnDis],[disabled])dnl
5166 m4_define([YesNo],[no])dnl
5172 m4_define([EnDis],[enabled])dnl
5173 m4_define([YesNo],[yes])dnl
5176 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
5180 m4_if([$3], [feature], [],
5184 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
5190 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
5192 enable_$1='[YesNo]'dnl
5194 if test "x$enable_$1" = "xno"
5198 if test "x$enable_$1" = "xyes"
5202 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
5207 AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
5208 AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
5210 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
5212 # AC_PLUGIN(name, default, info)
5213 # ------------------------------------------------------------
5220 AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
5222 if test "x$enableval" = "xyes"
5225 else if test "x$enableval" = "xforce"
5230 enable_plugin="no (disabled on command line)"
5234 if test "x$enable_all_plugins" = "xauto"
5236 if test "x$2" = "xyes"
5243 enable_plugin="$enable_all_plugins"
5246 if test "x$enable_plugin" = "xyes"
5248 if test "x$2" = "xyes" || test "x$force" = "xyes"
5250 AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
5251 if test "x$2" != "xyes"
5253 dependency_warning="yes"
5255 else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
5256 dependency_error="yes"
5257 enable_plugin="no (dependency error)"
5260 AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
5261 enable_$1="$enable_plugin"
5263 )# AC_PLUGIN(name, default, info)
5265 m4_divert_once([HELP_ENABLE], [
5266 collectd features:])
5267 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
5268 AC_COLLECTD([debug], [enable], [feature], [debugging])
5269 AC_COLLECTD([daemon], [disable], [feature], [daemon mode])
5270 AC_COLLECTD([getifaddrs],[enable], [feature], [getifaddrs under Linux])
5271 AC_COLLECTD([werror], [disable], [feature], [building with -Werror])
5273 dependency_warning="no"
5274 dependency_error="no"
5277 plugin_barometer="no"
5282 plugin_conntrack="no"
5283 plugin_contextswitch="no"
5286 plugin_curl_json="no"
5287 plugin_curl_xml="no"
5295 plugin_interface="no"
5300 plugin_log_logstash="no"
5302 plugin_multimeter="no"
5306 plugin_processes="no"
5307 plugin_protocols="no"
5311 plugin_tcpconns="no"
5314 plugin_turbostat="no"
5320 plugin_wireless="no"
5323 plugin_zookeeper="no"
5326 if test "x$ac_system" = "xLinux"
5328 plugin_battery="yes"
5329 plugin_conntrack="yes"
5330 plugin_contextswitch="yes"
5331 plugin_cgroups="yes"
5333 plugin_cpufreq="yes"
5336 plugin_entropy="yes"
5337 plugin_fhcount="yes"
5338 plugin_fscache="yes"
5339 plugin_interface="yes"
5347 plugin_processes="yes"
5348 plugin_protocols="yes"
5351 plugin_tcpconns="yes"
5352 plugin_thermal="yes"
5355 plugin_vserver="yes"
5356 plugin_wireless="yes"
5357 plugin_zfs_arc="yes"
5359 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
5363 if test "x$c_cv_have_usable_asm_msrindex_h" = "xyes" && test "x$have_cpuid_h" = "xyes"
5365 plugin_turbostat="yes"
5369 if test "x$ac_system" = "xOpenBSD"
5371 plugin_tcpconns="yes"
5375 if test "x$with_libiokit" = "xyes"
5377 plugin_battery="yes"
5383 if test "x$ac_system" = "xAIX"
5385 plugin_tcpconns="yes"
5391 if test "x$ac_system" = "xFreeBSD"
5394 plugin_zfs_arc="yes"
5398 if test "x$with_perfstat" = "xyes"
5401 plugin_contextswitch="yes"
5405 plugin_interface="yes"
5410 if test "x$with_procinfo" = "xyes"
5412 plugin_processes="yes"
5416 if test "x$with_kstat" = "xyes"
5419 plugin_processes="yes"
5421 plugin_zfs_arc="yes"
5425 if test "x$with_devinfo$with_kstat" = "xyesyes"
5429 plugin_interface="yes"
5436 if test "x$ac_system" = "xLinux"
5438 AC_CHECK_DECL(i2c_smbus_read_i2c_block_data,
5439 [with_libi2c="yes"],
5440 [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
5441 [[#include <stdlib.h>
5442 #include <linux/i2c-dev.h>]])
5445 if test "x$with_libi2c" = "xyes"
5447 plugin_barometer="yes"
5452 if test "x$with_libstatgrab" = "xyes"
5456 plugin_interface="yes"
5463 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5466 if test "x$have_strptime" = "xyes"
5472 if test "x$with_libopenipmipthread" = "xyes"
5477 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
5479 plugin_curl_json="yes"
5482 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5484 plugin_curl_xml="yes"
5487 if test "x$with_libyajl" = "xyes"
5492 if test "x$have_processor_info" = "xyes"
5496 if test "x$have_sysctl" = "xyes"
5501 if test "x$ac_system" = "xDarwin"
5506 if test "x$have_sysctlbyname" = "xyes"
5508 plugin_contextswitch="yes"
5511 plugin_tcpconns="yes"
5514 # Df plugin: Check if we know how to determine mount points first.
5515 #if test "x$have_listmntent" = "xyes"; then
5518 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
5522 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
5526 #if test "x$have_getmntent" = "xseq"
5530 if test "x$c_cv_have_one_getmntent" = "xyes"
5535 if test "x$c_cv_have_getmntent_r" = "xyes"
5540 # Df plugin: Check if we have either `statfs' or `statvfs' second.
5541 if test "x$plugin_df" = "xyes"
5544 if test "x$have_statfs" = "xyes"
5548 if test "x$have_statvfs" = "xyes"
5554 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
5556 plugin_ethstat="yes"
5559 if test "x$have_getifaddrs" = "xyes"
5561 plugin_interface="yes"
5564 if test "x$have_getloadavg" = "xyes"
5569 if test "x$with_libyajl" = "xyes"
5571 plugin_log_logstash="yes"
5574 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
5579 # Mac OS X memory interface
5580 if test "x$have_host_statistics" = "xyes"
5585 if test "x$have_termios_h" = "xyes"
5587 if test "x$ac_system" != "xAIX"
5589 plugin_multimeter="yes"
5594 if test "x$have_thread_info" = "xyes"
5596 plugin_processes="yes"
5599 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
5601 plugin_processes="yes"
5604 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"
5606 plugin_processes="yes"
5609 if test "x$with_kvm_getswapinfo" = "xyes"
5614 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
5619 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
5621 plugin_tcpconns="yes"
5624 if test "x$have_getutent" = "xyes"
5628 if test "x$have_getutxent" = "xyes"
5633 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
5639 m4_divert_once([HELP_ENABLE], [
5642 AC_ARG_ENABLE([all-plugins],
5643 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
5645 if test "x$enableval" = "xyes"
5647 enable_all_plugins="yes"
5648 else if test "x$enableval" = "xauto"
5650 enable_all_plugins="auto"
5652 enable_all_plugins="no"
5655 [enable_all_plugins="auto"])
5657 m4_divert_once([HELP_ENABLE], [])
5659 AC_PLUGIN([aggregation], [yes], [Aggregation plugin])
5660 AC_PLUGIN([amqp], [$with_librabbitmq], [AMQP output plugin])
5661 AC_PLUGIN([apache], [$with_libcurl], [Apache httpd statistics])
5662 AC_PLUGIN([apcups], [yes], [Statistics of UPSes by APC])
5663 AC_PLUGIN([apple_sensors], [$with_libiokit], [Apple's hardware sensors])
5664 AC_PLUGIN([aquaero], [$with_libaquaero5], [Aquaero's hardware sensors])
5665 AC_PLUGIN([ascent], [$plugin_ascent], [AscentEmu player statistics])
5666 AC_PLUGIN([barometer], [$plugin_barometer], [Barometer sensor on I2C])
5667 AC_PLUGIN([battery], [$plugin_battery], [Battery statistics])
5668 AC_PLUGIN([bind], [$plugin_bind], [ISC Bind nameserver statistics])
5669 AC_PLUGIN([ceph], [$plugin_ceph], [Ceph daemon statistics])
5670 AC_PLUGIN([conntrack], [$plugin_conntrack], [nf_conntrack statistics])
5671 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
5672 AC_PLUGIN([cpufreq], [$plugin_cpufreq], [CPU frequency statistics])
5673 AC_PLUGIN([cpu], [$plugin_cpu], [CPU usage statistics])
5674 AC_PLUGIN([csv], [yes], [CSV output plugin])
5675 AC_PLUGIN([curl], [$with_libcurl], [CURL generic web statistics])
5676 AC_PLUGIN([curl_json], [$plugin_curl_json], [CouchDB statistics])
5677 AC_PLUGIN([curl_xml], [$plugin_curl_xml], [CURL generic xml statistics])
5678 AC_PLUGIN([cgroups], [$plugin_cgroups], [CGroups CPU usage accounting])
5679 AC_PLUGIN([dbi], [$with_libdbi], [General database statistics])
5680 AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics])
5681 AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics])
5682 AC_PLUGIN([drbd], [$plugin_drbd], [DRBD statistics])
5683 AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis])
5684 AC_PLUGIN([email], [yes], [EMail statistics])
5685 AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics])
5686 AC_PLUGIN([ethstat], [$plugin_ethstat], [Stats from NIC driver])
5687 AC_PLUGIN([exec], [yes], [Execution of external programs])
5688 AC_PLUGIN([fhcount], [$plugin_fhcount], [File handles statistics])
5689 AC_PLUGIN([filecount], [yes], [Count files in directories])
5690 AC_PLUGIN([fscache], [$plugin_fscache], [fscache statistics])
5691 AC_PLUGIN([gmond], [$with_libganglia], [Ganglia plugin])
5692 AC_PLUGIN([hddtemp], [yes], [Query hddtempd])
5693 AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics])
5694 AC_PLUGIN([ipc], [$plugin_ipc], [IPC statistics])
5695 AC_PLUGIN([ipmi], [$plugin_ipmi], [IPMI sensor statistics])
5696 AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
5697 AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
5698 AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
5699 AC_PLUGIN([java], [$with_java], [Embed the Java Virtual Machine])
5700 AC_PLUGIN([load], [$plugin_load], [System load])
5701 AC_PLUGIN([logfile], [yes], [File logging plugin])
5702 AC_PLUGIN([log_logstash], [$plugin_log_logstash], [Logstash json_event compatible logging])
5703 AC_PLUGIN([lpar], [$with_perfstat], [AIX logical partitions statistics])
5704 AC_PLUGIN([lvm], [$with_liblvm2app], [LVM statistics])
5705 AC_PLUGIN([madwifi], [$have_linux_wireless_h], [Madwifi wireless statistics])
5706 AC_PLUGIN([match_empty_counter], [yes], [The empty counter match])
5707 AC_PLUGIN([match_hashed], [yes], [The hashed match])
5708 AC_PLUGIN([match_regex], [yes], [The regex match])
5709 AC_PLUGIN([match_timediff], [yes], [The timediff match])
5710 AC_PLUGIN([match_value], [yes], [The value match])
5711 AC_PLUGIN([mbmon], [yes], [Query mbmond])
5712 AC_PLUGIN([md], [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
5713 AC_PLUGIN([memcachec], [$with_libmemcached], [memcachec statistics])
5714 AC_PLUGIN([memcached], [yes], [memcached statistics])
5715 AC_PLUGIN([memory], [$plugin_memory], [Memory usage])
5716 AC_PLUGIN([mic], [$with_mic], [Intel Many Integrated Core stats])
5717 AC_PLUGIN([modbus], [$with_libmodbus], [Modbus plugin])
5718 AC_PLUGIN([mqtt], [$with_libmosquitto], [MQTT output plugin])
5719 AC_PLUGIN([multimeter], [$plugin_multimeter], [Read multimeter values])
5720 AC_PLUGIN([mysql], [$with_libmysql], [MySQL statistics])
5721 AC_PLUGIN([netapp], [$with_libnetapp], [NetApp plugin])
5722 AC_PLUGIN([netlink], [$with_libmnl], [Enhanced Linux network statistics])
5723 AC_PLUGIN([network], [yes], [Network communication plugin])
5724 AC_PLUGIN([nfs], [$plugin_nfs], [NFS statistics])
5725 AC_PLUGIN([nginx], [$with_libcurl], [nginx statistics])
5726 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
5727 AC_PLUGIN([notify_email], [$with_libesmtp], [Email notifier])
5728 AC_PLUGIN([ntpd], [yes], [NTPd statistics])
5729 AC_PLUGIN([numa], [$plugin_numa], [NUMA virtual memory statistics])
5730 AC_PLUGIN([nut], [$with_libupsclient], [Network UPS tools statistics])
5731 AC_PLUGIN([olsrd], [yes], [olsrd statistics])
5732 AC_PLUGIN([onewire], [$with_libowcapi], [OneWire sensor statistics])
5733 AC_PLUGIN([openldap], [$with_libldap], [OpenLDAP statistics])
5734 AC_PLUGIN([openvpn], [yes], [OpenVPN client statistics])
5735 AC_PLUGIN([oracle], [$with_oracle], [Oracle plugin])
5736 AC_PLUGIN([perl], [$plugin_perl], [Embed a Perl interpreter])
5737 AC_PLUGIN([pf], [$have_net_pfvar_h], [BSD packet filter (PF) statistics])
5738 # FIXME: Check for libevent, too.
5739 AC_PLUGIN([pinba], [$have_protoc_c], [Pinba statistics])
5740 AC_PLUGIN([ping], [$with_liboping], [Network latency statistics])
5741 AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics])
5742 AC_PLUGIN([powerdns], [yes], [PowerDNS statistics])
5743 AC_PLUGIN([processes], [$plugin_processes], [Process statistics])
5744 AC_PLUGIN([protocols], [$plugin_protocols], [Protocol (IP, TCP, ...) statistics])
5745 AC_PLUGIN([python], [$with_python], [Embed a Python interpreter])
5746 AC_PLUGIN([redis], [$with_libhiredis], [Redis plugin])
5747 AC_PLUGIN([routeros], [$with_librouteros], [RouterOS plugin])
5748 AC_PLUGIN([rrdcached], [$librrd_rrdc_update], [RRDTool output plugin])
5749 AC_PLUGIN([rrdtool], [$with_librrd], [RRDTool output plugin])
5750 AC_PLUGIN([sensors], [$with_libsensors], [lm_sensors statistics])
5751 AC_PLUGIN([serial], [$plugin_serial], [serial port traffic])
5752 AC_PLUGIN([sigrok], [$with_libsigrok], [sigrok acquisition sources])
5753 AC_PLUGIN([smart], [$with_libatasmart], [SMART statistics])
5754 AC_PLUGIN([snmp], [$with_libnetsnmp], [SNMP querying plugin])
5755 AC_PLUGIN([statsd], [yes], [StatsD plugin])
5756 AC_PLUGIN([swap], [$plugin_swap], [Swap usage statistics])
5757 AC_PLUGIN([syslog], [$have_syslog], [Syslog logging plugin])
5758 AC_PLUGIN([table], [yes], [Parsing of tabular data])
5759 AC_PLUGIN([tail], [yes], [Parsing of logfiles])
5760 AC_PLUGIN([tail_csv], [yes], [Parsing of CSV files])
5761 AC_PLUGIN([tape], [$plugin_tape], [Tape drive statistics])
5762 AC_PLUGIN([target_notification], [yes], [The notification target])
5763 AC_PLUGIN([target_replace], [yes], [The replace target])
5764 AC_PLUGIN([target_scale],[yes], [The scale target])
5765 AC_PLUGIN([target_set], [yes], [The set target])
5766 AC_PLUGIN([target_v5upgrade], [yes], [The v5upgrade target])
5767 AC_PLUGIN([tcpconns], [$plugin_tcpconns], [TCP connection statistics])
5768 AC_PLUGIN([teamspeak2], [yes], [TeamSpeak2 server statistics])
5769 AC_PLUGIN([ted], [$plugin_ted], [Read The Energy Detective values])
5770 AC_PLUGIN([thermal], [$plugin_thermal], [Linux ACPI thermal zone statistics])
5771 AC_PLUGIN([threshold], [yes], [Threshold checking plugin])
5772 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant], [TokyoTyrant database statistics])
5773 AC_PLUGIN([turbostat], [$plugin_turbostat], [Advanced statistic on Intel cpu states])
5774 AC_PLUGIN([unixsock], [yes], [Unixsock communication plugin])
5775 AC_PLUGIN([uptime], [$plugin_uptime], [Uptime statistics])
5776 AC_PLUGIN([users], [$plugin_users], [User statistics])
5777 AC_PLUGIN([uuid], [yes], [UUID as hostname plugin])
5778 AC_PLUGIN([varnish], [$with_libvarnish], [Varnish cache statistics])
5779 AC_PLUGIN([virt], [$plugin_virt], [Virtual machine statistics])
5780 AC_PLUGIN([vmem], [$plugin_vmem], [Virtual memory statistics])
5781 AC_PLUGIN([vserver], [$plugin_vserver], [Linux VServer statistics])
5782 AC_PLUGIN([wireless], [$plugin_wireless], [Wireless statistics])
5783 AC_PLUGIN([write_graphite], [yes], [Graphite / Carbon output plugin])
5784 AC_PLUGIN([write_http], [$with_libcurl], [HTTP output plugin])
5785 AC_PLUGIN([write_kafka], [$with_librdkafka], [Kafka output plugin])
5786 AC_PLUGIN([write_log], [yes], [Log output plugin])
5787 AC_PLUGIN([write_mongodb], [$with_libmongoc], [MongoDB output plugin])
5788 AC_PLUGIN([write_redis], [$with_libhiredis], [Redis output plugin])
5789 AC_PLUGIN([write_riemann], [$have_protoc_c], [Riemann output plugin])
5790 AC_PLUGIN([write_sensu], [yes], [Sensu output plugin])
5791 AC_PLUGIN([write_tsdb], [yes], [TSDB output plugin])
5792 AC_PLUGIN([xmms], [$with_libxmms], [XMMS statistics])
5793 AC_PLUGIN([zfs_arc], [$plugin_zfs_arc], [ZFS ARC statistics])
5794 AC_PLUGIN([zone], [$plugin_zone], [Solaris container statistics])
5795 AC_PLUGIN([zookeeper], [yes], [Zookeeper statistics])
5797 dnl Default configuration file
5798 # Load either syslog or logfile
5799 LOAD_PLUGIN_SYSLOG=""
5800 LOAD_PLUGIN_LOGFILE=""
5801 LOAD_PLUGIN_LOG_LOGSTASH=""
5803 AC_MSG_CHECKING([which default log plugin to load])
5804 default_log_plugin="none"
5805 if test "x$enable_syslog" = "xyes"
5807 default_log_plugin="syslog"
5809 LOAD_PLUGIN_SYSLOG="##"
5812 if test "x$enable_logfile" = "xyes"
5814 if test "x$default_log_plugin" = "xnone"
5816 default_log_plugin="logfile"
5818 LOAD_PLUGIN_LOGFILE="#"
5821 LOAD_PLUGIN_LOGFILE="##"
5824 if test "x$enable_log_logstash" = "xyes"
5826 LOAD_PLUGIN_LOG_LOGSTASH="#"
5828 LOAD_PLUGIN_LOG_LOGSTASH="##"
5832 AC_MSG_RESULT([$default_log_plugin])
5834 AC_SUBST(LOAD_PLUGIN_SYSLOG)
5835 AC_SUBST(LOAD_PLUGIN_LOGFILE)
5836 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
5838 DEFAULT_LOG_LEVEL="info"
5839 if test "x$enable_debug" = "xyes"
5841 DEFAULT_LOG_LEVEL="debug"
5843 AC_SUBST(DEFAULT_LOG_LEVEL)
5845 # Load only one of rrdtool, network, csv in the default config.
5846 LOAD_PLUGIN_RRDTOOL=""
5847 LOAD_PLUGIN_NETWORK=""
5850 AC_MSG_CHECKING([which default write plugin to load])
5851 default_write_plugin="none"
5852 if test "x$enable_rrdtool" = "xyes"
5854 default_write_plugin="rrdtool"
5856 LOAD_PLUGIN_RRDTOOL="##"
5859 if test "x$enable_network" = "xyes"
5861 if test "x$default_write_plugin" = "xnone"
5863 default_write_plugin="network"
5865 LOAD_PLUGIN_NETWORK="#"
5868 LOAD_PLUGIN_NETWORK="##"
5871 if test "x$enable_csv" = "xyes"
5873 if test "x$default_write_plugin" = "xnone"
5875 default_write_plugin="csv"
5880 LOAD_PLUGIN_CSV="##"
5882 AC_MSG_RESULT([$default_write_plugin])
5884 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5885 AC_SUBST(LOAD_PLUGIN_NETWORK)
5886 AC_SUBST(LOAD_PLUGIN_CSV)
5889 if test "x$ac_system" = "xLinux" \
5890 && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
5892 enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5895 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5897 enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5901 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
5902 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5904 if test "x$withval" != "xno" && test "x$withval" != "xyes"
5906 PERL_BINDINGS_OPTIONS="$withval"
5907 with_perl_bindings="yes"
5909 with_perl_bindings="$withval"
5913 if test -n "$perl_interpreter"
5915 with_perl_bindings="yes"
5917 with_perl_bindings="no (no perl interpreter found)"
5920 if test "x$with_perl_bindings" = "xyes"
5922 PERL_BINDINGS="perl"
5926 AC_SUBST(PERL_BINDINGS)
5927 AC_SUBST(PERL_BINDINGS_OPTIONS)
5929 dnl libcollectdclient
5930 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5931 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5932 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5934 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5936 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5938 AC_SUBST(LCC_VERSION_MAJOR)
5939 AC_SUBST(LCC_VERSION_MINOR)
5940 AC_SUBST(LCC_VERSION_PATCH)
5941 AC_SUBST(LCC_VERSION_EXTRA)
5942 AC_SUBST(LCC_VERSION_STRING)
5944 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
5947 if test "x$enable_werror" != "xno"
5949 AM_CFLAGS="$AM_CFLAGS -Werror"
5951 AC_SUBST([AM_CFLAGS])
5953 AC_CONFIG_FILES([Makefile src/Makefile src/daemon/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile])
5956 if test "x$with_librrd" = "xyes" \
5957 && test "x$librrd_threadsafe" != "xyes"
5959 with_librrd="yes (warning: librrd is not thread-safe)"
5962 if test "x$with_libperl" = "xyes"
5964 with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
5966 enable_perl="no (needs libperl)"
5969 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5971 enable_perl="no (libperl doesn't support ithreads)"
5974 if test "x$with_perl_bindings" = "xyes" \
5975 && test "x$PERL_BINDINGS_OPTIONS" != "x"
5977 with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5984 Platform . . . . . . $ac_system
5985 CC . . . . . . . . . $CC
5986 CFLAGS . . . . . . . $AM_CFLAGS $CFLAGS
5987 CPP . . . . . . . . . $CPP
5988 CPPFLAGS . . . . . . $CPPFLAGS
5989 LD . . . . . . . . . $LD
5990 LDFLAGS . . . . . . . $LDFLAGS
5991 YACC . . . . . . . . $YACC
5992 YFLAGS . . . . . . . $YFLAGS
5995 intel mic . . . . . . $with_mic
5996 libaquaero5 . . . . . $with_libaquaero5
5997 libatasmart . . . . . $with_libatasmart
5998 libcurl . . . . . . . $with_libcurl
5999 libdbi . . . . . . . $with_libdbi
6000 libesmtp . . . . . . $with_libesmtp
6001 libganglia . . . . . $with_libganglia
6002 libgcrypt . . . . . . $with_libgcrypt
6003 libhal . . . . . . . $with_libhal
6004 libhiredis . . . . . $with_libhiredis
6005 libi2c-dev . . . . . $with_libi2c
6006 libiokit . . . . . . $with_libiokit
6007 libiptc . . . . . . . $with_libiptc
6008 libjvm . . . . . . . $with_java
6009 libkstat . . . . . . $with_kstat
6010 libkvm . . . . . . . $with_libkvm
6011 libldap . . . . . . . $with_libldap
6012 liblvm2app . . . . . $with_liblvm2app
6013 libmemcached . . . . $with_libmemcached
6014 libmnl . . . . . . . $with_libmnl
6015 libmodbus . . . . . . $with_libmodbus
6016 libmongoc . . . . . . $with_libmongoc
6017 libmosquitto . . . . $with_libmosquitto
6018 libmysql . . . . . . $with_libmysql
6019 libnetapp . . . . . . $with_libnetapp
6020 libnetsnmp . . . . . $with_libnetsnmp
6021 libnotify . . . . . . $with_libnotify
6022 liboconfig . . . . . $with_liboconfig
6023 libopenipmi . . . . . $with_libopenipmipthread
6024 liboping . . . . . . $with_liboping
6025 libowcapi . . . . . . $with_libowcapi
6026 libpcap . . . . . . . $with_libpcap
6027 libperfstat . . . . . $with_perfstat
6028 libperl . . . . . . . $with_libperl
6029 libpq . . . . . . . . $with_libpq
6030 libpthread . . . . . $with_libpthread
6031 librabbitmq . . . . . $with_librabbitmq
6032 librdkafka . . . . . $with_librdkafka
6033 librouteros . . . . . $with_librouteros
6034 librrd . . . . . . . $with_librrd
6035 libsensors . . . . . $with_libsensors
6036 libsigrok . . . . . $with_libsigrok
6037 libstatgrab . . . . . $with_libstatgrab
6038 libtokyotyrant . . . $with_libtokyotyrant
6039 libudev . . . . . . . $with_libudev
6040 libupsclient . . . . $with_libupsclient
6041 libvarnish . . . . . $with_libvarnish
6042 libvirt . . . . . . . $with_libvirt
6043 libxml2 . . . . . . . $with_libxml2
6044 libxmms . . . . . . . $with_libxmms
6045 libyajl . . . . . . . $with_libyajl
6046 oracle . . . . . . . $with_oracle
6047 protobuf-c . . . . . $have_protoc_c
6048 python . . . . . . . $with_python
6051 daemon mode . . . . . $enable_daemon
6052 debug . . . . . . . . $enable_debug
6055 perl . . . . . . . . $with_perl_bindings
6058 aggregation . . . . . $enable_aggregation
6059 amqp . . . . . . . $enable_amqp
6060 apache . . . . . . . $enable_apache
6061 apcups . . . . . . . $enable_apcups
6062 apple_sensors . . . . $enable_apple_sensors
6063 aquaero . . . . . . . $enable_aquaero
6064 ascent . . . . . . . $enable_ascent
6065 barometer . . . . . . $enable_barometer
6066 battery . . . . . . . $enable_battery
6067 bind . . . . . . . . $enable_bind
6068 ceph . . . . . . . . $enable_ceph
6069 cgroups . . . . . . . $enable_cgroups
6070 conntrack . . . . . . $enable_conntrack
6071 contextswitch . . . . $enable_contextswitch
6072 cpu . . . . . . . . . $enable_cpu
6073 cpufreq . . . . . . . $enable_cpufreq
6074 csv . . . . . . . . . $enable_csv
6075 curl . . . . . . . . $enable_curl
6076 curl_json . . . . . . $enable_curl_json
6077 curl_xml . . . . . . $enable_curl_xml
6078 dbi . . . . . . . . . $enable_dbi
6079 df . . . . . . . . . $enable_df
6080 disk . . . . . . . . $enable_disk
6081 dns . . . . . . . . . $enable_dns
6082 drbd . . . . . . . . $enable_drbd
6083 email . . . . . . . . $enable_email
6084 entropy . . . . . . . $enable_entropy
6085 ethstat . . . . . . . $enable_ethstat
6086 exec . . . . . . . . $enable_exec
6087 fhcount . . . . . . . $enable_fhcount
6088 filecount . . . . . . $enable_filecount
6089 fscache . . . . . . . $enable_fscache
6090 gmond . . . . . . . . $enable_gmond
6091 hddtemp . . . . . . . $enable_hddtemp
6092 interface . . . . . . $enable_interface
6093 ipc . . . . . . . . . $enable_ipc
6094 ipmi . . . . . . . . $enable_ipmi
6095 iptables . . . . . . $enable_iptables
6096 ipvs . . . . . . . . $enable_ipvs
6097 irq . . . . . . . . . $enable_irq
6098 java . . . . . . . . $enable_java
6099 load . . . . . . . . $enable_load
6100 logfile . . . . . . . $enable_logfile
6101 log_logstash . . . . $enable_log_logstash
6102 lpar . . . . . . . . $enable_lpar
6103 lvm . . . . . . . . . $enable_lvm
6104 madwifi . . . . . . . $enable_madwifi
6105 match_empty_counter . $enable_match_empty_counter
6106 match_hashed . . . . $enable_match_hashed
6107 match_regex . . . . . $enable_match_regex
6108 match_timediff . . . $enable_match_timediff
6109 match_value . . . . . $enable_match_value
6110 mbmon . . . . . . . . $enable_mbmon
6111 md . . . . . . . . . $enable_md
6112 memcachec . . . . . . $enable_memcachec
6113 memcached . . . . . . $enable_memcached
6114 memory . . . . . . . $enable_memory
6115 mic . . . . . . . . . $enable_mic
6116 modbus . . . . . . . $enable_modbus
6117 mqtt . . . . . . . . $enable_mqtt
6118 multimeter . . . . . $enable_multimeter
6119 mysql . . . . . . . . $enable_mysql
6120 netapp . . . . . . . $enable_netapp
6121 netlink . . . . . . . $enable_netlink
6122 network . . . . . . . $enable_network
6123 nfs . . . . . . . . . $enable_nfs
6124 nginx . . . . . . . . $enable_nginx
6125 notify_desktop . . . $enable_notify_desktop
6126 notify_email . . . . $enable_notify_email
6127 ntpd . . . . . . . . $enable_ntpd
6128 numa . . . . . . . . $enable_numa
6129 nut . . . . . . . . . $enable_nut
6130 olsrd . . . . . . . . $enable_olsrd
6131 onewire . . . . . . . $enable_onewire
6132 openldap . . . . . . $enable_openldap
6133 openvpn . . . . . . . $enable_openvpn
6134 oracle . . . . . . . $enable_oracle
6135 perl . . . . . . . . $enable_perl
6136 pf . . . . . . . . . $enable_pf
6137 pinba . . . . . . . . $enable_pinba
6138 ping . . . . . . . . $enable_ping
6139 postgresql . . . . . $enable_postgresql
6140 powerdns . . . . . . $enable_powerdns
6141 processes . . . . . . $enable_processes
6142 protocols . . . . . . $enable_protocols
6143 python . . . . . . . $enable_python
6144 redis . . . . . . . . $enable_redis
6145 routeros . . . . . . $enable_routeros
6146 rrdcached . . . . . . $enable_rrdcached
6147 rrdtool . . . . . . . $enable_rrdtool
6148 sensors . . . . . . . $enable_sensors
6149 serial . . . . . . . $enable_serial
6150 sigrok . . . . . . . $enable_sigrok
6151 smart . . . . . . . . $enable_smart
6152 snmp . . . . . . . . $enable_snmp
6153 statsd . . . . . . . $enable_statsd
6154 swap . . . . . . . . $enable_swap
6155 syslog . . . . . . . $enable_syslog
6156 table . . . . . . . . $enable_table
6157 tail_csv . . . . . . $enable_tail_csv
6158 tail . . . . . . . . $enable_tail
6159 tape . . . . . . . . $enable_tape
6160 target_notification . $enable_target_notification
6161 target_replace . . . $enable_target_replace
6162 target_scale . . . . $enable_target_scale
6163 target_set . . . . . $enable_target_set
6164 target_v5upgrade . . $enable_target_v5upgrade
6165 tcpconns . . . . . . $enable_tcpconns
6166 teamspeak2 . . . . . $enable_teamspeak2
6167 ted . . . . . . . . . $enable_ted
6168 thermal . . . . . . . $enable_thermal
6169 threshold . . . . . . $enable_threshold
6170 tokyotyrant . . . . . $enable_tokyotyrant
6171 turbostat . . . . . . $enable_turbostat
6172 unixsock . . . . . . $enable_unixsock
6173 uptime . . . . . . . $enable_uptime
6174 users . . . . . . . . $enable_users
6175 uuid . . . . . . . . $enable_uuid
6176 varnish . . . . . . . $enable_varnish
6177 virt . . . . . . . . $enable_virt
6178 vmem . . . . . . . . $enable_vmem
6179 vserver . . . . . . . $enable_vserver
6180 wireless . . . . . . $enable_wireless
6181 write_graphite . . . $enable_write_graphite
6182 write_http . . . . . $enable_write_http
6183 write_kafka . . . . . $enable_write_kafka
6184 write_log . . . . . . $enable_write_log
6185 write_mongodb . . . . $enable_write_mongodb
6186 write_redis . . . . . $enable_write_redis
6187 write_riemann . . . . $enable_write_riemann
6188 write_sensu . . . . . $enable_write_sensu
6189 write_tsdb . . . . . $enable_write_tsdb
6190 xmms . . . . . . . . $enable_xmms
6191 zfs_arc . . . . . . . $enable_zfs_arc
6192 zone . . . . . . . . $enable_zone
6193 zookeeper . . . . . . $enable_zookeeper
6197 if test "x$dependency_error" = "xyes"; then
6198 AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6201 if test "x$dependency_warning" = "xyes"; then
6202 AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6205 # vim: set fdm=marker :