1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT([collectd],[m4_esyscmd(./version-gen.sh)])
4 AC_CONFIG_SRCDIR(src/target_set.c)
5 AC_CONFIG_HEADERS(src/config.h)
6 AC_CONFIG_AUX_DIR([build-aux])
7 AC_CONFIG_MACRO_DIR([m4])
9 dnl older automake's default of ARFLAGS=cru is noisy on newer binutils;
10 dnl we don't really need the 'u' even in older toolchains. Then there is
11 dnl older libtool, which spelled it AR_FLAGS
12 m4_divert_text([DEFAULTS], [: "${ARFLAGS=cr} ${AR_FLAGS=cr}"])
14 LT_INIT([dlopen disable-static])
16 AM_INIT_AUTOMAKE([subdir-objects tar-pax dist-bzip2 no-dist-gzip foreign])
17 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
20 AC_PREFIX_DEFAULT("/opt/collectd")
25 # Checks for programs.
28 [AC_MSG_ERROR([No compiler found that supports C99])]
44 AC_PATH_PROG([VALGRIND], [valgrind])
46 # Warn when pkg.m4 is missing
47 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
51 AC_CACHE_CHECK([if Bison is the parser generator],
52 [collectd_cv_prog_bison],
54 AS_IF([$YACC --version 2>/dev/null | $EGREP -q '^bison '],
55 [collectd_cv_prog_bison=yes],
56 [collectd_cv_prog_bison=no]
61 if test "x$collectd_cv_prog_bison" = "xno" && test ! -f "${srcdir}/src/liboconfig/parser.c"; then
62 AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/src/liboconfig/parser.c. Please install bison])
65 if test "x$lt_cv_dlopen" = "xno"; then
66 AC_MSG_ERROR([Your system does not support dlopen])
69 AC_SUBST([DLOPEN_LIBS], [$lt_cv_dlopen_libs])
72 AC_MSG_CHECKING([for kernel type ($host_os)])
75 AC_DEFINE([KERNEL_AIX], [1], [True if program is to be compiled for a AIX kernel])
79 AC_DEFINE([KERNEL_DARWIN], [1], [True if program is to be compiled for a Darwin kernel])
83 AC_DEFINE([KERNEL_FREEBSD], [1], [True if program is to be compiled for a FreeBSD kernel])
87 AC_DEFINE([KERNEL_LINUX], [1], [True if program is to be compiled for a Linux kernel])
91 AC_DEFINE([KERNEL_NETBSD], [1], [True if program is to be compiled for a NetBSD kernel])
95 AC_DEFINE([KERNEL_OPENBSD], [1], [True if program is to be compiled for an OpenBSD kernel])
99 AC_DEFINE([KERNEL_SOLARIS], [1], [True if program is to be compiled for a Solaris kernel])
103 AC_DEFINE([KERNEL_WIN32], [1], [True if program is to be compiled for a Windows kernel])
110 AC_MSG_RESULT([$ac_system])
112 AM_CONDITIONAL([BUILD_AIX], [test "x$ac_system" = "xAIX"])
113 AM_CONDITIONAL([BUILD_DARWIN], [test "x$ac_system" = "xDarwin"])
114 AM_CONDITIONAL([BUILD_FREEBSD], [test "x$ac_system" = "xFreeBSD"])
115 AM_CONDITIONAL([BUILD_LINUX], [test "x$ac_system" = "xLinux"])
116 AM_CONDITIONAL([BUILD_OPENBSD], [test "x$ac_system" = "xOpenBSD"])
117 AM_CONDITIONAL([BUILD_SOLARIS], [test "x$ac_system" = "xSolaris"])
118 AM_CONDITIONAL([BUILD_WIN32], [test "x$ac_system" = "xWindows"])
120 if test "x$ac_system" = "xSolaris"; then
121 AC_DEFINE([_POSIX_PTHREAD_SEMANTICS], [1], [Define to enforce POSIX thread semantics under Solaris.])
122 AC_DEFINE([_REENTRANT], [1], [Define to enable reentrancy interfaces.])
124 AC_MSG_CHECKING([whether compiler builds 64bit binaries])
130 # error "Compiler not in 64bit mode."
135 [AC_MSG_RESULT([yes])],
138 AC_MSG_NOTICE([Solaris detected. Please consider building a 64-bit binary.])
143 if test "x$ac_system" = "xAIX"; then
144 AC_DEFINE([_THREAD_SAFE_ERRNO], [1], [Define to use the thread-safe version of errno under AIX.])
147 # Where to install .pc files.
148 pkgconfigdir="${libdir}/pkgconfig"
149 AC_SUBST([pkgconfigdir])
152 # Checks for header files.
157 AC_CHECK_HEADERS_ONCE([ \
199 if test "x$ac_system" = "xNetBSD"; then
200 # For entropy plugin on newer NetBSD
201 AC_CHECK_HEADERS([sys/rndio.h], [], [],
204 # include <sys/types.h>
207 # include <sys/ioctl.h>
210 # include <sys/param.h>
217 AC_CHECK_HEADERS([netinet/in_systm.h], [], [],
221 # include <sys/types.h>
226 AC_CHECK_HEADERS([netinet/in.h], [], [],
230 # include <sys/types.h>
232 #if HAVE_NETINET_IN_SYSTM_H
233 # include <netinet/in_systm.h>
238 AC_CHECK_HEADERS([netinet/ip.h], [], [],
242 # include <sys/types.h>
244 #if HAVE_NETINET_IN_SYSTM_H
245 # include <netinet/in_systm.h>
247 #if HAVE_NETINET_IN_H
248 # include <netinet/in.h>
253 AC_CHECK_HEADERS([netinet/ip_icmp.h], [], [],
257 # include <sys/types.h>
259 #if HAVE_NETINET_IN_SYSTM_H
260 # include <netinet/in_systm.h>
262 #if HAVE_NETINET_IN_H
263 # include <netinet/in.h>
265 #if HAVE_NETINET_IP_H
266 # include <netinet/ip.h>
271 AC_CHECK_HEADERS([netinet/ip_var.h], [], [],
275 # include <sys/types.h>
277 #if HAVE_NETINET_IN_SYSTM_H
278 # include <netinet/in_systm.h>
280 #if HAVE_NETINET_IN_H
281 # include <netinet/in.h>
283 #if HAVE_NETINET_IP_H
284 # include <netinet/ip.h>
289 AC_CHECK_HEADERS([netinet/ip6.h], [], [],
293 # include <sys/types.h>
295 #if HAVE_NETINET_IN_SYSTM_H
296 # include <netinet/in_systm.h>
298 #if HAVE_NETINET_IN_H
299 # include <netinet/in.h>
304 AC_CHECK_HEADERS([netinet/icmp6.h], [], [],
308 # include <sys/types.h>
310 #if HAVE_NETINET_IN_SYSTM_H
311 # include <netinet/in_systm.h>
313 #if HAVE_NETINET_IN_H
314 # include <netinet/in.h>
316 #if HAVE_NETINET_IP6_H
317 # include <netinet/ip6.h>
322 AC_CHECK_HEADERS([netinet/tcp.h], [], [],
326 # include <sys/types.h>
328 #if HAVE_NETINET_IN_SYSTM_H
329 # include <netinet/in_systm.h>
331 #if HAVE_NETINET_IN_H
332 # include <netinet/in.h>
334 #if HAVE_NETINET_IP_H
335 # include <netinet/ip.h>
340 AC_CHECK_HEADERS([netinet/udp.h], [], [],
344 # include <sys/types.h>
346 #if HAVE_NETINET_IN_SYSTM_H
347 # include <netinet/in_systm.h>
349 #if HAVE_NETINET_IN_H
350 # include <netinet/in.h>
352 #if HAVE_NETINET_IP_H
353 # include <netinet/ip.h>
359 AC_CHECK_HEADERS([sys/dkstat.h])
360 if test "x$ac_system" = "xDarwin"; then
370 mach/processor_set.h \
372 mach/processor_info.h \
378 mach/vm_statistics.h \
380 CoreFoundation/CoreFoundation.h \
383 IOKit/ps/IOPSKeys.h \
385 IOKit/storage/IOBlockStorageDriver.h
389 # For the battery plugin
390 AC_CHECK_HEADERS([IOKit/ps/IOPowerSources.h], [], [],
392 #if HAVE_IOKIT_IOKITLIB_H
393 # include <IOKit/IOKitLib.h>
395 #if HAVE_IOKIT_IOTYPES_H
396 # include <IOKit/IOTypes.h>
402 AC_CHECK_HEADERS([sys/sysctl.h], [], [],
405 # include <sys/types.h>
408 # include <sys/param.h>
413 # For interface plugin
414 AC_CHECK_HEADERS([ifaddrs.h])
415 AC_CHECK_HEADERS([net/if.h], [], [],
418 # include <sys/types.h>
420 #if HAVE_SYS_SOCKET_H
421 # include <sys/socket.h>
426 if test "x$ac_system" = "xLinux"; then
428 AC_CHECK_HEADERS([linux/major.h])
430 # For md module (Linux only)
431 AC_CHECK_HEADERS([linux/raid/md_u.h],
432 [have_linux_raid_md_u_h="yes"],
433 [have_linux_raid_md_u_h="no"],
435 #include <sys/ioctl.h>
436 #include <linux/major.h>
437 #include <linux/types.h>
440 AC_CHECK_HEADERS([sys/sysmacros.h])
442 AC_CHECK_HEADERS([linux/wireless.h],
443 [have_linux_wireless_h="yes"],
444 [have_linux_wireless_h="no"],
447 #include <sys/ioctl.h>
448 #include <sys/socket.h>
452 AC_CHECK_HEADERS([linux/if.h], [], [],
455 # include <sys/types.h>
457 #if HAVE_SYS_SOCKET_H
458 # include <sys/socket.h>
463 AC_CHECK_HEADERS([linux/inet_diag.h], [], [],
466 # include <sys/types.h>
468 #if HAVE_SYS_SOCKET_H
469 # include <sys/socket.h>
474 AC_CHECK_HEADERS([linux/netdevice.h], [], [],
477 # include <sys/types.h>
479 #if HAVE_SYS_SOCKET_H
480 # include <sys/socket.h>
483 # include <linux/if.h>
489 AC_CHECK_HEADERS([linux/sockios.h],
490 [have_linux_sockios_h="yes"],
491 [have_linux_sockios_h="no"],
494 # include <sys/ioctl.h>
502 AC_CHECK_HEADERS([linux/ethtool.h],
503 [have_linux_ethtool_h="yes"],
504 [have_linux_ethtool_h="no"],
507 # include <sys/ioctl.h>
512 #if HAVE_LINUX_SOCKIOS_H
513 # include <linux/sockios.h>
519 AC_CHECK_HEADERS_ONCE([linux/ip_vs.h])
521 # For the email plugin
522 AC_CHECK_HEADERS([linux/un.h], [], [],
524 #if HAVE_SYS_SOCKET_H
525 # include <sys/socket.h>
529 # For the turbostat plugin
530 AC_CHECK_HEADERS([cpuid.h],
531 [have_cpuid_h="yes"],
532 [have_cpuid_h="no (cpuid.h not found)"]
535 AC_CHECK_HEADERS([sys/capability.h],
536 [have_capability="yes"],
537 [have_capability="no (<sys/capability.h> not found)"]
540 if test "x$have_capability" = "xyes"; then
541 AC_CHECK_LIB([cap], [cap_get_proc],
542 [have_capability="yes"],
543 [have_capability="no (cap_get_proc() not found)"]
547 if test "x$have_capability" = "xyes"; then
548 AC_CHECK_DECL([CAP_IS_SUPPORTED],
549 [have_capability="yes"],
550 [have_capability="no (CAP_IS_SUPPORTED not found)"],
551 [[#include <sys/capability.h>]]
555 if test "x$have_capability" = "xyes"; then
556 AC_DEFINE([HAVE_CAPABILITY], [1], [Define to 1 if you have cap_get_proc() (-lcap).])
559 # For pcie_errors plugin
560 AC_CHECK_HEADERS([linux/pci_regs.h],
561 [have_pci_regs_h="yes"],
562 [have_pci_regs_h="no (linux/pci_regs.h not found)"]
566 have_linux_raid_md_u_h="no"
567 have_linux_wireless_h="no"
570 AM_CONDITIONAL([BUILD_WITH_CAPABILITY], [test "x$have_capability" = "xyes"])
572 # For the swap module
573 have_sys_swap_h="yes"
574 AC_CHECK_HEADERS([sys/swap.h vm/anon.h],
576 [have_sys_swap_h="no"],
578 #undef _FILE_OFFSET_BITS
579 #undef _LARGEFILE64_SOURCE
581 # include <sys/types.h>
584 # include <sys/param.h>
590 # For the processes plugin
592 AC_CHECK_HEADERS([sys/loadavg.h linux/config.h utmp.h utmpx.h])
595 AC_CHECK_HEADERS([sys/ucred.h], [], [],
598 # include <sys/types.h>
601 # include <sys/param.h>
606 # For mount interface
607 AC_CHECK_HEADERS([sys/mount.h], [], [],
610 # include <sys/types.h>
613 # include <sys/param.h>
620 [AS_HELP_STRING([--enable-xfs], [xfs support in df plugin @<:@default=yes@:>@])],
625 if test "x$enable_xfs" != "xno"; then
626 AC_CHECK_HEADERS([xfs/xqm.h],
629 if test "x$enable_xfs" = "xyes"; then
630 AC_MSG_ERROR([xfs/xqm.h not found])
633 [[#define _GNU_SOURCE]]
639 AC_CHECK_HEADERS([net/if_arp.h], [], [],
641 #if HAVE_SYS_SOCKET_H
642 # include <sys/socket.h>
647 AC_CHECK_HEADERS([net/ppp_defs.h])
648 AC_CHECK_HEADERS([net/if_ppp.h], [], [],
650 #if HAVE_NET_PPP_DEFS_H
651 # include <net/ppp_defs.h>
656 AC_CHECK_HEADERS([netinet/if_ether.h], [], [],
660 # include <sys/types.h>
662 #if HAVE_SYS_SOCKET_H
663 # include <sys/socket.h>
668 #if HAVE_NETINET_IN_H
669 # include <netinet/in.h>
674 AC_CHECK_HEADERS([net/pfvar.h],
675 [have_net_pfvar_h="yes"],
676 [have_net_pfvar_h="no"],
679 # include <sys/ioctl.h>
681 #if HAVE_SYS_SOCKET_H
682 # include <sys/socket.h>
687 #if HAVE_NETINET_IN_H
688 # include <netinet/in.h>
693 # For the multimeter plugin
694 AC_CHECK_HEADERS([termios.h],
695 [have_termios_h="yes"],
696 [have_termios_h="no"]
699 # For cpusleep plugin
700 AC_CACHE_CHECK([whether clock_boottime and clock_monotonic are supported],
701 [c_cv_have_clock_boottime_monotonic],
705 [[#include <time.h>]],
707 struct timespec b, m;
708 clock_gettime(CLOCK_BOOTTIME, &b );
709 clock_gettime(CLOCK_MONOTONIC, &m );
713 [c_cv_have_clock_boottime_monotonic="yes"],
714 [c_cv_have_clock_boottime_monotonic="no"]
721 # Checks for typedefs, structures, and compiler characteristics.
732 [AC_LANG_SOURCE([[int main(void){}]]) ]
734 $CXX -c conftest.cpp $CXXFLAGS $@ > /dev/null 2> /dev/null
742 # Checks for library functions.
744 AC_CHECK_FUNCS_ONCE([ \
772 if test "x$GCC" = "xyes"; then
773 SAVE_CFLAGS="$CFLAGS"
774 CFLAGS="$CFLAGS -Wall -Werror"
776 SAVE_LDFLAGS="$LDFLAGS"
778 if test "x$ac_system" = "xWindows"; then
779 # This is exported from build.sh
780 LDFLAGS="$LDFLAGS -L${GNULIB_DIR}"
783 AC_CACHE_CHECK([for strtok_r],
784 [c_cv_have_strtok_r_default],
795 char buffer[] = "foo,bar,baz";
802 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
805 printf ("token = %s;\n", token);
810 [c_cv_have_strtok_r_default="yes"],
811 [c_cv_have_strtok_r_default="no"]
816 if test "x$c_cv_have_strtok_r_default" = "xno"; then
817 CFLAGS="$CFLAGS -D_REENTRANT=1"
819 AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
820 [c_cv_have_strtok_r_reentrant],
831 char buffer[] = "foo,bar,baz";
838 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
841 printf ("token = %s;\n", token);
846 [c_cv_have_strtok_r_reentrant="yes"],
847 [AC_MSG_FAILURE([strtok_r is not available. Please file a bugreport!])]
853 CFLAGS="$SAVE_CFLAGS"
854 LDFLAGS="$SAVE_LDFLAGS"
855 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"; then
856 CFLAGS="$CFLAGS -D_REENTRANT=1"
859 AC_CHECK_FUNCS([socket],
862 AC_CHECK_LIB([socket], [socket],
863 [socket_needs_socket="yes"],
865 AC_CHECK_LIB([gnu], [rpl_socket],
866 [socket_needs_gnulib="yes"],
867 [AC_MSG_ERROR([cannot find socket() in libsocket])]
873 AM_CONDITIONAL([BUILD_WITH_LIBSOCKET], [test "x$socket_needs_socket" = "xyes"])
874 AM_CONDITIONAL([BUILD_WITH_GNULIB], [test "x$socket_needs_gnulib" = "xyes"])
876 clock_gettime_needs_posix4="no"
877 AC_CHECK_FUNCS([clock_gettime],
878 [have_clock_gettime="yes"],
879 [have_clock_gettime="no"]
882 if test "x$have_clock_gettime" = "xno"; then
883 AC_CHECK_LIB([rt], [clock_gettime],
885 clock_gettime_needs_rt="yes"
886 have_clock_gettime="yes"
891 if test "x$have_clock_gettime" = "xno"; then
892 AC_CHECK_LIB([posix4], [clock_gettime],
894 clock_gettime_needs_posix4="yes"
895 have_clock_gettime="yes"
900 if test "x$have_clock_gettime" = "xyes"; then
901 AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Define if the clock_gettime(2) function is available.])
904 AC_CHECK_FUNCS([nanosleep], [],
905 AC_CHECK_LIB([rt], [nanosleep],
906 [nanosleep_needs_rt="yes"],
908 AC_CHECK_LIB([posix4], [nanosleep],
909 [nanosleep_needs_posix4="yes"],
910 [AC_MSG_ERROR([cannot find nanosleep])]
916 AM_CONDITIONAL([BUILD_WITH_LIBRT], [test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes"])
917 AM_CONDITIONAL([BUILD_WITH_LIBPOSIX4], [test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes"])
919 AC_CHECK_FUNCS([getifaddrs], [have_getifaddrs="yes"], [have_getifaddrs="no"])
920 AC_CHECK_FUNCS([getloadavg], [have_getloadavg="yes"], [have_getloadavg="no"])
921 AC_CHECK_FUNCS([getutent], [have_getutent="yes"], [have_getutent="no"])
922 AC_CHECK_FUNCS([getutxent], [have_getutxent="yes"], [have_getutxent="no"])
923 AC_CHECK_FUNCS([host_statistics], [have_host_statistics="yes"], [have_host_statistics="no"])
924 AC_CHECK_FUNCS([processor_info], [have_processor_info="yes"], [have_processor_info="no"])
925 AC_CHECK_FUNCS([statfs], [have_statfs="yes"], [have_statfs="no"])
926 AC_CHECK_FUNCS([statvfs], [have_statvfs="yes"], [have_statvfs="no"])
927 AC_CHECK_FUNCS([sysctl], [have_sysctl="yes"], [have_sysctl="no"])
928 AC_CHECK_FUNCS([sysctlbyname], [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
929 AC_CHECK_FUNCS([syslog], [have_syslog="yes"], [have_syslog="no"])
930 AC_CHECK_FUNCS([thread_info], [have_thread_info="yes"], [have_thread_info="no"])
932 # Check for strptime {{{
933 if test "x$GCC" = "xyes"; then
934 SAVE_CFLAGS="$CFLAGS"
935 CFLAGS="$CFLAGS -Wall -Wextra -Werror"
938 AC_CHECK_FUNCS([strptime], [have_strptime="yes"], [have_strptime="no"])
939 if test "x$have_strptime" = "xyes"; then
940 AC_CACHE_CHECK([whether strptime is exported by default],
941 [c_cv_have_strptime_default],
946 [[#include <time.h>]],
949 (void)strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
953 [c_cv_have_strptime_default="yes"],
954 [c_cv_have_strptime_default="no"])
959 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"; then
960 AC_CACHE_CHECK([whether strptime needs standards mode],
961 [c_cv_have_strptime_standards],
967 #ifndef _ISOC99_SOURCE
968 # define _ISOC99_SOURCE 1
970 #ifndef _POSIX_C_SOURCE
971 # define _POSIX_C_SOURCE 200112L
973 #ifndef _XOPEN_SOURCE
974 # define _XOPEN_SOURCE 500
980 (void)strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
984 [c_cv_have_strptime_standards="yes"],
985 [c_cv_have_strptime_standards="no"]
990 if test "x$c_cv_have_strptime_standards" = "xyes"; then
991 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], [1],
992 [Set to true if strptime is only exported in X/Open mode (GNU libc).]
999 if test "x$GCC" = "xyes"; then
1000 CFLAGS="$SAVE_CFLAGS"
1002 # }}} Check for strptime
1004 # Check for timegm {{{
1006 # These checks need -Werror because implicit function declarations are only a
1008 SAVE_CFLAGS="$CFLAGS"
1009 CFLAGS="$CFLAGS -Werror"
1011 AC_CACHE_CHECK([for timegm],
1016 #if STRPTIME_NEEDS_STANDARDS
1017 # ifndef _ISOC99_SOURCE
1018 # define _ISOC99_SOURCE 1
1020 # ifndef _POSIX_C_SOURCE
1021 # define _POSIX_C_SOURCE 200112L
1023 # ifndef _XOPEN_SOURCE
1024 # define _XOPEN_SOURCE 500
1030 time_t t = timegm(&(struct tm){0});
1031 if (t == ((time_t) -1)) {
1036 [c_cv_have_timegm="yes"],
1037 [c_cv_have_timegm="no"]
1041 if test "x$c_cv_have_timegm" != "xyes"
1043 AC_CACHE_CHECK([for timegm with _BSD_SOURCE],
1044 [c_cv_have_timegm_bsd],
1048 #if STRPTIME_NEEDS_STANDARDS
1049 # ifndef _ISOC99_SOURCE
1050 # define _ISOC99_SOURCE 1
1052 # ifndef _POSIX_C_SOURCE
1053 # define _POSIX_C_SOURCE 200112L
1055 # ifndef _XOPEN_SOURCE
1056 # define _XOPEN_SOURCE 500
1060 # define _BSD_SOURCE 1
1065 time_t t = timegm(&(struct tm){0});
1066 if (t == ((time_t) -1)) {
1071 [c_cv_have_timegm_bsd="yes"
1072 c_cv_have_timegm="yes"],
1073 [c_cv_have_timegm_bsd="no"]
1078 if test "x$c_cv_have_timegm" = "xyes"
1080 AC_DEFINE(HAVE_TIMEGM, 1, [Define if the timegm(3) function is available.])
1081 if test "x$c_cv_have_timegm_bsd" = "xyes"
1083 AC_DEFINE(TIMEGM_NEEDS_BSD, 1, [Set to true if timegm is only exported in BSD mode.])
1087 CFLAGS="$SAVE_CFLAGS"
1088 # }}} Check for timegm
1090 AC_MSG_CHECKING([for sysctl kern.cp_times])
1091 if test -x /sbin/sysctl; then
1092 /sbin/sysctl kern.cp_times >/dev/null 2>&1
1093 if test $? -eq 0; then
1094 AC_MSG_RESULT([yes])
1095 AC_DEFINE([HAVE_SYSCTL_KERN_CP_TIMES], [1], [Define if sysctl supports kern.cp_times])
1103 AC_MSG_CHECKING([for sysctl kern.cp_time])
1104 if test -x /sbin/sysctl; then
1105 /sbin/sysctl kern.cp_time >/dev/null 2>&1
1108 AC_MSG_RESULT([yes])
1109 AC_DEFINE([HAVE_SYSCTL_KERN_CP_TIME], [1], [Define if sysctl supports kern.cp_time])
1117 AC_CHECK_FUNCS([swapctl], [have_swapctl="yes"], [have_swapctl="no"])
1118 if test "x$have_swapctl" = "xyes"; then
1119 AC_CACHE_CHECK([whether swapctl takes two arguments],
1120 [c_cv_have_swapctl_two_args],
1126 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1127 # undef _FILE_OFFSET_BITS
1128 # undef _LARGEFILE64_SOURCE
1130 #include <sys/stat.h>
1131 #include <sys/param.h>
1132 #include <sys/swap.h>
1135 [[int num = swapctl(0, NULL);]]
1138 [c_cv_have_swapctl_two_args="yes"],
1139 [c_cv_have_swapctl_two_args="no"]
1144 AC_CACHE_CHECK([whether swapctl takes three arguments],
1145 [c_cv_have_swapctl_three_args],
1151 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1152 # undef _FILE_OFFSET_BITS
1153 # undef _LARGEFILE64_SOURCE
1155 #include <sys/stat.h>
1156 #include <sys/param.h>
1157 #include <sys/swap.h>
1160 [[int num = swapctl(0, NULL, 0);]]
1163 [c_cv_have_swapctl_three_args="yes"],
1164 [c_cv_have_swapctl_three_args="no"]
1170 # Check for different versions of `swapctl' here..
1171 if test "x$have_swapctl" = "xyes"; then
1172 if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
1173 AC_DEFINE([HAVE_SWAPCTL_TWO_ARGS], [1], [Define if the function swapctl exists and takes two arguments.])
1176 if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
1177 AC_DEFINE([HAVE_SWAPCTL_THREE_ARGS], [1], [Define if the function swapctl exists and takes three arguments.])
1182 AC_ARG_WITH([nan-emulation],
1183 [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
1185 if test "x$withval" = "xno"; then
1187 else if test "x$withval" = "xyes"; then
1196 if test "x$nan_type" = "xnone"; then
1197 AC_CACHE_CHECK([whether NAN is defined by default],
1198 [c_cv_have_nan_default],
1206 static double foo = NAN;
1215 [c_cv_have_nan_default="yes"],
1216 [c_cv_have_nan_default="no"]
1222 if test "x$c_cv_have_nan_default" = "xyes"; then
1226 if test "x$nan_type" = "xnone"; then
1227 AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
1228 [c_cv_have_nan_isoc],
1235 #define __USE_ISOC99 1
1237 static double foo = NAN;
1246 [c_cv_have_nan_isoc="yes"],
1247 [c_cv_have_nan_isoc="no"]
1253 if test "x$c_cv_have_nan_isoc" = "xyes"; then
1257 if test "x$nan_type" = "xnone"; then
1258 SAVE_LDFLAGS="$LDFLAGS"
1259 LDFLAGS="$LDFLAGS -lm"
1260 AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1261 [c_cv_have_nan_zero],
1272 #define NAN (0.0 / 0.0)
1274 # define isnan(f) ((f) != (f))
1276 static double foo = NAN;
1285 [c_cv_have_nan_zero="yes"],
1286 [c_cv_have_nan_zero="no"]
1290 LDFLAGS=$SAVE_LDFLAGS
1293 if test "x$c_cv_have_nan_zero" = "xyes"; then
1297 if test "x$nan_type" = "xdefault"; then
1298 AC_DEFINE([NAN_STATIC_DEFAULT], [1],
1299 [Define if NAN is defined by default and can initialize static variables.]
1301 else if test "x$nan_type" = "xisoc99"; then
1302 AC_DEFINE([NAN_STATIC_ISOC], [1],
1303 [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.]
1305 else if test "x$nan_type" = "xzero"; then
1306 AC_DEFINE([NAN_ZERO_ZERO], [1],
1307 [Define if NAN can be defined as (0.0 / 0.0)]
1310 AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1313 AC_ARG_WITH([fp-layout],
1315 AS_HELP_STRING([--with-fp-layout],
1316 [set the memory layout of doubles. For crosscompiling only.]
1320 if test "x$withval" = "xnothing"; then
1321 fp_layout_type="nothing"
1322 else if test "x$withval" = "xendianflip"; then
1323 fp_layout_type="endianflip"
1324 else if test "x$withval" = "xintswap"; then
1325 fp_layout_type="intswap"
1327 AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1330 [fp_layout_type="unknown"]
1333 if test "x$fp_layout_type" = "xunknown"; then
1334 AC_CACHE_CHECK([if doubles are stored in x86 representation],
1335 [c_cv_fp_layout_need_nothing],
1345 #include <inttypes.h>
1346 #include <stdbool.h>
1355 memcpy ((void *) &i0, (void *) &d, 8);
1358 memcpy ((void *) c, (void *) &i1, 8);
1360 if ((c[0] == 0x2f) && (c[1] == 0x25)
1361 && (c[2] == 0xc0) && (c[3] == 0xc7)
1362 && (c[4] == 0x43) && (c[5] == 0x2b)
1363 && (c[6] == 0x1f) && (c[7] == 0x5b))
1369 [c_cv_fp_layout_need_nothing="yes"],
1370 [c_cv_fp_layout_need_nothing="no"]
1376 if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1377 fp_layout_type="nothing"
1380 if test "x$fp_layout_type" = "xunknown"; then
1381 AC_CACHE_CHECK([if endianflip converts to x86 representation],
1382 [c_cv_fp_layout_need_endianflip],
1392 #include <inttypes.h>
1393 #include <stdbool.h>
1394 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1395 (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1396 (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1397 (((uint64_t)(A) & 0x000000ff00000000LL) >> 8) | \
1398 (((uint64_t)(A) & 0x00000000ff000000LL) << 8) | \
1399 (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1400 (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1401 (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1410 memcpy ((void *) &i0, (void *) &d, 8);
1412 i1 = endianflip (i0);
1413 memcpy ((void *) c, (void *) &i1, 8);
1415 if ((c[0] == 0x2f) && (c[1] == 0x25)
1416 && (c[2] == 0xc0) && (c[3] == 0xc7)
1417 && (c[4] == 0x43) && (c[5] == 0x2b)
1418 && (c[6] == 0x1f) && (c[7] == 0x5b))
1424 [c_cv_fp_layout_need_endianflip="yes"],
1425 [c_cv_fp_layout_need_endianflip="no"]
1431 if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1432 fp_layout_type="endianflip"
1435 if test "x$fp_layout_type" = "xunknown"; then
1436 AC_CACHE_CHECK([if intswap converts to x86 representation],
1437 [c_cv_fp_layout_need_intswap],
1447 #include <inttypes.h>
1448 #include <stdbool.h>
1449 #define intswap(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1450 (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1459 memcpy ((void *) &i0, (void *) &d, 8);
1462 memcpy ((void *) c, (void *) &i1, 8);
1464 if ((c[0] == 0x2f) && (c[1] == 0x25)
1465 && (c[2] == 0xc0) && (c[3] == 0xc7)
1466 && (c[4] == 0x43) && (c[5] == 0x2b)
1467 && (c[6] == 0x1f) && (c[7] == 0x5b))
1473 [c_cv_fp_layout_need_intswap="yes"],
1474 [c_cv_fp_layout_need_intswap="no"]
1480 if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1481 fp_layout_type="intswap"
1484 if test "x$fp_layout_type" = "xnothing"; then
1485 AC_DEFINE([FP_LAYOUT_NEED_NOTHING], [1],
1486 [Define if doubles are stored in x86 representation.]
1488 else if test "x$fp_layout_type" = "xendianflip"; then
1489 AC_DEFINE([FP_LAYOUT_NEED_ENDIANFLIP], [1],
1490 [Define if endianflip is needed to convert to x86 representation.]
1492 else if test "x$fp_layout_type" = "xintswap"; then
1493 AC_DEFINE([FP_LAYOUT_NEED_INTSWAP], [1],
1494 [Define if intswap is needed to convert to x86 representation.]
1497 AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1500 # For cpusleep plugin
1501 AC_CACHE_CHECK([whether clock_boottime and clock_monotonic are supported],
1502 [c_cv_have_clock_boottime_monotonic],
1506 [[#include <time.h>]],
1508 struct timespec b, m;
1509 clock_gettime(CLOCK_BOOTTIME, &b );
1510 clock_gettime(CLOCK_MONOTONIC, &m );
1514 [c_cv_have_clock_boottime_monotonic="yes"],
1515 [c_cv_have_clock_boottime_monotonic="no"]
1520 # --with-useragent {{{
1521 AC_ARG_WITH([useragent],
1522 [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1524 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
1525 AC_DEFINE_UNQUOTED([COLLECTD_USERAGENT], ["$withval"], [User agent for http requests])
1532 # --with-data-max-name-len {{{
1533 AC_ARG_WITH([data-max-name-len],
1534 [AS_HELP_STRING([--with-data-max-name-len@<:@=VALUE@:>@], [Maximum length of data buffers])],
1536 if test "x$withval" != "x" && test $withval -gt 0; then
1537 AC_DEFINE_UNQUOTED([DATA_MAX_NAME_LEN], [$withval], [Maximum length of data buffers])
1539 AC_MSG_ERROR([DATA_MAX_NAME_LEN must be a positive integer -- $withval given])
1542 [AC_DEFINE([DATA_MAX_NAME_LEN], [128], [Maximum length of data buffers])]
1546 AC_CHECK_FUNCS([getfsstat], [have_getfsstat="yes"], [have_getfsstat="no"])
1547 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"], [have_getvfsstat="no"])
1548 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"], [have_listmntent="no"])
1549 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"], [have_getmntent_r="no"])
1551 AC_CHECK_FUNCS(getmntent, [have_getmntent="libc"], [have_getmntent="no"])
1552 if test "x$have_getmntent" = "xno"; then
1553 AC_CHECK_LIB([sun], [getmntent],
1554 [have_getmntent="sun"],
1555 [have_gemntent="no"]
1559 if test "x$have_getmntent" = "xno"; then
1560 AC_CHECK_LIB([seq], [getmntent],
1561 [have_getmntent="seq"],
1562 [have_getmntent="no"]
1566 if test "x$have_getmntent" = "xno"; then
1567 AC_CHECK_LIB([gen], [getmntent],
1568 [have_getmntent="gen"],
1569 [have_getmntent="no"]
1573 if test "x$have_getmntent" = "xlibc"; then
1574 AC_CACHE_CHECK([whether getmntent takes one argument],
1575 [c_cv_have_one_getmntent],
1580 [[#include "$srcdir/src/utils/mount/mount.h"]],
1584 fh = setmntent ("/etc/mtab", "r");
1585 me = getmntent (fh);
1586 return me->mnt_passno;
1590 [c_cv_have_one_getmntent="yes"],
1591 [c_cv_have_one_getmntent="no"]
1596 AC_CACHE_CHECK([whether getmntent takes two arguments],
1597 [c_cv_have_two_getmntent],
1602 [[#include "$srcdir/src/utils/mount/mount.h"]],
1607 fh = fopen ("/etc/mnttab", "r");
1608 status = getmntent (fh, &mt);
1613 [c_cv_have_two_getmntent="yes"],
1614 [c_cv_have_two_getmntent="no"]
1620 # Check for different versions of `getmntent' here..
1622 if test "x$have_getmntent" = "xlibc"; then
1623 if test "x$c_cv_have_one_getmntent" = "xyes"; then
1624 AC_DEFINE([HAVE_ONE_GETMNTENT], [1],
1625 [Define if the function getmntent exists and takes one argument.]
1629 if test "x$c_cv_have_two_getmntent" = "xyes"; then
1630 AC_DEFINE([HAVE_TWO_GETMNTENT], [1],
1631 [Define if the function getmntent exists and takes two arguments.]
1636 if test "x$have_getmntent" = "xsun"; then
1637 AC_DEFINE([HAVE_SUN_GETMNTENT], [1],
1638 [Define if the function getmntent exists. It is the version from libsun.]
1642 if test "x$have_getmntent" = "xgen"; then
1643 AC_DEFINE([HAVE_GEN_GETMNTENT], [1],
1644 [Define if the function getmntent exists. It is the version from libgen.]
1649 AC_CACHE_CHECK([whether htonll is defined],
1656 #include <inttypes.h>
1657 #include <sys/types.h>
1658 #include <netinet/in.h>
1660 [[return htonll(0);]]
1663 [c_cv_have_htonll="yes"],
1664 [c_cv_have_htonll="no"]
1669 if test "x$c_cv_have_htonll" = "xyes"; then
1670 AC_DEFINE([HAVE_HTONLL], [1], [Define if the function htonll exists.])
1673 # Check for structures
1674 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1675 [AC_DEFINE([HAVE_STRUCT_IF_DATA], [1], [Define if struct if_data exists and is usable.])],
1678 #include <sys/types.h>
1679 #include <sys/socket.h>
1684 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1685 [AC_DEFINE([HAVE_STRUCT_NET_DEVICE_STATS], [1], [Define if struct net_device_stats exists and is usable.])],
1688 #include <sys/types.h>
1689 #include <sys/socket.h>
1690 #include <linux/if.h>
1691 #include <linux/netdevice.h>
1695 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1696 [AC_DEFINE([HAVE_STRUCT_LINUX_INET_DIAG_REQ], [1], [Define if struct inet_diag_req exists and is usable.])],
1698 [[#include <linux/inet_diag.h>]]
1701 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1704 #include <netinet/in.h>
1709 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1711 AC_DEFINE([HAVE_STRUCT_KINFO_PROC_FREEBSD], [1], [Define if struct kinfo_proc exists in the FreeBSD variant.])
1712 have_struct_kinfo_proc_freebsd="yes"
1717 #include <sys/param.h>
1718 #include <sys/sysctl.h>
1719 #include <sys/user.h>
1723 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1725 AC_DEFINE([HAVE_STRUCT_KINFO_PROC_OPENBSD], [1], [Define if struct kinfo_proc exists in the OpenBSD variant.])
1726 have_struct_kinfo_proc_openbsd="yes"
1730 #include <sys/param.h>
1731 #include <sys/sysctl.h>
1736 AC_CHECK_MEMBERS([struct kinfo_proc2.p_pid, struct kinfo_proc2.p_uru_maxrss],
1738 AC_DEFINE([HAVE_STRUCT_KINFO_PROC2_NETBSD], [1], [Define if struct kinfo_proc2 exists in the NetBSD variant.])
1739 have_struct_kinfo_proc2_netbsd="yes"
1743 #include <sys/param.h>
1744 #include <sys/sysctl.h>
1749 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport],
1754 #define _DEFAULT_SOURCE
1756 #if HAVE_SYS_TYPES_H
1757 # include <sys/types.h>
1759 #if HAVE_NETINET_IN_SYSTM_H
1760 # include <netinet/in_systm.h>
1762 #if HAVE_NETINET_IN_H
1763 # include <netinet/in.h>
1765 #if HAVE_NETINET_IP_H
1766 # include <netinet/ip.h>
1768 #if HAVE_NETINET_UDP_H
1769 # include <netinet/udp.h>
1774 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source],
1779 #define _DEFAULT_SOURCE
1781 #if HAVE_SYS_TYPES_H
1782 # include <sys/types.h>
1784 #if HAVE_NETINET_IN_SYSTM_H
1785 # include <netinet/in_systm.h>
1787 #if HAVE_NETINET_IN_H
1788 # include <netinet/in.h>
1790 #if HAVE_NETINET_IP_H
1791 # include <netinet/ip.h>
1793 #if HAVE_NETINET_UDP_H
1794 # include <netinet/udp.h>
1799 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1802 [[# include <kstat.h>]]
1805 # check for pthread_setname_np
1806 SAVE_LDFLAGS="$LDFLAGS"
1807 LDFLAGS="$LDFLAGS -lpthread"
1809 AC_MSG_CHECKING([for pthread_setname_np])
1810 have_pthread_setname_np="no"
1816 #include <pthread.h>
1818 [[pthread_setname_np((pthread_t) {0}, "conftest");]]
1822 have_pthread_setname_np="yes"
1823 AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [pthread_setname_np() is available.])
1827 AC_MSG_RESULT([$have_pthread_setname_np])
1829 # check for pthread_set_name_np(3) (FreeBSD)
1830 AC_MSG_CHECKING([for pthread_set_name_np])
1831 have_pthread_set_name_np="no"
1835 [[#include <pthread_np.h>]],
1836 [[pthread_set_name_np((pthread_t) {0}, "conftest");]]
1840 have_pthread_set_name_np="yes"
1841 AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [pthread_set_name_np() is available.])
1844 AC_MSG_RESULT([$have_pthread_set_name_np])
1846 LDFLAGS="$SAVE_LDFLAGS"
1848 AC_CHECK_TYPES([struct ip6_ext],
1849 [have_ip6_ext="yes"],
1850 [have_ip6_ext="no"],
1853 #if HAVE_SYS_TYPES_H
1854 # include <sys/types.h>
1856 #if HAVE_NETINET_IN_SYSTM_H
1857 # include <netinet/in_systm.h>
1859 #if HAVE_NETINET_IN_H
1860 # include <netinet/in.h>
1862 #if HAVE_NETINET_IP6_H
1863 # include <netinet/ip6.h>
1868 if test "x$have_ip6_ext" = "xno"; then
1869 SAVE_CFLAGS="$CFLAGS"
1870 CFLAGS="$CFLAGS -DSOLARIS2=8"
1871 AC_CHECK_TYPES([struct ip6_ext],
1872 [have_ip6_ext="yes, with -DSOLARIS2=8"],
1873 [have_ip6_ext="no"],
1876 #if HAVE_SYS_TYPES_H
1877 # include <sys/types.h>
1879 #if HAVE_NETINET_IN_SYSTM_H
1880 # include <netinet/in_systm.h>
1882 #if HAVE_NETINET_IN_H
1883 # include <netinet/in.h>
1885 #if HAVE_NETINET_IP6_H
1886 # include <netinet/ip6.h>
1890 if test "x$have_ip6_ext" = "xno"; then
1891 CFLAGS="$SAVE_CFLAGS"
1896 if test "x$ac_system" = "xLinux"; then
1898 AC_CHECK_HEADERS([i2c/smbus.h],
1899 [with_libi2c_libs="-li2c"]
1901 AC_CHECK_DECL([i2c_smbus_read_i2c_block_data],
1902 [with_libi2c="yes"],
1903 [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
1906 #include <linux/i2c-dev.h>
1907 #if HAVE_I2C_SMBUS_H
1908 # include <i2c/smbus.h>
1912 BUILD_WITH_LIBI2C_LIBS="$with_libi2c_libs"
1913 AC_SUBST([BUILD_WITH_LIBI2C_LIBS])
1915 with_libi2c="no (Linux only)"
1919 # Checks for libraries begin here
1922 # Check for libpthread
1924 AC_CHECK_LIB([pthread],
1927 [AC_MSG_ERROR([Symbol 'pthread_create' not found in libpthread])],
1930 PTHREAD_LIBS="$LIBS"
1932 AC_SUBST([PTHREAD_LIBS])
1934 AC_CHECK_HEADERS([pthread.h],
1936 [AC_MSG_ERROR([pthread.h not found])]
1939 m4_divert_once([HELP_WITH], [
1940 Collectd additional packages:])
1942 if test "x$ac_system" = "xAIX"; then
1946 with_perfstat="no (AIX only)"
1947 with_procinfo="no (AIX only)"
1950 if test "x$with_perfstat" = "xyes"; then
1951 AC_CHECK_LIB([perfstat], [perfstat_reset],
1952 [with_perfstat="yes"],
1953 [with_perfstat="no (perfstat not found)"]
1957 if test "x$with_perfstat" = "xyes"; then
1958 AC_DEFINE([HAVE_PERFSTAT], [1], [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1959 # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1960 AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled],
1963 [[#include <libperfstat.h]]
1965 if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"; then
1966 AC_DEFINE([PERFSTAT_SUPPORTS_DONATION], [1], [Define to 1 if your version of the 'perfstat' library supports donation])
1969 AM_CONDITIONAL([BUILD_WITH_PERFSTAT], [test "x$with_perfstat" = "xyes"])
1971 # Processes plugin under AIX.
1972 if test "x$with_procinfo" = "xyes"; then
1973 AC_CHECK_HEADERS([procinfo.h],
1974 [AC_DEFINE([HAVE_PROCINFO_H], [1], [Define to 1 if you have the procinfo.h])],
1975 [with_procinfo="no (procinfo.h not found)"]
1979 if test "x$ac_system" = "xSolaris"; then
1983 with_kstat="no (Solaris only)"
1984 with_devinfo="no (Solaris only)"
1987 if test "x$with_kstat" = "xyes"; then
1988 AC_CHECK_LIB([kstat], [kstat_open],
1990 [with_kstat="no (libkstat not found)"]
1994 if test "x$with_kstat" = "xyes"; then
1995 AC_CHECK_LIB([devinfo], [di_init],
1996 [with_devinfo="yes"],
1997 [with_devinfo="no (not found)"]
1999 AC_CHECK_HEADERS([kstat.h],
2000 [AC_DEFINE(HAVE_LIBKSTAT, [1], [Define to 1 if you have the 'kstat' library (-lkstat)])],
2001 [with_kstat="no (kstat.h not found)"]
2005 AM_CONDITIONAL([BUILD_WITH_LIBDEVINFO], [test "x$with_devinfo" = "xyes"])
2006 AM_CONDITIONAL([BUILD_WITH_LIBKSTAT], [test "x$with_kstat" = "xyes"])
2008 if test "x$ac_system" = "xDarwin"; then
2013 AM_CONDITIONAL([BUILD_WITH_LIBIOKIT], [test "x$with_libiokit" = "xyes"])
2016 AC_CHECK_LIB([kvm], [kvm_getprocs],
2017 [with_kvm_getprocs="yes"],
2018 [with_kvm_getprocs="no"]
2021 if test "x$with_kvm_getprocs" = "xyes"; then
2022 AC_DEFINE([HAVE_LIBKVM_GETPROCS], [1],
2023 [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)]
2028 AM_CONDITIONAL([BUILD_WITH_LIBKVM_GETPROCS], [test "x$with_kvm_getprocs" = "xyes"])
2030 AC_CHECK_LIB([kvm], [kvm_getswapinfo],
2031 [with_kvm_getswapinfo="yes"],
2032 [with_kvm_getswapinfo="no"]
2035 if test "x$with_kvm_getswapinfo" = "xyes"; then
2036 AC_DEFINE([HAVE_LIBKVM_GETSWAPINFO], [1],
2037 [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)]
2042 AM_CONDITIONAL([BUILD_WITH_LIBKVM_GETSWAPINFO], [test "x$with_kvm_getswapinfo" = "xyes"])
2044 AC_CHECK_LIB([kvm], [kvm_nlist],
2045 [with_kvm_nlist="yes"],
2046 [with_kvm_nlist="no"]
2049 if test "x$with_kvm_nlist" = "xyes"; then
2050 AC_CHECK_HEADERS([bsd/nlist.h nlist.h])
2051 AC_DEFINE([HAVE_LIBKVM_NLIST], [1],
2052 [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)]
2057 AM_CONDITIONAL([BUILD_WITH_LIBKVM_NLIST], [test "x$with_kvm_nlist" = "xyes"])
2059 AC_CHECK_LIB([kvm], [kvm_openfiles],
2060 [with_kvm_openfiles="yes"],
2061 [with_kvm_openfiles="no"]
2064 if test "x$with_kvm_openfiles" = "xyes"; then
2065 AC_DEFINE([HAVE_LIBKVM_NLIST], [1],
2066 [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)]
2073 [AS_HELP_STRING([--with-cuda@<:@=PREFIX@:>@], [Path to cuda.])],
2075 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2076 with_cuda_cppflags="-I$withval/include"
2077 with_cuda_ldflags="-I$withval/lib"
2080 with_cuda="$withval"
2086 if test "x$with_cuda" = "xyes"; then
2087 SAVE_CPPFLAGS="$CPPFLAGS"
2088 CPPFLAGS="$CPPFLAGS $with_cuda_cppflags"
2090 AC_CHECK_HEADERS([nvml.h],
2092 [with_cuda="no (nvml.h not found)"]
2095 CPPFLAGS="$SAVE_CPPFLAGS"
2098 if test "x$with_cuda" = "xyes"; then
2099 BUILD_WITH_CUDA_CPPFLAGS="$CUDA_CPPFLAGS"
2100 BUILD_WITH_CUDA_LDFLAGS="$CUDA_LDFLAGS"
2101 BUILD_WITH_CUDA_LIBS="-lnvidia-ml"
2104 AC_SUBST([BUILD_WITH_CUDA_CPPFLAGS])
2105 AC_SUBST([BUILD_WITH_CUDA_LDFLAGS])
2106 AC_SUBST([BUILD_WITH_CUDA_LIBS])
2110 # --with-libaquaero5 {{{
2111 AC_ARG_WITH([libaquaero5],
2112 [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
2114 if test "x$withval" = "xyes"; then
2115 with_libaquaero5="yes"
2116 else if test "x$withval" = "xno"; then
2117 with_libaquaero5="no"
2119 with_libaquaero5="yes"
2120 LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
2121 LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
2124 [with_libaquaero5="yes"]
2127 SAVE_CPPFLAGS="$CPPFLAGS"
2128 SAVE_LDFLAGS="$LDFLAGS"
2129 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
2130 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
2132 if test "x$with_libaquaero5" = "xyes"; then
2133 AC_CHECK_HEADERS([libaquaero5.h],
2134 [with_libaquaero5="yes"],
2135 [with_libaquaero5="no (libaquaero5.h not found)"]
2139 if test "x$with_libaquaero5" = "xyes"; then
2140 AC_CHECK_LIB([aquaero5], libaquaero5_poll,
2141 [with_libaquaero5="yes"],
2142 [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"]
2146 CPPFLAGS="$SAVE_CPPFLAGS"
2147 LDFLAGS="$SAVE_LDFLAGS"
2149 if test "x$with_libaquaero5" = "xyes"; then
2150 BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
2151 BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
2153 AC_SUBST([BUILD_WITH_LIBAQUAERO5_CFLAGS])
2154 AC_SUBST([BUILD_WITH_LIBAQUAERO5_LDFLAGS])
2157 # --with-libhiredis {{{
2158 AC_ARG_WITH([libhiredis],
2159 [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@], [Path to libhiredis.])],
2161 if test "x$withval" = "xyes"; then
2162 with_libhiredis="yes"
2163 else if test "x$withval" = "xno"; then
2164 with_libhiredis="no"
2166 with_libhiredis="yes"
2167 LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
2168 LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
2171 [with_libhiredis="yes"]
2174 SAVE_CPPFLAGS="$CPPFLAGS"
2175 SAVE_LDFLAGS="$LDFLAGS"
2176 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
2177 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
2179 if test "x$with_libhiredis" = "xyes"; then
2180 AC_CHECK_HEADERS([hiredis/hiredis.h],
2181 [with_libhiredis="yes"],
2182 [with_libhiredis="no (hiredis.h not found)"]
2186 if test "x$with_libhiredis" = "xyes"; then
2187 AC_CHECK_LIB([hiredis], [redisCommand],
2188 [with_libhiredis="yes"],
2189 [with_libhiredis="no (symbol 'redisCommand' not found)"]
2193 CPPFLAGS="$SAVE_CPPFLAGS"
2194 LDFLAGS="$SAVE_LDFLAGS"
2196 if test "x$with_libhiredis" = "xyes"; then
2197 BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
2198 BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
2201 AC_SUBST([BUILD_WITH_LIBHIREDIS_CPPFLAGS])
2202 AC_SUBST([BUILD_WITH_LIBHIREDIS_LDFLAGS])
2205 # --with-libcurl {{{
2206 with_curl_config="curl-config"
2209 AC_ARG_WITH(libcurl,
2210 [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
2212 if test "x$withval" = "xno"; then
2214 else if test "x$withval" = "xyes"; then
2217 if test -f "$withval" && test -x "$withval"; then
2218 with_curl_config="$withval"
2220 else if test -x "$withval/bin/curl-config"; then
2221 with_curl_config="$withval/bin/curl-config"
2227 [with_libcurl="yes"]
2230 if test "x$with_libcurl" = "xyes"; then
2231 with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
2232 curl_config_status=$?
2234 if test $curl_config_status -ne 0; then
2235 with_libcurl="no ($with_curl_config failed)"
2237 SAVE_CPPFLAGS="$CPPFLAGS"
2238 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
2240 AC_CHECK_HEADERS([curl/curl.h],
2241 [with_libcurl="yes"],
2242 [with_libcurl="no (curl/curl.h not found)"]
2245 CPPFLAGS="$SAVE_CPPFLAGS"
2249 if test "x$with_libcurl" = "xyes"; then
2250 with_curl_libs=`$with_curl_config --libs 2>/dev/null`
2251 curl_config_status=$?
2253 if test $curl_config_status -ne 0; then
2254 with_libcurl="no ($with_curl_config failed)"
2256 AC_CHECK_LIB([curl], [curl_easy_init],
2257 [with_libcurl="yes"],
2258 [with_libcurl="no (symbol 'curl_easy_init' not found)"],
2262 AC_CHECK_DECL([CURLOPT_USERNAME],
2263 [have_curlopt_username="yes"],
2264 [have_curlopt_username="no"],
2265 [[#include <curl/curl.h>]]
2268 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
2269 [have_curlopt_timeout="yes"],
2270 [have_curlopt_timeout="no"],
2271 [[#include <curl/curl.h>]]
2276 if test "x$with_libcurl" = "xyes"; then
2277 SAVE_CPPFLAGS="$CPPFLAGS"
2278 SAVE_LDFLAGS="$LDFLAGS"
2279 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
2280 LDFLAGS="$LDFLAGS $with_curl_libs"
2281 AC_CACHE_CHECK([for CURLINFO_APPCONNECT_TIME],
2282 [c_cv_have_curlinfo_appconnect_time],
2287 [[#include <curl/curl.h>]],
2289 int val = CURLINFO_APPCONNECT_TIME;
2294 [c_cv_have_curlinfo_appconnect_time="yes"],
2295 [c_cv_have_curlinfo_appconnect_time="no"]
2299 CPPFLAGS="$SAVE_CPPFLAGS"
2300 LDFLAGS="$SAVE_LDFLAGS"
2303 if test "x$c_cv_have_curlinfo_appconnect_time" = "xyes"; then
2304 AC_DEFINE([HAVE_CURLINFO_APPCONNECT_TIME], [1],
2305 [Define if curl.h defines CURLINFO_APPCONNECT_TIME.]
2309 if test "x$with_libcurl" = "xyes"; then
2310 BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
2311 BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
2313 if test "x$have_curlopt_username" = "xyes"; then
2314 AC_DEFINE([HAVE_CURLOPT_USERNAME], [1],
2315 [Define if libcurl supports CURLOPT_USERNAME option.]
2319 if test "x$have_curlopt_timeout" = "xyes"; then
2320 AC_DEFINE([HAVE_CURLOPT_TIMEOUT_MS], [1],
2321 [Define if libcurl supports CURLOPT_TIMEOUT_MS option.]
2326 AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
2327 AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
2329 AM_CONDITIONAL([BUILD_WITH_LIBCURL], [test "x$with_libcurl" = "xyes"])
2333 AC_ARG_WITH([libdbi],
2334 [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
2336 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2337 with_libdbi_cppflags="-I$withval/include"
2338 with_libdbi_ldflags="-L$withval/lib"
2341 with_libdbi="$withval"
2347 if test "x$with_libdbi" = "xyes"; then
2348 SAVE_CPPFLAGS="$CPPFLAGS"
2349 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2351 AC_CHECK_HEADERS([dbi/dbi.h],
2352 [with_libdbi="yes"],
2353 [with_libdbi="no (dbi/dbi.h not found)"]
2356 CPPFLAGS="$SAVE_CPPFLAGS"
2359 if test "x$with_libdbi" = "xyes"; then
2360 SAVE_LDFLAGS="$LDFLAGS"
2361 LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
2363 AC_CHECK_LIB([dbi], [dbi_initialize],
2364 [with_libdbi="yes"],
2365 [with_libdbi="no (Symbol 'dbi_initialize' not found)"]
2368 LDFLAGS="$SAVE_LDFLAGS"
2371 BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
2372 BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
2373 BUILD_WITH_LIBDBI_LIBS="-ldbi"
2374 AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
2375 AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
2376 AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
2379 # --with-libdpdk {{{
2380 AC_ARG_VAR([LIBDPDK_CPPFLAGS], [Preprocessor flags for libdpdk])
2381 AC_ARG_VAR([LIBDPDK_CFLAGS], [Compiler flags for libdpdk])
2382 AC_ARG_VAR([LIBDPDK_LDFLAGS], [Linker flags for libdpdk])
2383 AC_ARG_VAR([LIBDPDK_LIBS], [Libraries to link for libdpdk])
2385 AC_ARG_WITH([libdpdk],
2386 [AS_HELP_STRING([--without-libdpdk], [Disable libdpdk.])],
2387 [with_libdpdk="$withval"],
2388 [with_libdpdk="yes"]
2391 if test "x$with_libdpdk" != "xno"; then
2392 PKG_CHECK_MODULES([DPDK], [libdpdk], [],
2393 [AC_MSG_NOTICE([no DPDK pkg-config, using defaults])])
2394 if test "x$LIBDPDK_CPPFLAGS" = "x"; then
2395 LIBDPDK_CPPFLAGS="-I/usr/include/dpdk"
2397 if test "x$LIBDPDK_CFLAGS" = "x"; then
2398 LIBDPDK_CFLAGS="$DPDK_CFLAGS"
2399 LIBDPDK_CPPFLAGS="$LIBDPDK_CPPFLAGS $DPDK_CFLAGS"
2401 if test "x$LIBDPDK_LIBS" = "x"; then
2402 if test "x$DPDK_LIBS" != "x"; then
2403 LIBDPDK_LIBS="$DPDK_LIBS"
2405 LIBDPDK_LIBS="-ldpdk"
2408 SAVE_CPPFLAGS="$CPPFLAGS"
2409 CPPFLAGS="$LIBDPDK_CPPFLAGS $CPPFLAGS"
2410 SAVE_CFLAGS="$CFLAGS"
2411 CFLAGS="$LIBDPDK_CFLAGS $CFLAGS"
2412 AC_CHECK_HEADERS([rte_config.h],
2419 #include <rte_version.h>
2420 #if RTE_VERSION < RTE_VERSION_NUM(16,7,0,0)
2421 #error "required DPDK >= 16.07"
2426 [dpdk_keepalive="yes"],
2427 [dpdk_keepalive="no (DPDK version < 16.07)"]
2430 [with_libdpdk="no (rte_config.h not found)"]
2432 CPPFLAGS="$SAVE_CPPFLAGS"
2433 CFLAGS="$SAVE_CFLAGS"
2436 if test "x$with_libdpdk" = "xyes"; then
2438 LIBS="$LIBDPDK_LIBS $LIBS"
2439 SAVE_LDFLAGS="$LDFLAGS"
2440 LDFLAGS="$LIBDPDK_LDFLAGS $LDFLAGS"
2441 SAVE_CPPFLAGS="$CPPFLAGS"
2442 CPPFLAGS="$LIBDPDK_CPPFLAGS $CPPFLAGS"
2443 SAVE_CFLAGS="$CFLAGS"
2444 CFLAGS="$LIBDPDK_CFLAGS $CFLAGS"
2449 #include <rte_eal.h>
2451 [[return rte_eal_init(0, NULL);]]
2454 [with_libdpdk="yes"],
2455 [with_libdpdk="no (symbol 'rte_eal_init' not found)"]
2458 LDFLAGS="$SAVE_LDFLAGS"
2459 CPPFLAGS="$SAVE_CPPFLAGS"
2460 CFLAGS="$SAVE_CFLAGS"
2465 # --with-libesmtp {{{
2466 AC_ARG_WITH([libesmtp],
2467 [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
2469 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2470 with_libesmtp_cppflags="-I$withval/include"
2471 with_libesmtp_ldflags="-L$withval/lib"
2474 with_libesmtp="$withval"
2477 [with_libesmtp="yes"]
2480 if test "x$with_libesmtp" = "xyes"; then
2481 SAVE_CPPFLAGS="$CPPFLAGS"
2482 CPPFLAGS="$CPPFLAGS $with_libesmtp_cppflags"
2484 AC_CHECK_HEADERS([libesmtp.h],
2485 [with_libesmtp="yes"],
2486 [with_libesmtp="no (libesmtp.h not found)"]
2489 CPPFLAGS="$SAVE_CPPFLAGS"
2492 if test "x$with_libesmtp" = "xyes"; then
2493 SAVE_LDFLAGS="$LDFLAGS"
2494 LDFLAGS="$LDFLAGS $with_esmtp_ldflags"
2496 AC_CHECK_LIB([esmtp], [smtp_create_session],
2497 [with_libesmtp="yes"],
2498 [with_libesmtp="no (Symbol 'smtp_create_session' not found)"]
2501 LDFLAGS="$SAVE_LDFLAGS"
2504 BUILD_WITH_LIBESMTP_CPPFLAGS="$with_libesmtp_cppflags"
2505 BUILD_WITH_LIBESMTP_LDFLAGS="$with_libesmtp_ldflags"
2506 BUILD_WITH_LIBESMTP_LIBS="-lesmtp"
2507 AC_SUBST(BUILD_WITH_LIBESMTP_CPPFLAGS)
2508 AC_SUBST(BUILD_WITH_LIBESMTP_LDFLAGS)
2509 AC_SUBST(BUILD_WITH_LIBESMTP_LIBS)
2512 # --with-libganglia {{{
2513 AC_ARG_WITH([libganglia],
2514 [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
2516 if test -f "$withval" && test -x "$withval"; then
2517 with_libganglia_config="$withval"
2518 with_libganglia="yes"
2519 else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"; then
2520 with_libganglia_config="$withval/bin/ganglia-config"
2521 with_libganglia="yes"
2522 else if test -d "$withval"; then
2523 GANGLIA_CPPFLAGS="-I$withval/include"
2524 GANGLIA_LDFLAGS="-L$withval/lib"
2525 with_libganglia="yes"
2527 with_libganglia="$withval"
2530 [with_libganglia="yes"]
2533 if test "x$with_libganglia" = "xyes"; then
2534 if test "x$with_libganglia_config" != "x"; then
2535 if test "x$GANGLIA_CPPFLAGS" = "x"; then
2536 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
2539 if test "x$GANGLIA_LDFLAGS" = "x"; then
2540 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
2543 if test "x$GANGLIA_LIBS" = "x"; then
2544 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
2547 GANGLIA_LIBS="-lganglia"
2551 SAVE_CPPFLAGS="$CPPFLAGS"
2552 SAVE_LDFLAGS="$LDFLAGS"
2553 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
2554 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
2556 if test "x$with_libganglia" = "xyes"; then
2557 AC_CHECK_HEADERS([gm_protocol.h],
2558 [with_libganglia="yes"],
2559 [with_libganglia="no (gm_protocol.h not found)"]
2563 if test "x$with_libganglia" = "xyes"; then
2564 AC_CHECK_LIB([ganglia], [xdr_Ganglia_value_msg],
2565 [with_libganglia="yes"],
2566 [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"]
2570 CPPFLAGS="$SAVE_CPPFLAGS"
2571 LDFLAGS="$SAVE_LDFLAGS"
2573 AC_SUBST(GANGLIA_CPPFLAGS)
2574 AC_SUBST(GANGLIA_LDFLAGS)
2575 AC_SUBST(GANGLIA_LIBS)
2578 # --with-libgcrypt {{{
2579 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
2580 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2581 GCRYPT_LIBS="$GCRYPT_LIBS"
2582 AC_ARG_WITH([libgcrypt],
2583 [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2585 if test -f "$withval" && test -x "$withval"; then
2586 with_libgcrypt_config="$withval"
2587 with_libgcrypt="yes"
2588 else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"; then
2589 with_libgcrypt_config="$withval/bin/gcrypt-config"
2590 with_libgcrypt="yes"
2591 else if test -d "$withval"; then
2592 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2593 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2594 with_libgcrypt="yes"
2596 with_libgcrypt_config="gcrypt-config"
2597 with_libgcrypt="$withval"
2601 with_libgcrypt_config="libgcrypt-config"
2602 with_libgcrypt="yes"
2606 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"; then
2607 if test "x$GCRYPT_CPPFLAGS" = "x"; then
2608 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2611 if test "x$GCRYPT_LIBS" = "x"; then
2612 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2616 SAVE_CPPFLAGS="$CPPFLAGS"
2617 SAVE_LDFLAGS="$LDFLAGS"
2619 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2620 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2621 LIBS="$LIBS $GCRYPT_LIBS"
2623 if test "x$with_libgcrypt" = "xyes"; then
2624 AC_CHECK_HEADERS([gcrypt.h],
2625 [with_libgcrypt="yes"],
2626 [with_libgcrypt="no (gcrypt.h not found)"]
2630 if test "x$with_libgcrypt" = "xyes"; then
2631 AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2632 [with_libgcrypt="yes"],
2633 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"]
2637 CPPFLAGS="$SAVE_CPPFLAGS"
2638 LDFLAGS="$SAVE_LDFLAGS"
2641 AC_SUBST([GCRYPT_CPPFLAGS])
2642 AC_SUBST([GCRYPT_LDFLAGS])
2643 AC_SUBST([GCRYPT_LIBS])
2644 AM_CONDITIONAL([BUILD_WITH_LIBGCRYPT], [test "x$with_libgcrypt" = "xyes"])
2648 AC_ARG_WITH([libgps],
2649 [AS_HELP_STRING([--with-libgps@<:@=PREFIX@:>@], [Path to libgps.])],
2651 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2652 with_libgps_cflags="-I$withval/include"
2653 with_libgps_ldflags="-L$withval/lib"
2656 with_libgps="$withval"
2662 if test "x$with_libgps" = "xyes"; then
2663 SAVE_CFLAGS="$CFLAGS"
2664 CFLAGS="$CFLAGS $with_libgps_cflags"
2666 AC_CHECK_HEADERS([gps.h],
2667 [with_libgps="yes"],
2668 [with_libgps="no (gps.h not found)"]
2671 CFLAGS="$SAVE_CFLAGS"
2674 if test "x$with_libgps" = "xyes"; then
2675 SAVE_LDFLAGS="$LDFLAGS"
2676 LDFLAGS="$LDFLAGS $with_libgps_ldflags"
2678 AC_CHECK_LIB([gps], [gps_open],
2679 [with_libgps="yes"],
2680 [with_libgps="no (symbol gps_open not found)"]
2683 LDFLAGS="$SAVE_LDFLAGS"
2686 if test "x$with_libgps" = "xyes"; then
2687 BUILD_WITH_LIBGPS_CFLAGS="$with_libgps_cflags"
2688 BUILD_WITH_LIBGPS_LDFLAGS="$with_libgps_ldflags"
2689 BUILD_WITH_LIBGPS_LIBS="-lgps"
2692 AC_SUBST([BUILD_WITH_LIBGPS_CFLAGS])
2693 AC_SUBST([BUILD_WITH_LIBGPS_LDFLAGS])
2694 AC_SUBST([BUILD_WITH_LIBGPS_LIBS])
2698 # --with-libgrpc++ {{{
2699 AC_ARG_WITH([libgrpc++],
2700 [AS_HELP_STRING([--with-libgrpc++@<:@=PREFIX@:>@], [Path to libgrpc++.])],
2702 with_grpcpp="$withval"
2703 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
2704 with_libgrpcpp_cppflags="-I$withval/include"
2705 with_libgrpcpp_ldflags="-L$withval/lib"
2706 with_libgrpcpp_bin="$withval/bin"
2707 with_libgrpcpp="yes"
2709 if test "x$withval" = "xno"; then
2710 with_libgrpcpp="no (disabled on command line)"
2715 if test "x$withval" = "xyes"; then
2716 PKG_CHECK_MODULES([GRPCPP], [grpc++],
2717 [with_libgrpcpp="yes"],
2718 [with_libgrpcpp="no (pkg-config could not find libgrpc++)"]
2722 if test "x$withval" != "xno"; then
2723 AC_MSG_CHECKING([whether $CXX accepts -std=c++11])
2724 if test_cxx_flags -std=c++11; then
2725 AC_MSG_RESULT([yes])
2728 with_libgrpcpp="no (requires C++11 support)"
2732 if test "x$with_libgrpcpp" = "xyes"; then
2734 SAVE_CPPFLAGS="$CPPFLAGS"
2735 CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
2736 AC_CHECK_HEADERS([grpc++/grpc++.h],
2737 [with_libgrpcpp="yes"],
2738 [with_libgrpcpp="no (<grpc++/grpc++.h> not found)"]
2740 CPPFLAGS="$SAVE_CPPFLAGS"
2744 if test "x$with_libgrpcpp" = "xyes"; then
2746 SAVE_CPPFLAGS="$CPPFLAGS"
2747 SAVE_LDFLAGS="$LDFLAGS"
2749 CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
2750 LDFLAGS="$with_libgrpcpp_ldflags"
2751 if test "x$GRPCPP_LIBS" = "x"; then
2759 [[#include <grpc++/grpc++.h>]],
2760 [[grpc::ServerBuilder sb;]]
2764 with_libgrpcpp="yes"
2765 if test "x$GRPCPP_LIBS" = "x"; then
2766 GRPCPP_LIBS="-lgrpc++"
2769 [with_libgrpcpp="no (libgrpc++ not found)"]
2771 CPPFLAGS="$SAVE_CPPFLAGS"
2772 LDFLAGS="$SAVE_LDFLAGS"
2777 BUILD_WITH_LIBGRPCPP_CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS"
2778 BUILD_WITH_LIBGRPCPP_LDFLAGS="$with_libgrpcpp_ldflags"
2779 BUILD_WITH_LIBGRPCPP_LIBS="$GRPCPP_LIBS"
2780 AC_SUBST([BUILD_WITH_LIBGRPCPP_CPPFLAGS])
2781 AC_SUBST([BUILD_WITH_LIBGRPCPP_LDFLAGS])
2782 AC_SUBST([BUILD_WITH_LIBGRPCPP_LIBS])
2785 AC_ARG_VAR([GRPC_CPP_PLUGIN], [path to the grpc_cpp_plugin binary])
2786 if test "x$with_libgrpcpp_bin" = "x"; then
2787 AC_PATH_PROG([GRPC_CPP_PLUGIN], [grpc_cpp_plugin])
2789 AC_PATH_PROG([GRPC_CPP_PLUGIN], [grpc_cpp_plugin], [], "$with_libgrpcpp_bin:$PATH")
2791 AM_CONDITIONAL([HAVE_GRPC_CPP], [test "x$GRPC_CPP_PLUGIN" != "x"])
2793 # --with-libiptc {{{
2794 AC_ARG_WITH([libiptc],
2795 [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2797 if test "x$withval" = "xyes"; then
2798 with_libiptc="pkgconfig"
2799 else if test "x$withval" = "xno"; then
2803 with_libiptc_cflags="-I$withval/include"
2804 with_libiptc_libs="-L$withval/lib"
2808 if test "x$ac_system" = "xLinux"; then
2809 with_libiptc="pkgconfig"
2811 with_libiptc="no (Linux only)"
2816 if test "x$with_libiptc" = "xpkgconfig"; then
2817 $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2818 if test $? -ne 0; then
2819 with_libiptc="no (pkg-config doesn't know libiptc)"
2823 if test "x$with_libiptc" = "xpkgconfig"; then
2824 with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2825 if test $? -ne 0; then
2826 with_libiptc="no ($PKG_CONFIG failed)"
2829 with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2830 if test $? -ne 0; then
2831 with_libiptc="no ($PKG_CONFIG failed)"
2835 SAVE_CPPFLAGS="$CPPFLAGS"
2836 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2838 # check whether the header file for libiptc is available.
2839 if test "x$with_libiptc" = "xpkgconfig"; then
2840 AC_CHECK_HEADERS([libiptc/libiptc.h libiptc/libip6tc.h],
2842 [with_libiptc="no (header file missing)"]
2846 # If the header file is available, check for the required type declaractions.
2847 # They may be missing in old versions of libiptc. In that case, they will be
2848 # declared in the iptables plugin.
2849 if test "x$with_libiptc" = "xpkgconfig"; then
2850 AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2853 # Check for the iptc_init symbol in the library.
2854 # This could be in iptc or ip4tc
2855 if test "x$with_libiptc" = "xpkgconfig"; then
2857 AC_SEARCH_LIBS([iptc_init], [iptc ip4tc],
2858 [with_libiptc="pkgconfig"],
2859 [with_libiptc="no"],
2860 [$with_libiptc_libs]
2865 if test "x$with_libiptc" = "xpkgconfig"; then
2869 CPPFLAGS="$SAVE_CPPFLAGS"
2871 if test "x$with_libiptc" = "xyes"; then
2872 BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2873 BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2875 AC_SUBST([BUILD_WITH_LIBIPTC_CPPFLAGS])
2876 AC_SUBST([BUILD_WITH_LIBIPTC_LDFLAGS])
2880 with_java_home="$JAVA_HOME"
2881 if test "x$with_java_home" = "x"; then
2882 with_java_home="/usr/lib/jvm"
2888 [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2890 if test "x$withval" = "xno"; then
2892 else if test "x$withval" = "xyes"; then
2895 with_java_home="$withval"
2902 AX_COMPARE_VERSION([$am__api_version],[lt],[1.12],
2903 [JAVA_TIMESTAMP_FILE="classdist_noinst.stamp"],
2904 [JAVA_TIMESTAMP_FILE="classnoinst.stamp"])
2905 if test "x$with_java" = "xyes"; then
2906 if test -d "$with_java_home"; then
2907 AC_MSG_CHECKING([for jni.h])
2908 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2909 if test "x$TMPVAR" != "x"; then
2910 AC_MSG_RESULT([found in $TMPVAR])
2911 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2913 AC_MSG_RESULT([not found])
2916 AC_MSG_CHECKING([for jni_md.h])
2917 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2918 if test "x$TMPVAR" != "x"; then
2919 AC_MSG_RESULT([found in $TMPVAR])
2920 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2922 AC_MSG_RESULT([not found])
2925 AC_MSG_CHECKING([for libjvm.so])
2926 TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | LC_ALL=C sort | head -n 1`
2927 if test "x$TMPVAR" != "x"; then
2928 AC_MSG_RESULT([found in $TMPVAR])
2929 JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2931 AC_MSG_RESULT([not found])
2934 if test "x$JAVAC" = "x"; then
2935 AC_MSG_CHECKING([for javac])
2936 TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | LC_ALL=C sort | head -n 1`
2937 if test "x$TMPVAR" != "x"; then
2939 AC_MSG_RESULT([$JAVAC])
2941 AC_MSG_RESULT([not found])
2945 if test "x$JAR" = "x"; then
2946 AC_MSG_CHECKING([for jar])
2947 TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | LC_ALL=C sort | head -n 1`
2948 if test "x$TMPVAR" != "x"; then
2950 AC_MSG_RESULT([$JAR])
2952 AC_MSG_RESULT([not found])
2955 else if test "x$with_java_home" != "x"; then
2956 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2960 if test "x$JAVAC" = "x"; then
2961 with_javac_path="$PATH"
2962 if test "x$with_java_home" != "x"; then
2963 with_javac_path="$with_java_home:with_javac_path"
2964 if test -d "$with_java_home/bin"; then
2965 with_javac_path="$with_java_home/bin:with_javac_path"
2969 AC_PATH_PROG([JAVAC], [javac], [], "$with_javac_path")
2972 if test "x$JAVAC" = "x"; then
2973 with_java="no (javac not found)"
2976 if test "x$JAR" = "x"; then
2977 with_jar_path="$PATH"
2978 if test "x$with_java_home" != "x"; then
2979 with_jar_path="$with_java_home:$with_jar_path"
2980 if test -d "$with_java_home/bin"; then
2981 with_jar_path="$with_java_home/bin:$with_jar_path"
2985 AC_PATH_PROG([JAR], [jar], [], "$with_jar_path")
2988 if test "x$JAR" = "x"; then
2989 with_java="no (jar not found)"
2992 SAVE_CPPFLAGS="$CPPFLAGS"
2993 SAVE_CFLAGS="$CFLAGS"
2994 SAVE_LDFLAGS="$LDFLAGS"
2996 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2997 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2998 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2999 LIBS="$LIBS $JAVA_LIBS"
3001 if test "x$with_java" = "xyes"; then
3002 AC_CHECK_HEADERS([jni.h],
3004 [with_java="no (jni.h not found)"])
3007 if test "x$with_java" = "xyes"; then
3008 AC_CHECK_LIB([jvm], [JNI_CreateJavaVM],
3010 [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
3011 [$JAVA_LIBS $PTHREAD_LIBS]
3015 if test "x$with_java" = "xyes"; then
3016 JAVA_LIBS="$JAVA_LIBS -ljvm"
3019 CPPFLAGS="$SAVE_CPPFLAGS"
3020 CFLAGS="$SAVE_CFLAGS"
3021 LDFLAGS="$SAVE_LDFLAGS"
3024 AC_SUBST([JAVA_CPPFLAGS])
3025 AC_SUBST([JAVA_CFLAGS])
3026 AC_SUBST([JAVA_LDFLAGS])
3027 AC_SUBST([JAVA_LIBS])
3028 AC_SUBST([JAVA_TIMESTAMP_FILE])
3029 AM_CONDITIONAL([BUILD_WITH_JAVA], [test "x$with_java" = "xyes"])
3032 # --with-libldap {{{
3033 AC_ARG_WITH([libldap],
3034 [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
3036 if test "x$withval" = "xyes"; then
3038 else if test "x$withval" = "xno"; then
3042 LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
3043 LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
3046 [with_libldap="yes"]
3049 SAVE_CPPFLAGS="$CPPFLAGS"
3050 SAVE_LDFLAGS="$LDFLAGS"
3052 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
3053 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
3055 if test "x$with_libldap" = "xyes"; then
3056 AC_CHECK_HEADERS([ldap.h],
3057 [with_libldap="yes"],
3058 [with_libldap="no ('ldap.h' not found)"]
3062 if test "x$with_libldap" = "xyes"; then
3063 AC_CHECK_LIB([ldap], [ldap_initialize],
3064 [with_libldap="yes"],
3065 [with_libldap="no (symbol 'ldap_initialize' not found)"]
3069 CPPFLAGS="$SAVE_CPPFLAGS"
3070 LDFLAGS="$SAVE_LDFLAGS"
3072 if test "x$with_libldap" = "xyes"
3074 BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
3075 BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
3077 AC_SUBST([BUILD_WITH_LIBLDAP_CPPFLAGS])
3078 AC_SUBST([BUILD_WITH_LIBLDAP_LDFLAGS])
3082 AC_ARG_VAR([LIBLUA_PKG_CONFIG_NAME], [Name of liblua used by pkg-config])
3083 if test "x$LIBLUA_PKG_CONFIG_NAME" != "x"
3085 PKG_CHECK_MODULES([LUA], [$LIBLUA_PKG_CONFIG_NAME],
3086 [with_liblua="yes"],
3090 PKG_CHECK_MODULES([LUA], [lua],
3091 [with_liblua="yes"],
3093 PKG_CHECK_MODULES([LUA], [lua-5.3],
3094 [with_liblua="yes"],
3096 PKG_CHECK_MODULES([LUA], [lua5.3],
3097 [with_liblua="yes"],
3099 PKG_CHECK_MODULES([LUA], [lua53],
3100 [with_liblua="yes"],
3102 PKG_CHECK_MODULES([LUA], [lua-5.2],
3103 [with_liblua="yes"],
3105 PKG_CHECK_MODULES([LUA], [lua5.2],
3106 [with_liblua="yes"],
3108 PKG_CHECK_MODULES([LUA], [lua52],
3109 [with_liblua="yes"],
3111 PKG_CHECK_MODULES([LUA], [lua-5.1],
3112 [with_liblua="yes"],
3114 PKG_CHECK_MODULES([LUA], [lua5.1],
3115 [with_liblua="yes"],
3117 PKG_CHECK_MODULES([LUA], [lua51],
3118 [with_liblua="yes"],
3119 [with_liblua="no (pkg-config cannot find liblua)"]
3141 if test "x$with_liblua" = "xyes"
3143 SAVE_CPPFLAGS="$CPPFLAGS"
3144 CPPFLAGS="$CPPFLAGS $LUA_CFLAGS"
3146 AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
3147 [with_liblua="yes"],
3148 [with_liblua="no (header not found)"]
3151 CPPFLAGS="$SAVE_CPPFLAGS"
3154 if test "x$with_liblua" = "xyes"
3157 LIBS="$LIBS $LUA_LIBS"
3159 AC_CHECK_FUNC([lua_settop],
3160 [with_liblua="yes"],
3161 [with_liblua="no (symbol 'lua_settop' not found)"]
3167 if test "x$with_liblua" = "xyes"
3169 BUILD_WITH_LIBLUA_CFLAGS="$LUA_CFLAGS"
3170 BUILD_WITH_LIBLUA_LIBS="$LUA_LIBS"
3172 AC_SUBST(BUILD_WITH_LIBLUA_CFLAGS)
3173 AC_SUBST(BUILD_WITH_LIBLUA_LIBS)
3176 # --with-liblvm2app {{{
3177 AC_ARG_WITH([liblvm2app],
3178 [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
3180 if test "x$withval" = "xno"; then
3181 with_liblvm2app="no"
3183 with_liblvm2app="yes"
3184 if test "x$withval" != "xyes"; then
3185 with_liblvm2app_cppflags="-I$withval/include"
3186 with_liblvm2app_ldflags="-L$withval/lib"
3191 if test "x$ac_system" = "xLinux"; then
3192 with_liblvm2app="yes"
3194 with_liblvm2app="no (Linux only library)"
3199 if test "x$with_liblvm2app" = "xyes"; then
3200 SAVE_CPPFLAGS="$CPPFLAGS"
3201 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
3203 AC_CHECK_HEADERS([lvm2app.h],
3204 [with_liblvm2app="yes"],
3205 [with_liblvm2app="no (lvm2app.h not found)"]
3208 CPPFLAGS="$SAVE_CPPFLAGS"
3211 if test "x$with_liblvm2app" = "xyes"; then
3212 SAVE_CPPFLAGS="$CPPFLAGS"
3213 SAVE_LDFLAGS="$LDFLAGS"
3214 CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
3215 LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
3217 AC_CHECK_LIB([lvm2app], [lvm_lv_get_property],
3218 [with_liblvm2app="yes"],
3219 [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"]
3222 CPPFLAGS="$SAVE_CPPFLAGS"
3223 LDFLAGS="$SAVE_LDFLAGS"
3226 if test "x$with_liblvm2app" = "xyes"; then
3227 BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
3228 BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
3229 BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
3232 AC_SUBST([BUILD_WITH_LIBLVM2APP_CPPFLAGS])
3233 AC_SUBST([BUILD_WITH_LIBLVM2APP_LDFLAGS])
3234 AC_SUBST([BUILD_WITH_LIBLVM2APP_LIBS])
3237 # --with-libmemcached {{{
3238 AC_ARG_WITH([libmemcached],
3239 [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
3241 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3242 with_libmemcached_cppflags="-I$withval/include"
3243 with_libmemcached_ldflags="-L$withval/lib"
3244 with_libmemcached="yes"
3246 with_libmemcached="$withval"
3249 [with_libmemcached="yes"]
3252 if test "x$with_libmemcached" = "xyes"; then
3253 SAVE_CPPFLAGS="$CPPFLAGS"
3254 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
3256 AC_CHECK_HEADERS([libmemcached/memcached.h],
3257 [with_libmemcached="yes"],
3258 [with_libmemcached="no (libmemcached/memcached.h not found)"]
3261 CPPFLAGS="$SAVE_CPPFLAGS"
3264 if test "x$with_libmemcached" = "xyes"; then
3265 SAVE_CPPFLAGS="$CPPFLAGS"
3266 SAVE_LDFLAGS="$LDFLAGS"
3267 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
3268 LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
3270 AC_CHECK_LIB([memcached], [memcached_create],
3271 [with_libmemcached="yes"],
3272 [with_libmemcached="no (Symbol 'memcached_create' not found)"]
3275 CPPFLAGS="$SAVE_CPPFLAGS"
3276 LDFLAGS="$SAVE_LDFLAGS"
3279 if test "x$with_libmemcached" = "xyes"; then
3280 BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
3281 BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
3282 BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
3285 AC_SUBST([BUILD_WITH_LIBMEMCACHED_CPPFLAGS])
3286 AC_SUBST([BUILD_WITH_LIBMEMCACHED_LDFLAGS])
3287 AC_SUBST([BUILD_WITH_LIBMEMCACHED_LIBS])
3290 # --with-libmicrohttpd {{{
3291 with_libmicrohttpd_cppflags=""
3292 with_libmicrohttpd_ldflags=""
3293 AC_ARG_WITH([libmicrohttpd], [AS_HELP_STRING([--with-libmicrohttpd@<:@=PREFIX@:>@], [Path to libmicrohttpd.])],
3295 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3296 with_libmicrohttpd_cppflags="-I$withval/include"
3297 with_libmicrohttpd_ldflags="-L$withval/lib"
3298 with_libmicrohttpd="yes"
3300 if test "x$withval" = "xno"; then
3301 with_libmicrohttpd="no (disabled on command line)"
3306 if test "x$withval" = "xyes"; then
3307 PKG_CHECK_MODULES([MICROHTTPD], [libmicrohttpd],
3308 [with_libmicrohttpd="yes"],
3309 [with_libmicrohttpd="no (pkg-config could not find libmicrohttpd)"]
3313 if test "x$MICROHTTPD_LIBS" = "x"; then
3314 MICROHTTPD_LIBS="-lmicrohttpd"
3317 SAVE_CPPFLAGS="$CPPFLAGS"
3318 SAVE_LDFLAGS="$LDFLAGS"
3320 CPPFLAGS="$with_libmicrohttpd_cppflags $MICROHTTPD_CFLAGS"
3321 LDFLAGS="$with_libmicrohttpd_ldflags $LDFLAGS"
3322 LIBS="$LIBS $MICROHTTPD_LIBS"
3324 if test "x$with_libmicrohttpd" = "xyes"; then
3325 AC_CHECK_HEADERS([microhttpd.h],
3326 [with_libmicrohttpd="yes"],
3327 [with_libmicrohttpd="no (<microhttpd.h> not found)"]
3331 if test "x$with_libmicrohttpd" = "xyes"; then
3332 AC_CHECK_LIB([microhttpd], [MHD_start_daemon],
3333 [with_libmicrohttpd="yes"],
3334 [with_libmicrohttpd="no (libmicrohttpd not found)"]
3338 CPPFLAGS="$SAVE_CPPFLAGS"
3339 LDFLAGS="$SAVE_LDFLAGS"
3342 BUILD_WITH_LIBMICROHTTPD_CPPFLAGS="$with_libmicrohttpd_cppflags $MICROHTTPD_CFLAGS"
3343 BUILD_WITH_LIBMICROHTTPD_LDFLAGS="$with_libmicrohttpd_ldflags"
3344 BUILD_WITH_LIBMICROHTTPD_LIBS="$MICROHTTPD_LIBS"
3345 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_CPPFLAGS])
3346 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_LDFLAGS])
3347 AC_SUBST([BUILD_WITH_LIBMICROHTTPD_LIBS])
3350 # --with-libmodbus {{{
3351 AC_ARG_WITH([libmodbus],
3352 [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
3354 if test "x$withval" = "xno"; then
3356 else if test "x$withval" = "xyes"; then
3357 with_libmodbus="use_pkgconfig"
3358 else if test -d "$with_libmodbus/lib"; then
3359 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
3360 with_libmodbus_cflags="-I$withval/include"
3361 with_libmodbus_libs="-L$withval/lib -lmodbus"
3362 with_libmodbus="yes"
3365 [with_libmodbus="use_pkgconfig"]
3368 # configure using pkg-config
3369 if test "x$with_libmodbus" = "xuse_pkgconfig"; then
3370 $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
3371 if test $? -ne 0; then
3372 with_libmodbus="no (pkg-config doesn't know libmodbus)"
3376 if test "x$with_libmodbus" = "xuse_pkgconfig"; then
3377 with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
3378 if test $? -ne 0; then
3379 with_libmodbus="no ($PKG_CONFIG failed)"
3382 with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
3383 if test $? -ne 0; then
3384 with_libmodbus="no ($PKG_CONFIG failed)"
3388 if test "x$with_libmodbus" = "xuse_pkgconfig"; then
3389 with_libmodbus="yes"
3392 if test "x$with_libmodbus" = "xyes"; then
3393 SAVE_CPPFLAGS="$CPPFLAGS"
3394 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
3396 AC_CHECK_HEADERS([modbus.h],
3397 [with_libmodbus="yes"],
3398 [with_libmodbus="no (modbus.h not found)"]
3401 CPPFLAGS="$SAVE_CPPFLAGS"
3404 if test "x$with_libmodbus" = "xyes"; then
3405 SAVE_LDFLAGS="$LDFLAGS"
3406 LDFLAGS="$LDFLAGS $with_libmodbus_libs"
3408 AC_CHECK_LIB([modbus], [modbus_connect],
3409 [with_libmodbus="yes"],
3410 [with_libmodbus="no (symbol modbus_connect not found)"]
3413 LDFLAGS="$SAVE_LDFLAGS"
3416 if test "x$with_libmodbus" = "xyes"; then
3417 BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
3418 BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
3421 AC_SUBST([BUILD_WITH_LIBMODBUS_CFLAGS])
3422 AC_SUBST([BUILD_WITH_LIBMODBUS_LIBS])
3425 # --with-libmongoc {{{
3426 AC_ARG_WITH([libmongoc],
3427 [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
3429 if test "x$withval" = "xyes"; then
3430 with_libmongoc="yes"
3431 else if test "x$withval" = "xno"; then
3437 [with_libmongoc="yes"]
3440 if test "x$with_libmongoc" = "xyes"; then
3441 PKG_CHECK_MODULES([LIBMONGOC], [libmongoc-1.0],
3442 [with_libmongoc="yes"],
3443 [with_libmongoc="no (pkg-config could not find libmongoc)"]
3447 if test "x$with_libmongoc" = "xyes"; then
3448 SAVE_CPPFLAGS="$CPPFLAGS"
3450 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CFLAGS"
3452 AC_CHECK_HEADERS([mongoc.h],
3453 [with_libmongoc="yes"],
3454 [with_libmongoc="no ('mongoc.h' not found)"]
3457 CPPFLAGS="$SAVE_CPPFLAGS"
3460 if test "x$with_libmongoc" = "xyes"; then
3461 SAVE_CPPFLAGS="$CPPFLAGS"
3462 SAVE_LDFLAGS="$LDFLAGS"
3464 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CFLAGS"
3465 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
3467 AC_CHECK_LIB([mongoc-1.0], [mongoc_init],
3468 [with_libmongoc="yes"],
3469 [with_libmongoc="no (symbol 'mongoc_init' not found)"]
3472 CPPFLAGS="$SAVE_CPPFLAGS"
3473 LDFLAGS="$SAVE_LDFLAGS"
3476 if test "x$with_libmongoc" = "xyes"; then
3477 BUILD_WITH_LIBMONGOC_CFLAGS="$LIBMONGOC_CFLAGS"
3478 BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
3479 BUILD_WITH_LIBMONGOC_LIBS="$LIBMONGOC_LIBS"
3482 AC_SUBST([BUILD_WITH_LIBMONGOC_CFLAGS])
3483 AC_SUBST([BUILD_WITH_LIBMONGOC_LDFLAGS])
3484 AC_SUBST([BUILD_WITH_LIBMONGOC_LIBS])
3487 # --with-libmosquitto {{{
3488 AC_ARG_WITH([libmosquitto],
3489 [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
3491 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
3492 with_libmosquitto_cppflags="-I$withval/include"
3493 with_libmosquitto_ldflags="-L$withval/lib"
3494 with_libmosquitto="yes"
3496 with_libmosquitto="$withval"
3499 [with_libmosquitto="yes"]
3502 if test "x$with_libmosquitto" = "xyes"; then
3503 SAVE_CPPFLAGS="$CPPFLAGS"
3504 CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3506 AC_CHECK_HEADERS([mosquitto.h],
3507 [with_libmosquitto="yes"],
3508 [with_libmosquitto="no (mosquitto.h not found)"]
3511 CPPFLAGS="$SAVE_CPPFLAGS"
3514 if test "x$with_libmosquitto" = "xyes"; then
3515 SAVE_LDFLAGS="$LDFLAGS"
3516 LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
3518 AC_CHECK_LIB([mosquitto], [mosquitto_connect],
3519 [with_libmosquitto="yes"],
3520 [with_libmosquitto="no (libmosquitto not found)"]
3523 LDFLAGS="$SAVE_LDFLAGS"
3526 if test "x$with_libmosquitto" = "xyes"; then
3527 BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
3528 BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
3529 BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
3532 AC_SUBST([BUILD_WITH_LIBMOSQUITTO_CPPFLAGS])
3533 AC_SUBST([BUILD_WITH_LIBMOSQUITTO_LDFLAGS])
3534 AC_SUBST([BUILD_WITH_LIBMOSQUITTO_LIBS])
3537 # --with-libmysql {{{
3538 with_mysql_config="mysql_config"
3539 AC_ARG_WITH([libmysql],
3540 [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
3542 if test "x$withval" = "xno"; then
3544 else if test "x$withval" = "xyes"; then
3547 if test -f "$withval" && test -x "$withval"; then
3548 with_mysql_config="$withval"
3549 else if test -x "$withval/bin/mysql_config"; then
3550 with_mysql_config="$withval/bin/mysql_config"
3555 [with_libmysql="yes"]
3558 if test "x$with_libmysql" = "xyes"; then
3559 with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
3560 if test $? -ne 0; then
3561 with_libmysql="no ($with_mysql_config failed)"
3563 SAVE_CPPFLAGS="$CPPFLAGS"
3564 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3566 AC_CHECK_HEADERS([mysql.h],
3567 [have_mysql_h="yes"],
3571 if test "x$have_mysql_h" != "xyes"; then
3572 AC_CHECK_HEADERS([mysql/mysql.h],
3573 [have_mysql_mysql_h="yes"],
3578 if test "x$have_mysql_h" != "xyes" && test "x$have_mysql_mysql_h" != "xyes"; then
3579 with_libmysql="no (mysql.h not found)"
3582 CPPFLAGS="$SAVE_CPPFLAGS"
3586 if test "x$with_libmysql" = "xyes"; then
3587 with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
3588 if test $? -ne 0; then
3589 with_libmysql="no ($with_mysql_config failed)"
3592 LIBS="$with_mysql_libs"
3594 AC_SEARCH_LIBS([mysql_get_server_version],
3596 [with_libmysql="yes"],
3597 [with_libmysql="no (symbol 'mysql_get_server_version' not found in ${LIBS})"],
3604 if test "x$with_libmysql" = "xyes"; then
3605 BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
3606 BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
3609 AC_SUBST([BUILD_WITH_LIBMYSQL_CFLAGS])
3610 AC_SUBST([BUILD_WITH_LIBMYSQL_LIBS])
3614 AC_ARG_WITH([libmnl],
3615 [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
3617 if test "x$withval" = "xyes"; then
3619 else if test "x$withval" = "xno"; then
3622 if test -d "$withval/include"; then
3623 with_libmnl_cflags="-I$withval/include"
3624 with_libmnl_libs="-L$withval/lib -lmnl"
3627 AC_MSG_ERROR("no such directory: $withval/include")
3632 if test "x$ac_system" = "xLinux"; then
3635 with_libmnl="no (Linux only library)"
3640 if test "x$with_libmnl" = "xyes"; then
3641 if $PKG_CONFIG --exists libmnl 2>/dev/null; then
3642 with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
3643 with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
3646 AC_CHECK_HEADERS([libmnl.h libmnl/libmnl.h],
3654 #include <sys/types.h>
3655 #include <asm/types.h>
3656 #include <sys/socket.h>
3657 #include <linux/netlink.h>
3658 #include <linux/rtnetlink.h>]]
3661 AC_CHECK_HEADERS([linux/gen_stats.h linux/pkt_sched.h],
3666 #include <sys/types.h>
3667 #include <asm/types.h>
3668 #include <sys/socket.h>
3677 #include <sys/types.h>
3678 #include <asm/types.h>
3679 #include <sys/socket.h>
3680 #include <linux/netlink.h>
3681 #include <linux/rtnetlink.h>
3684 int retval = TCA_STATS2;
3689 [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])]
3697 #include <sys/types.h>
3698 #include <asm/types.h>
3699 #include <sys/socket.h>
3700 #include <linux/netlink.h>
3701 #include <linux/rtnetlink.h>
3704 int retval = TCA_STATS;
3709 [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])]
3712 AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3713 [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3715 [[#include <linux/if_link.h>]]
3718 AC_CHECK_MEMBERS([struct rtnl_link_stats.rx_nohandler],
3721 [[#include <linux/if_link.h>]]
3724 AC_CHECK_MEMBERS([struct rtnl_link_stats64.rx_nohandler],
3727 [[#include <linux/if_link.h>]]
3730 AC_CHECK_LIB([mnl], [mnl_nlmsg_get_payload],
3731 [with_libmnl="yes"],
3732 [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3737 if test "x$with_libmnl" = "xyes"; then
3738 BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3739 BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3741 AC_SUBST([BUILD_WITH_LIBMNL_CFLAGS])
3742 AC_SUBST([BUILD_WITH_LIBMNL_LIBS])
3743 AM_CONDITIONAL([HAVE_LIBMNL], [test "x$with_libmnl" = "xyes"])
3746 # --with-libnetapp {{{
3747 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3748 AC_ARG_VAR([LIBNETAPP_LDFLAGS], [Linker flags required to build with libnetapp])
3749 AC_ARG_VAR([LIBNETAPP_LIBS], [Other libraries required to link against libnetapp])
3750 AC_ARG_WITH([libnetapp],
3751 [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3753 if test -d "$withval"; then
3754 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3755 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3756 with_libnetapp="yes"
3758 with_libnetapp="$withval"
3761 [with_libnetapp="yes"]
3764 SAVE_CPPFLAGS="$CPPFLAGS"
3765 SAVE_LDFLAGS="$LDFLAGS"
3766 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3767 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3769 if test "x$with_libnetapp" = "xyes"; then
3770 AC_CHECK_HEADERS([netapp_api.h],
3771 [with_libnetapp="yes"],
3772 [with_libnetapp="no (netapp_api.h not found)"]
3776 if test "x$with_libnetapp" = "xyes"; then
3777 if test "x$LIBNETAPP_LIBS" = "x"; then
3778 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3781 AC_CHECK_LIB([netapp], [na_server_invoke_elem],
3782 [with_libnetapp="yes"],
3783 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3787 LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3790 CPPFLAGS="$SAVE_CPPFLAGS"
3791 LDFLAGS="$SAVE_LDFLAGS"
3793 AC_SUBST([LIBNETAPP_CPPFLAGS])
3794 AC_SUBST([LIBNETAPP_LDFLAGS])
3795 AC_SUBST([LIBNETAPP_LIBS])
3798 # --with-libnetsnmp {{{
3799 AC_ARG_WITH([libnetsnmp],
3800 [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to libnetsnmp.])],
3802 if test "x$withval" = "xno"; then
3803 with_libnetsnmp="no"
3804 else if test "x$withval" = "xyes"; then
3805 with_libnetsnmp="yes"
3807 with_libnetsnmp_cppflags="-I$withval/include"
3808 with_libnetsnmp_ldflags="-I$withval/lib"
3809 with_libnetsnmp="yes"
3812 [with_libnetsnmp="yes"]
3815 if test "x$with_libnetsnmp" = "xyes"; then
3816 SAVE_CPPFLAGS="$CPPFLAGS"
3817 CPPFLAGS="$CPPFLAGS $with_libnetsnmp_cppflags"
3819 AC_CHECK_HEADERS([net-snmp/net-snmp-config.h],
3820 [with_libnetsnmp="yes"],
3821 [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"]
3824 AC_CHECK_HEADERS([net-snmp/net-snmp-includes.h],
3825 [with_libnetsnmp="yes"],
3826 [with_libnetsnmp="no (net-snmp/net-snmp-includes.h not found)"],
3828 #if HAVE_NET_SNMP_NET_SNMP_CONFIG_H
3829 # include <net-snmp/net-snmp-config.h>
3834 CPPFLAGS="$SAVE_CPPFLAGS"
3837 if test "x$with_libnetsnmp" = "xyes"; then
3838 SAVE_LDFLAGS="$LDFLAGS"
3839 LDFLAGS="$LDFLAGS $with_libnetsnmp_ldflags"
3841 AC_CHECK_LIB([netsnmp], [init_snmp],
3842 [with_libnetsnmp="yes"],
3843 [with_libnetsnmp="no (libnetsnmp not found)"]
3846 LDFLAGS="$SAVE_LDFLAGS"
3849 if test "x$with_libnetsnmp" = "xyes"; then
3850 SAVE_LDFLAGS="$LDFLAGS"
3851 LDFLAGS="$LDFLAGS $with_libnetsnmp_ldflags"
3853 AC_CHECK_LIB([netsnmp], [netsnmp_get_version],
3854 [with_libnetsnmp="yes"],
3855 [with_libnetsnmp="no (couldn't get libnetsnmp version)"]
3858 LDFLAGS="$SAVE_LDFLAGS"
3861 if test "x$with_libnetsnmp" = "xyes"; then
3862 SAVE_CPPFLAGS="$CPPFLAGS"
3863 SAVE_LDFLAGS="$LDFLAGS"
3865 CPPFLAGS="$CPPFLAGS $with_libnetsnmp_cppflags"
3866 if test "x$GCC" = "xyes"; then
3867 CPPFLAGS="$CPPFLAGS -Wall -Werror"
3869 LDFLAGS="$LDFLAGS $with_libnetsnmp_ldflags"
3870 LIBS="$LIBS -lnetsnmp"
3872 AC_CACHE_CHECK([whether netsnmp library has old API],
3873 [c_cv_have_netsnmp_old_api],
3879 #include <net-snmp/net-snmp-config.h>
3880 #include <net-snmp/net-snmp-includes.h>
3883 netsnmp_variable_list *key = SNMP_MALLOC_TYPEDEF(netsnmp_variable_list);;
3885 u_char type = ASN_INTEGER;
3886 snmp_set_var_value(key, &val, sizeof(val));
3887 snmp_set_var_typed_value(key, type, &val, sizeof(val));
3892 [c_cv_have_netsnmp_old_api="no"],
3893 [c_cv_have_netsnmp_old_api="yes"]
3898 if test "x$c_cv_have_netsnmp_old_api" = "xyes"; then
3899 AC_DEFINE([HAVE_NETSNMP_OLD_API], [1],
3900 ["Define 1 if you have old netsnmp API]")
3903 CPPFLAGS="$SAVE_CPPFLAGS"
3904 LDFLAGS="$SAVE_LDFLAGS"
3908 if test "x$with_libnetsnmp" = "xyes"; then
3909 BUILD_WITH_LIBNETSNMP_CPPFLAGS="$with_libnetsnmp_cppflags"
3910 BUILD_WITH_LIBNETSNMP_LDFLAGS="$with_libnetsnmp_ldflags"
3911 BUILD_WITH_LIBNETSNMP_LIBS="-lnetsnmp"
3914 AC_SUBST([BUILD_WITH_LIBNETSNMP_CPPFLAGS])
3915 AC_SUBST([BUILD_WITH_LIBNETSNMP_LDFLAGS])
3916 AC_SUBST([BUILD_WITH_LIBNETSNMP_LIBS])
3919 # --with-libnetsnmpagent {{{
3920 AC_ARG_WITH([libnetsnmpagent],
3921 [AS_HELP_STRING([--with-libnetsnmpagent@<:@=PREFIX@:>@], [Path to libnetsnmpagent.])],
3923 if test "x$withval" = "xno"; then
3924 with_libnetsnmpagent="no"
3925 else if test "x$withval" = "xyes"; then
3926 with_libnetsnmpagent="yes"
3928 with_libnetsnmpagent_cppflags="-I$withval/include"
3929 with_libnetsnmpagent_ldflags="-I$withval/lib"
3930 with_libnetsnmpagent="yes"
3933 [with_libnetsnmpagent="yes"]
3936 if test "x$with_libnetsnmpagent" = "xyes"; then
3937 SAVE_CPPFLAGS="$CPPFLAGS"
3938 CPPFLAGS="$CPPFLAGS $with_libnetsnmpagent_cppflags"
3940 AC_CHECK_HEADERS([net-snmp/agent/net-snmp-agent-includes.h],
3942 [with_libnetsnmpagent="no (net-snmp/agent/net-snmp-agent-includes.h not found)"],
3944 #if HAVE_NET_SNMP_NET_SNMP_CONFIG_H
3945 # include <net-snmp/net-snmp-config.h>
3947 #if HAVE_NET_SNMP_NET_SNMP_INCLUDES_H
3948 # include <net-snmp/net-snmp-includes.h>
3953 CPPFLAGS="$SAVE_CPPFLAGS"
3956 if test "x$with_libnetsnmpagent" = "xyes"; then
3957 SAVE_LDFLAGS="$LDFLAGS"
3958 LDFLAGS="$LDFLAGS $with_libnetsnmpagent_ldflags"
3960 # older versions of libnetsnmpagent fail to link
3961 # against the helpers library, so do that explicitly
3962 AC_CHECK_LIB([netsnmphelpers], [netsnmp_init_helpers],
3963 [libnetsnmphelpers="-lnetsnmphelpers"],
3964 [libnetsnmphelpers=""]
3967 AC_CHECK_LIB([netsnmpagent], [init_agent],
3968 [with_libnetsnmpagent="yes"],
3969 [with_libnetsnmpagent="no (libnetsnmpagent not found)"],
3970 [$libnetsnmphelpers]
3973 LDFLAGS="$SAVE_LDFLAGS"
3976 if test "x$with_libnetsnmpagent" = "xyes"; then
3977 BUILD_WITH_LIBNETSNMPAGENT_CPPFLAGS="$with_libnetsnmpagent_cppflags"
3978 BUILD_WITH_LIBNETSNMPAGENT_LDFLAGS="$with_libnetsnmpagent_ldflags"
3979 BUILD_WITH_LIBNETSNMPAGENT_LIBS="-lnetsnmpagent $libnetsnmphelpers"
3982 AC_SUBST([BUILD_WITH_LIBNETSNMPAGENT_CPPFLAGS])
3983 AC_SUBST([BUILD_WITH_LIBNETSNMPAGENT_LDFLAGS])
3984 AC_SUBST([BUILD_WITH_LIBNETSNMPAGENT_LIBS])
3987 # --with-liboping {{{
3988 AC_ARG_WITH([liboping],
3989 [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3991 if test "x$withval" = "xyes"; then
3993 else if test "x$withval" = "xno"; then
3997 LIBOPING_CPPFLAGS="-I$withval/include"
3998 LIBOPING_LDFLAGS="-L$withval/lib"
4001 [with_liboping="yes"]
4004 SAVE_CPPFLAGS="$CPPFLAGS"
4005 SAVE_LDFLAGS="$LDFLAGS"
4006 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
4007 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
4009 if test "x$with_liboping" = "xyes"; then
4010 AC_CHECK_HEADERS([oping.h],
4011 [with_liboping="yes"],
4012 [with_liboping="no (oping.h not found)"]
4016 if test "x$with_liboping" = "xyes"; then
4017 AC_CHECK_LIB([oping], [ping_construct],
4018 [with_liboping="yes"],
4019 [with_liboping="no (symbol 'ping_construct' not found)"]
4023 CPPFLAGS="$SAVE_CPPFLAGS"
4024 LDFLAGS="$SAVE_LDFLAGS"
4026 if test "x$with_liboping" = "xyes"; then
4027 BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
4028 BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
4031 AC_SUBST([BUILD_WITH_LIBOPING_CPPFLAGS])
4032 AC_SUBST([BUILD_WITH_LIBOPING_LDFLAGS])
4036 AC_ARG_WITH([oracle],
4037 [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
4039 if test "x$withval" = "xyes"; then
4040 if test "x$ORACLE_HOME" = "x"; then
4041 AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
4044 else if test "x$withval" = "xno"; then
4048 ORACLE_HOME="$withval"
4052 if test "x$ORACLE_HOME" = "x"; then
4053 with_oracle="no (ORACLE_HOME is not set)"
4060 if test "x$ORACLE_HOME" != "x"; then
4061 with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
4062 if test -e "$ORACLE_HOME/lib/ldflags"; then
4063 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
4065 with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
4068 if test "x$with_oracle" = "xyes"; then
4069 SAVE_CPPFLAGS="$CPPFLAGS"
4070 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
4072 AC_CHECK_HEADERS([oci.h],
4073 [with_oracle="yes"],
4074 [with_oracle="no (oci.h not found)"]
4077 CPPFLAGS="$SAVE_CPPFLAGS"
4080 if test "x$with_oracle" = "xyes"; then
4081 SAVE_CPPFLAGS="$CPPFLAGS"
4083 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
4084 LIBS="$LIBS $with_oracle_libs"
4086 AC_CHECK_FUNC([OCIEnvCreate],
4087 [with_oracle="yes"],
4088 [with_oracle="no (Symbol 'OCIEnvCreate' not found)"]
4091 CPPFLAGS="$SAVE_CPPFLAGS"
4095 if test "x$with_oracle" = "xyes"; then
4096 BUILD_WITH_ORACLE_CPPFLAGS="$with_oracle_cppflags"
4097 BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
4100 AC_SUBST([BUILD_WITH_ORACLE_CPPFLAGS])
4101 AC_SUBST([BUILD_WITH_ORACLE_LIBS])
4104 # --with-libowcapi {{{
4105 AC_ARG_WITH([libowcapi],
4106 [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
4108 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4109 with_libowcapi_cppflags="-I$withval/include"
4110 with_libowcapi_ldflags="-L$withval/lib"
4111 with_libowcapi="yes"
4113 with_libowcapi="$withval"
4116 [with_libowcapi="yes"]
4119 if test "x$with_libowcapi" = "xyes"; then
4120 SAVE_CPPFLAGS="$CPPFLAGS"
4121 CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
4123 AC_CHECK_HEADERS([owcapi.h],
4124 [with_libowcapi="yes"],
4125 [with_libowcapi="no (owcapi.h not found)"]
4128 CPPFLAGS="$SAVE_CPPFLAGS"
4131 if test "x$with_libowcapi" = "xyes"; then
4132 SAVE_LDFLAGS="$LDFLAGS"
4133 LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
4135 AC_CHECK_LIB([owcapi], [OW_get],
4136 [with_libowcapi="yes"],
4137 [with_libowcapi="no (libowcapi not found)"]
4140 LDFLAGS="$SAVE_LDFLAGS"
4143 if test "x$with_libowcapi" = "xyes"; then
4144 BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
4145 BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
4146 BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
4149 AC_SUBST([BUILD_WITH_LIBOWCAPI_CPPFLAGS])
4150 AC_SUBST([BUILD_WITH_LIBOWCAPI_LDFLAGS])
4151 AC_SUBST([BUILD_WITH_LIBOWCAPI_LIBS])
4154 # --with-libpcap {{{
4155 AC_ARG_WITH([libpcap],
4156 [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
4158 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4159 with_libpcap_cppflags="-I$withval/include"
4160 with_libpcap_ldflags="$LDFLAGS -L$withval/lib"
4163 with_libpcap="$withval"
4166 [with_libpcap="yes"]
4169 if test "x$with_libpcap" = "xyes"; then
4170 SAVE_CPPFLAGS="$CPPFLAGS"
4171 CPPFLAGS="$CPPFLAGS $with_libpcap_cppflags"
4173 AC_CHECK_HEADERS([pcap.h],
4174 [with_libpcap="yes"],
4175 [with_libpcap="no (pcap.h not found)"]
4178 CPPFLAGS="$SAVE_CPPFLAGS"
4181 if test "x$with_libpcap" = "xyes"; then
4182 SAVE_LDFLAGS="$LDFLAGS"
4183 LDFLAGS="$LDFLAGS $with_libpcap_ldflags"
4185 AC_CHECK_LIB([pcap], [pcap_open_live],
4186 [with_libpcap="yes"],
4187 [with_libpcap="no (libpcap not found)"]
4190 LDFLAGS="$SAVE_LDFLAGS"
4193 if test "x$with_libpcap" = "xyes"; then
4194 AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
4195 [c_cv_libpcap_have_pcap_error_iface_not_up],
4200 [[#include <pcap.h>]],
4202 int val = PCAP_ERROR_IFACE_NOT_UP;
4207 [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
4208 [c_cv_libpcap_have_pcap_error_iface_not_up="no"]
4214 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"; then
4215 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
4218 if test "x$with_libpcap" = "xyes"; then
4219 BUILD_WITH_LIBPCAP_CPPFLAGS="$with_libpcap_cppflags"
4220 BUILD_WITH_LIBPCAP_LDFLAGS="$with_libpcap_ldflags"
4221 BUILD_WITH_LIBPCAP_LIBS="-lpcap"
4224 AC_SUBST([BUILD_WITH_LIBPCAP_CPPFLAGS])
4225 AC_SUBST([BUILD_WITH_LIBPCAP_LDFLAGS])
4226 AC_SUBST([BUILD_WITH_LIBPCAP_LIBS])
4229 # --with-libperl {{{
4230 AC_ARG_WITH([libperl],
4231 [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
4233 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4234 LDFLAGS="$LDFLAGS -L$withval/lib"
4235 CPPFLAGS="$CPPFLAGS -I$withval/include"
4238 with_libperl="$withval"
4241 [with_libperl="yes"]
4244 AC_ARG_VAR([PERL], [path to Perl interpreter])
4245 AC_PATH_PROG([PERL], [perl])
4247 if test "x$PERL" = "x"; then
4248 with_libperl="no (no Perl interpreter found)"
4251 if test "x$with_libperl" = "xyes"; then
4252 SAVE_CFLAGS="$CFLAGS"
4254 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
4255 PERL_CFLAGS=`ARCHFLAGS="" $PERL -MExtUtils::Embed -e perl_inc`
4256 PERL_LIBS=`ARCHFLAGS="" $PERL -MExtUtils::Embed -e ldopts`
4257 CFLAGS="$CFLAGS $PERL_CFLAGS"
4258 LIBS="$LIBS $PERL_LIBS"
4260 AC_CACHE_CHECK([for libperl],
4261 [c_cv_have_libperl],
4267 #define PERL_NO_GET_CONTEXT
4274 load_module (PERL_LOADMOD_NOIMPORT,
4275 newSVpv ("Collectd::Plugin::FooBar", 24),
4280 [c_cv_have_libperl="yes"],
4281 [c_cv_have_libperl="no"]
4286 CFLAGS="$SAVE_CFLAGS"
4289 if test "x$c_cv_have_libperl" = "xno"; then
4294 if test "x$with_libperl" = "xyes"; then
4295 SAVE_CFLAGS="$CFLAGS"
4297 CFLAGS="$CFLAGS $PERL_CFLAGS"
4298 LIBS="$LIBS $PERL_LIBS"
4300 AC_CACHE_CHECK([if Perl supports ithreads],
4301 [c_cv_have_perl_ithreads],
4311 #if !defined(USE_ITHREADS)
4312 # error "Perl does not support ithreads!"
4313 #endif /* !defined(USE_ITHREADS) */
4318 [c_cv_have_perl_ithreads="yes"],
4319 [c_cv_have_perl_ithreads="no"]
4324 CFLAGS="$SAVE_CFLAGS"
4328 if test "x$with_libperl" = "xyes"; then
4329 # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
4330 # (see issues #41 and #42)
4331 SAVE_CFLAGS="$CFLAGS"
4333 CFLAGS="$CFLAGS $PERL_CFLAGS"
4334 if test "x$GCC" = "xyes"; then
4335 CFLAGS="$CFLAGS -Wall -Werror"
4337 LIBS="$LIBS $PERL_LIBS"
4339 AC_CACHE_CHECK([for broken Perl_load_module()],
4340 [c_cv_have_broken_perl_load_module],
4346 #define PERL_NO_GET_CONTEXT
4353 load_module (PERL_LOADMOD_NOIMPORT,
4354 newSVpv ("Collectd::Plugin::FooBar", 24),
4359 [c_cv_have_broken_perl_load_module="no"],
4360 [c_cv_have_broken_perl_load_module="yes"]
4365 CFLAGS="$SAVE_CFLAGS"
4369 if test "x$c_cv_have_broken_perl_load_module" = "xyes"; then
4370 PERL_CFLAGS="$PERL_CFLAGS -Wno-nonnull"
4373 if test "x$with_libperl" = "xyes"; then
4374 SAVE_CFLAGS="$CFLAGS"
4376 CFLAGS="$CFLAGS $PERL_CFLAGS"
4377 LIBS="$LIBS $PERL_LIBS"
4380 [struct mgvtbl.svt_local],
4381 [have_struct_mgvtbl_svt_local="yes"],
4382 [have_struct_mgvtbl_svt_local="no"],
4390 if test "x$have_struct_mgvtbl_svt_local" = "xyes"; then
4391 AC_DEFINE([HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL], [1], [Define if Perls struct mgvtbl has member svt_local.])
4394 CFLAGS="$SAVE_CFLAGS"
4397 AC_SUBST([PERL_CFLAGS])
4398 AC_SUBST([PERL_LIBS])
4403 with_pg_config="pg_config"
4404 AC_ARG_WITH([libpq],
4405 [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@], [Path to libpq.])],
4407 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
4408 with_libpq="$withval"
4410 if test -f "$withval" && test -x "$withval"; then
4411 with_pg_config="$withval"
4412 else if test -x "$withval/bin/pg_config"; then
4413 with_pg_config="$withval/bin/pg_config"
4421 if test "x$with_libpq" = "xyes"; then
4422 with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
4425 if test $pg_config_status -eq 0; then
4426 if test -n "$with_libpq_includedir"; then
4427 for dir in $with_libpq_includedir; do
4428 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
4432 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
4435 SAVE_CPPFLAGS="$CPPFLAGS"
4436 CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
4438 AC_CHECK_HEADERS([libpq-fe.h],
4440 [with_libpq="no (libpq-fe.h not found)"]
4443 CPPFLAGS="$SAVE_CPPFLAGS"
4446 if test "x$with_libpq" = "xyes"; then
4447 with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
4450 if test $pg_config_status -eq 0
4452 if test -n "$with_libpq_libdir"; then
4453 for dir in $with_libpq_libdir; do
4454 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
4458 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
4461 SAVE_LDFLAGS="$LDFLAGS"
4462 LDFLAGS="$LDFLAGS $with_libpq_ldflags"
4464 AC_CHECK_LIB([pq], [PQserverVersion],
4466 [with_libpq="no (symbol 'PQserverVersion' not found)"])
4468 LDFLAGS="$SAVE_LDFLAGS"
4471 if test "x$with_libpq" = "xyes"; then
4472 BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
4473 BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
4474 BUILD_WITH_LIBPQ_LIBS="-lpq"
4477 AC_SUBST([BUILD_WITH_LIBPQ_CPPFLAGS])
4478 AC_SUBST([BUILD_WITH_LIBPQ_LDFLAGS])
4479 AC_SUBST([BUILD_WITH_LIBPQ_LIBS])
4482 # --with-libpqos {{{
4483 AC_ARG_WITH([libpqos],
4484 [AS_HELP_STRING([--with-libpqos@<:@=PREFIX@:>@], [Path to libpqos.])],
4486 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4487 with_libpqos_cppflags="-I$withval/include"
4488 with_libpqos_ldflags="-L$withval/lib"
4491 with_libpqos="$withval"
4494 [with_libpqos="yes"]
4497 if test "x$with_libpqos" = "xyes"; then
4498 SAVE_CPPFLAGS="$CPPFLAGS"
4499 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4501 AC_CHECK_HEADERS([pqos.h],
4502 [with_libpqos="yes"],
4503 [with_libpqos="no (pqos.h not found)"]
4506 CPPFLAGS="$SAVE_CPPFLAGS"
4509 if test "x$with_libpqos" = "xyes"; then
4510 SAVE_LDFLAGS="$LDFLAGS"
4511 LDFLAGS="$LDFLAGS $with_libpqos_ldflags"
4513 AC_CHECK_LIB([pqos], [pqos_init],
4514 [with_libpqos="yes"],
4515 [with_libpqos="no (Can't find libpqos)"]
4518 LDFLAGS="$SAVE_LDFLAGS"
4521 if test "x$with_libpqos" = "xyes"; then
4522 SAVE_CPPFLAGS="$CPPFLAGS"
4523 CPPFLAGS="$CPPFLAGS $with_libpqos_cppflags"
4529 #if PQOS_VERSION < 106
4530 #error "required PQOS version >= 1.06"
4535 [with_libpqos="yes"],
4536 [with_libpqos="no (pqos library version 1.06 or higher is required)"]
4539 CPPFLAGS="$SAVE_CPPFLAGS"
4542 if test "x$with_libpqos" = "xyes"; then
4543 BUILD_WITH_LIBPQOS_CPPFLAGS="$with_libpqos_cppflags"
4544 BUILD_WITH_LIBPQOS_LDFLAGS="$with_libpqos_ldflags"
4545 BUILD_WITH_LIBPQOS_LIBS="-lpqos"
4548 AC_SUBST([BUILD_WITH_LIBPQOS_CPPFLAGS])
4549 AC_SUBST([BUILD_WITH_LIBPQOS_LDFLAGS])
4550 AC_SUBST([BUILD_WITH_LIBPQOS_LIBS])
4553 # --with-libjevents {{{
4554 with_libjevents_cppflags=""
4555 with_libjevents_ldflags=""
4556 AC_ARG_WITH([libjevents],
4557 [AS_HELP_STRING([--with-libjevents@<:@=PREFIX@:>@], [Path to libjevents.])],
4559 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4560 with_libjevents_cppflags="-I$withval/include"
4561 with_libjevents_ldflags="-L$withval/lib"
4562 with_libjevents="yes"
4564 with_libjevents="$withval"
4567 [with_libjevents="yes"]
4570 if test "x$with_libjevents" = "xyes"; then
4571 SAVE_CPPFLAGS="$CPPFLAGS"
4572 CPPFLAGS="$CPPFLAGS $with_libjevents_cppflags"
4574 AC_CHECK_HEADERS([jevents.h], [with_libjevents="yes"], [with_libjevents="no (jevents.h not found)"])
4576 CPPFLAGS="$SAVE_CPPFLAGS"
4578 if test "x$with_libjevents" = "xyes"; then
4579 SAVE_LDFLAGS="$LDFLAGS"
4580 LDFLAGS="$LDFLAGS $with_libjevents_ldflags"
4582 AC_CHECK_LIB([jevents], [json_events], [with_libjevents="yes"], [with_libjevents="no (Can't find libjevents)"])
4584 LDFLAGS="$SAVE_LDFLAGS"
4586 if test "x$with_libjevents" = "xyes"; then
4587 BUILD_WITH_LIBJEVENTS_CPPFLAGS="$with_libjevents_cppflags"
4588 BUILD_WITH_LIBJEVENTS_LDFLAGS="$with_libjevents_ldflags"
4589 BUILD_WITH_LIBJEVENTS_LIBS="-ljevents"
4591 AC_SUBST([BUILD_WITH_LIBJEVENTS_CPPFLAGS])
4592 AC_SUBST([BUILD_WITH_LIBJEVENTS_LDFLAGS])
4593 AC_SUBST([BUILD_WITH_LIBJEVENTS_LIBS])
4596 # --with-libprotobuf {{{
4597 with_libprotobuf_cppflags=""
4598 with_libprotobuf_ldflags=""
4599 AC_ARG_WITH([libprotobuf],
4600 [AS_HELP_STRING([--with-libprotobuf@<:@=PREFIX@:>@], [Path to libprotobuf.])],
4602 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4603 with_libprotobuf_cppflags="-I$withval/include"
4604 with_libprotobuf_ldflags="-L$withval/lib"
4605 with_libprotobuf="yes"
4607 if test "x$withval" = "xno"; then
4608 with_libprotobuf="no (disabled on command line)"
4614 if test "x$withval" = "xyes"; then
4615 PKG_CHECK_MODULES([PROTOBUF], [protobuf],
4616 [with_libprotobuf="yes"],
4617 [with_libprotobuf="no (pkg-config could not find libprotobuf)"]
4621 if test "x$withval" != "xno"; then
4622 SAVE_LDFLAGS="$LDFLAGS"
4624 LDFLAGS="$with_libprotobuf_ldflags"
4625 LIBS="$PROTOBUF_LIBS $LIBS"
4627 AC_CHECK_LIB([protobuf], [main],
4629 SAVE_CPPFLAGS="$CPPFLAGS"
4630 CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4631 if test "x$PROTOBUF_LIBS" = "x"
4633 PROTOBUF_LIBS="-lprotobuf"
4635 AC_CHECK_HEADERS([google/protobuf/util/time_util.h],
4636 [with_libprotobuf="yes"],
4637 [with_libprotobuf="no (<google/protobuf/util/time_util.h> not found)"]
4639 CPPFLAGS="$SAVE_CPPFLAGS"
4641 [with_libprotobuf="no (libprotobuf not found)"]
4644 LDFLAGS="$SAVE_LDFLAGS"
4648 BUILD_WITH_LIBPROTOBUF_CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4649 BUILD_WITH_LIBPROTOBUF_LDFLAGS="$with_libprotobuf_ldflags"
4650 BUILD_WITH_LIBPROTOBUF_LIBS="$PROTOBUF_LIBS"
4651 AC_SUBST([BUILD_WITH_LIBPROTOBUF_CPPFLAGS])
4652 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LDFLAGS])
4653 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LIBS])
4656 AC_ARG_VAR([PROTOC], [path to the protoc binary])
4657 AC_PATH_PROG([PROTOC], [protoc])
4659 if test "x$PROTOC" != "x"; then
4660 AC_MSG_CHECKING([for protoc 3.0.0+])
4661 if $PROTOC --version | $EGREP libprotoc.3 >/dev/null; then
4662 protoc3="yes (`$PROTOC --version`)"
4665 protoc3="no (`$PROTOC --version`)"
4667 AC_MSG_RESULT([$protoc3])
4669 AM_CONDITIONAL([HAVE_PROTOC3], [test "x$have_protoc3" = "xyes"])
4671 # --with-libprotobuf-c {{{
4672 AC_ARG_WITH([libprotobuf-c],
4673 [AS_HELP_STRING([--with-libprotobuf-c@<:@=PREFIX@:>@], [Path to libprotobuf-c.])],
4675 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4676 with_libprotobuf_c_cppflags="-I$withval/include"
4677 with_libprotobuf_c_ldflags="-L$withval/lib"
4678 with_libprotobuf_c="yes"
4681 if test "x$withval" = "xno"; then
4682 with_libprotobuf_c="no (disabled on command line)"
4688 if test "x$withval" = "xyes"; then
4689 PKG_CHECK_MODULES([PROTOBUF_C], [libprotobuf-c],
4690 [with_libprotobuf_c="yes"],
4691 [with_libprotobuf_c="no (pkg-config could not find libprotobuf-c)"]
4695 if test "x$withval" != "xno"; then
4696 SAVE_LDFLAGS="$LDFLAGS"
4698 LDFLAGS="$with_libprotobuf_c_ldflags"
4699 LIBS="$PROTOBUF_C_LIBS $LIBS"
4700 AC_CHECK_LIB([protobuf-c], [protobuf_c_message_pack],
4702 SAVE_CPPFLAGS="$CPPFLAGS"
4703 CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4704 if test "x$PROTOBUF_C_LIBS" = "x"; then
4705 PROTOBUF_C_LIBS="-lprotobuf-c"
4708 AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
4710 with_libprotobuf_c="yes"
4713 [with_libprotobuf_c="no (<protobuf-c.h> not found)"]
4716 CPPFLAGS="$SAVE_CPPFLAGS"
4718 [with_libprotobuf_c="no (libprotobuf-c not found)"]
4720 LDFLAGS="$SAVE_LDFLAGS"
4724 BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4725 BUILD_WITH_LIBPROTOBUF_C_LDFLAGS="$with_libprotobuf_c_ldflags"
4726 BUILD_WITH_LIBPROTOBUF_C_LIBS="$PROTOBUF_C_LIBS"
4727 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS])
4728 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LDFLAGS])
4729 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LIBS])
4732 AC_ARG_VAR([PROTOC_C], [path to the protoc-c binary])
4733 AC_PATH_PROG([PROTOC_C], [protoc-c])
4734 if test "x$PROTOC_C" = "x"
4736 have_protoc_c="no (protoc-c compiler not found)"
4741 # --with-libpython {{{
4742 AC_ARG_VAR([LIBPYTHON_CPPFLAGS], [Preprocessor flags for libpython])
4743 AC_ARG_VAR([LIBPYTHON_LDFLAGS], [Linker flags for libpython])
4744 AC_ARG_VAR([LIBPYTHON_LIBS], [Libraries for libpython])
4746 AC_ARG_WITH([libpython],
4747 [AS_HELP_STRING([--with-libpython], [if we should build with libpython @<:@default=yes@:>@])],
4748 [with_libpython="$withval"],
4749 [with_libpython="check"]
4752 if test "$with_libpython" != "no"; then
4753 if test "$LIBPYTHON_CPPFLAGS" = "" && test "$LIBPYTHON_LDFLAGS" = ""; then
4754 AC_ARG_VAR([PYTHON_CONFIG], [path to python-config])
4755 AC_PATH_PROGS([PYTHON_CONFIG],
4756 [python3-config python2-config python-config]
4758 if test "$PYTHON_CONFIG" = ""; then
4759 if test "$with_libpython" = "yes"; then
4760 AC_MSG_ERROR([Unable to find python-config])
4767 if test "$PYTHON_CONFIG" != ""; then
4768 LIBPYTHON_CPPFLAGS="`${PYTHON_CONFIG} --includes`"
4769 if test $? -ne 0; then
4772 LIBPYTHON_LDFLAGS="`${PYTHON_CONFIG} --ldflags`"
4773 if test $? -ne 0; then
4776 LIBPYTHON_LIBS="`${PYTHON_CONFIG} --libs --embed`" || LIBPYTHON_LIBS="`${PYTHON_CONFIG} --libs`"
4777 if test $? -ne 0; then
4782 if test "$with_libpython" != "xno"; then
4783 SAVE_CPPFLAGS="$CPPFLAGS"
4784 SAVE_LDFLAGS="$LDFLAGS"
4786 CPPFLAGS="$LIBPYTHON_CPPFLAGS $CPPFLAGS"
4787 LDFLAGS="$LIBPYTHON_LDFLAGS $LDFLAGS"
4788 LIBS="$LIBPYTHON_LIBS $LIBS"
4790 AC_CHECK_HEADERS([Python.h],
4792 AC_MSG_CHECKING([for libpython])
4793 AC_LINK_IFELSE([AC_LANG_PROGRAM(
4794 [[#include <Python.h>]],
4795 [[Py_Initialize();]])
4797 [with_libpython="yes"],
4798 [with_libpython="no"]
4800 AC_MSG_RESULT([$with_libpython])
4802 [with_libpython="no"]
4805 CPPFLAGS="$SAVE_CPPFLAGS"
4806 LDFLAGS="$SAVE_LDFLAGS"
4809 # }}} --with-libpython
4811 # --with-libqpid_proton {{{
4812 AC_ARG_WITH([libqpid_proton],
4813 [AS_HELP_STRING([--with-libqpid_proton@<:@=PREFIX@:>@], [Path to libqpid_proton.])],
4815 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4816 with_libqpid_proton_cppflags="-I$withval/include"
4817 with_libqpid_proton_ldflags="-L$withval/lib"
4818 with_libqpid_proton="yes"
4820 with_libqpid_proton="$withval"
4823 [with_libqpid_proton="yes"]
4826 if test "x$with_libqpid_proton" = "xyes"; then
4827 SAVE_CPPFLAGS="$CPPFLAGS"
4828 CPPFLAGS="$CPPFLAGS $with_libqpid_proton_cppflags"
4830 AC_CHECK_HEADERS([proton/proactor.h],
4831 [with_libqpid_proton="yes"],
4832 [with_libqpid_proton="no (proton/proactor.h not found)"]
4835 CPPFLAGS="$SAVE_CPPFLAGS"
4838 if test "x$with_libqpid_proton" = "xyes"; then
4839 SAVE_LDFLAGS="$LDFLAGS"
4840 LDFLAGS="$LDFLAGS $with_libqpid_proton_ldflags"
4842 AC_CHECK_LIB([qpid-proton], [pn_connection],
4843 [with_libqpid_proton="yes"],
4844 [with_libqpid_proton="no (Symbol 'pn_connection' not found)"])
4846 LDFLAGS="$SAVE_LDFLAGS"
4849 if test "x$with_libqpid_proton" = "xyes"; then
4850 BUILD_WITH_LIBQPIDPROTON_CPPFLAGS="$with_libqpid_proton_cppflags"
4851 BUILD_WITH_LIBQPIDPROTON_LDFLAGS="$with_libqpid_proton_ldflags"
4852 BUILD_WITH_LIBQPIDPROTON_LIBS="-lqpid-proton"
4855 AC_SUBST(BUILD_WITH_LIBQPIDPROTON_CPPFLAGS)
4856 AC_SUBST(BUILD_WITH_LIBQPIDPROTON_LDFLAGS)
4857 AC_SUBST(BUILD_WITH_LIBQPIDPROTON_LIBS)
4861 # --with-librabbitmq {{{
4862 AC_ARG_WITH([librabbitmq],
4863 [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
4865 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4866 with_librabbitmq_cppflags="-I$withval/include"
4867 with_librabbitmq_ldflags="-L$withval/lib"
4868 with_librabbitmq="yes"
4870 with_librabbitmq="$withval"
4873 [with_librabbitmq="yes"]
4876 if test "x$with_librabbitmq" = "xyes"; then
4877 SAVE_CPPFLAGS="$CPPFLAGS"
4878 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4880 AC_CHECK_HEADERS([amqp.h],
4881 [with_librabbitmq="yes"],
4882 [with_librabbitmq="no (amqp.h not found)"]
4885 CPPFLAGS="$SAVE_CPPFLAGS"
4888 if test "x$with_librabbitmq" = "xyes"; then
4889 # librabbitmq up to version 0.9.1 provides "library_errno", later
4890 # versions use "library_error". The library does not provide a version
4893 SAVE_CPPFLAGS="$CPPFLAGS"
4894 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4896 AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],
4903 #include <inttypes.h>
4907 CPPFLAGS="$SAVE_CPPFLAGS"
4909 SAVE_LDFLAGS="$LDFLAGS"
4910 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4912 AC_CHECK_LIB([rabbitmq], [amqp_basic_publish],
4913 [with_librabbitmq="yes"],
4914 [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"]
4917 LDFLAGS="$SAVE_LDFLAGS"
4920 if test "x$with_librabbitmq" = "xyes"; then
4921 SAVE_CPPFLAGS="$CPPFLAGS"
4922 SAVE_LDFLAGS="$LDFLAGS"
4924 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4925 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4928 AC_CHECK_HEADERS([amqp_tcp_socket.h amqp_socket.h])
4929 AC_CHECK_FUNC([amqp_tcp_socket_new],
4931 AC_DEFINE([HAVE_AMQP_TCP_SOCKET], [1],
4932 [Define if librabbitmq provides the new TCP socket interface.])
4936 AC_CHECK_DECLS([amqp_socket_close],
4941 #ifdef HAVE_AMQP_TCP_SOCKET_H
4942 # include <amqp_tcp_socket.h>
4944 #ifdef HAVE_AMQP_SOCKET_H
4945 # include <amqp_socket.h>
4950 CPPFLAGS="$SAVE_CPPFLAGS"
4951 LDFLAGS="$SAVE_LDFLAGS"
4955 if test "x$with_librabbitmq" = "xyes"; then
4956 BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
4957 BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
4958 BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
4961 AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
4962 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
4963 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
4967 # --with-librdkafka {{{
4968 AC_ARG_WITH([librdkafka],
4969 [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
4971 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
4972 with_librdkafka_cppflags="-I$withval/include"
4973 with_librdkafka_ldflags="-L$withval/lib"
4974 with_librdkafka_rpath="$withval/lib"
4975 with_librdkafka="yes"
4977 with_librdkafka="$withval"
4980 [with_librdkafka="yes"]
4983 if test "x$with_librdkafka" = "xyes"; then
4984 SAVE_CPPFLAGS="$CPPFLAGS"
4985 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
4987 AC_CHECK_HEADERS([librdkafka/rdkafka.h],
4988 [with_librdkafka="yes"],
4989 [with_librdkafka="no (librdkafka/rdkafka.h not found)"]
4992 CPPFLAGS="$SAVE_CPPFLAGS"
4995 if test "x$with_librdkafka" = "xyes"; then
4996 SAVE_LDFLAGS="$LDFLAGS"
4997 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
4999 AC_CHECK_LIB([rdkafka], [rd_kafka_new],
5000 [with_librdkafka="yes"],
5001 [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
5003 AC_CHECK_LIB([rdkafka], [rd_kafka_conf_set_log_cb],
5004 [with_librdkafka_log_cb="yes"],
5005 [with_librdkafka_log_cb="no"])
5007 AC_CHECK_LIB([rdkafka], [rd_kafka_set_logger],
5008 [with_librdkafka_logger="yes"],
5009 [with_librdkafka_logger="no"]
5012 LDFLAGS="$SAVE_LDFLAGS"
5015 if test "x$with_librdkafka" = "xyes"; then
5016 BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
5017 BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
5019 if test "x$with_librdkafka_rpath" != "x"; then
5020 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
5022 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
5025 if test "x$with_librdkafka_log_cb" = "xyes"; then
5026 AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
5027 else if test "x$with_librdkafka_logger" = "xyes"; then
5028 AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
5032 AC_SUBST([BUILD_WITH_LIBRDKAFKA_CPPFLAGS])
5033 AC_SUBST([BUILD_WITH_LIBRDKAFKA_LDFLAGS])
5034 AC_SUBST([BUILD_WITH_LIBRDKAFKA_LIBS])
5037 # --with-librouteros {{{
5038 AC_ARG_WITH([librouteros],
5039 [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
5041 if test "x$withval" = "xyes" || test "x$withval" = "xno"; then
5042 with_librouteros="$witval"
5044 with_librouteros_cppflags="-I$withval/include"
5045 with_librouteros_ldflags="-L$withval/lib"
5046 with_librouteros="yes"
5049 [with_librouteros="yes"]
5052 if test "x$with_librouteros" = "xyes"; then
5053 SAVE_CPPFLAGS="$CPPFLAGS"
5054 CPPFLAGS="$CPPFLAGS $with_librouteros_cppflags"
5056 AC_CHECK_HEADERS([routeros_api.h],
5057 [with_librouteros="yes"],
5058 [with_librouteros="no (routeros_api.h not found)"]
5061 CPPFLAGS="$SAVE_CPPFLAGS"
5064 if test "x$with_librouteros" = "xyes"; then
5065 SAVE_LDFLAGS="$LDFLAGS"
5066 LDFLAGS="$LDFLAGS $with_librouteros_ldflags"
5068 AC_CHECK_LIB([routeros], [ros_interface],
5069 [with_librouteros="yes"],
5070 [with_librouteros="no (symbol 'ros_interface' not found)"]
5073 LDFLAGS="$SAVE_LDFLAGS"
5076 if test "x$with_librouteros" = "xyes"; then
5077 BUILD_WITH_LIBROUTEROS_CPPFLAGS="$with_librouteros_cppflags"
5078 BUILD_WITH_LIBROUTEROS_LDFLAGS="$with_librouteros_ldflags"
5081 AC_SUBST([BUILD_WITH_LIBROUTEROS_CPPFLAGS])
5082 AC_SUBST([BUILD_WITH_LIBROUTEROS_LDFLAGS])
5086 librrd_threadsafe="no"
5087 librrd_rrdc_update="no"
5088 AC_ARG_WITH([librrd],
5089 [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
5091 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5092 librrd_cflags="-I$withval/include"
5093 librrd_ldflags="-L$withval/lib"
5096 with_librrd="$withval"
5102 if test "x$with_librrd" = "xyes"; then
5103 SAVE_LDFLAGS="$LDFLAGS"
5104 LDFLAGS="$LDFLAGS $librrd_ldflags"
5105 PKG_CHECK_MODULES([RRD], [librrd >= 1.6.0],
5107 AC_CHECK_LIB([rrd], [rrd_update_r],
5108 [librrd_threadsafe="yes"],
5111 AC_CHECK_LIB([rrd], [rrdc_update],
5112 [librrd_rrdc_update="yes"],
5117 LDFLAGS="$SAVE_LDFLAGS"
5119 SAVE_CPPFLAGS="$CPPFLAGS"
5120 CPPFLAGS="$CPPFLAGS $RRD_CFLAGS $librrd_cflags"
5122 AC_CHECK_HEADERS([rrd.h],, [with_librrd="no (rrd.h not found)"])
5124 CPPFLAGS="$SAVE_CPPFLAGS"
5127 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"; then
5128 SAVE_LDFLAGS="$LDFLAGS"
5129 LDFLAGS="$LDFLAGS $librrd_ldflags"
5131 AC_CHECK_LIB([rrd_th], [rrd_update_r],
5133 librrd_ldflags="$librrd_ldflags -lrrd_th"
5134 librrd_threadsafe="yes"
5135 AC_CHECK_LIB([rrd_th], [rrdc_update],
5136 [librrd_rrdc_update="yes"],
5142 LDFLAGS="$SAVE_LDFLAGS"
5145 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"; then
5146 SAVE_LDFLAGS="$LDFLAGS"
5147 LDFLAGS="$LDFLAGS $librrd_ldflags"
5149 AC_CHECK_LIB([rrd], [rrd_update],
5151 librrd_ldflags="$librrd_ldflags -lrrd"
5152 AC_CHECK_LIB([rrd], [rrdc_update],
5153 [librrd_rrdc_update="yes"],
5157 [with_librrd="no (symbol 'rrd_update' not found)"]
5159 LDFLAGS="$SAVE_LDFLAGS"
5162 if test "x$with_librrd" = "xyes"; then
5163 BUILD_WITH_LIBRRD_CFLAGS="$RRD_CFLAGS $librrd_cflags"
5164 BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
5165 BUILD_WITH_LIBRRD_LIBS="$RRD_LIBS"
5168 if test "x$librrd_threadsafe" = "xyes"; then
5169 AC_DEFINE([HAVE_THREADSAFE_LIBRRD], [1],
5170 [Define to 1 if the rrd library is thread-safe]
5174 AC_SUBST([BUILD_WITH_LIBRRD_CFLAGS])
5175 AC_SUBST([BUILD_WITH_LIBRRD_LDFLAGS])
5176 AC_SUBST([BUILD_WITH_LIBRRD_LIBS])
5179 # --with-libsensors {{{
5180 AC_ARG_WITH([libsensors],
5181 [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
5183 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5184 with_libsensors="$withval"
5186 with_sensors_cppflags="-I$withval/include"
5187 with_sensors_ldflags="-L$withval/lib"
5188 with_libsensors="yes"
5192 if test "x$ac_system" = "xLinux"; then
5193 with_libsensors="yes"
5195 with_libsensors="no (Linux only library)"
5200 if test "x$with_libsensors" = "xyes"; then
5201 SAVE_CPPFLAGS="$CPPFLAGS"
5202 CPPFLAGS="$CPPFLAGS $with_sensors_cppflags"
5204 AC_CHECK_HEADERS([sensors/sensors.h],
5205 [with_libsensors="yes"],
5206 [with_libsensors="no (sensors/sensors.h not found)"]
5209 CPPFLAGS="$SAVE_CPPFLAGS"
5212 if test "x$with_libsensors" = "xyes"; then
5213 SAVE_LDFLAGS="$LDFLAGS"
5214 LDFLAGS="$LDFLAGS $with_sensors_ldflags"
5216 AC_CHECK_LIB([sensors], [sensors_init],
5217 [with_libsensors="yes"],
5218 [with_libsensors="no (libsensors not found)"]
5221 LDFLAGS="$SAVE_LDFLAGS"
5224 if test "x$with_libsensors" = "xyes"; then
5225 SAVE_CPPFLAGS="$CPPFLAGS"
5226 CPPFLAGS="$CPPFLAGS $with_sensors_cppflags"
5231 #include <sensors/sensors.h>
5232 #if SENSORS_API_VERSION < 0x400
5233 #error "required libsensors version >= 3.0"
5238 [with_libsensors="yes"],
5239 [with_libsensors="no (sensors library version 3.0.0 or higher is required)"]
5242 CPPFLAGS="$SAVE_CPPFLAGS"
5245 if test "x$with_libsensors" = "xyes"; then
5246 BUILD_WITH_LIBSENSORS_CPPFLAGS="$with_sensors_cppflags"
5247 BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
5248 BUILD_WITH_LIBSENSORS_LIBS="-lsensors"
5251 AC_SUBST([BUILD_WITH_LIBSENSORS_CPPFLAGS])
5252 AC_SUBST([BUILD_WITH_LIBSENSORS_LDFLAGS])
5253 AC_SUBST([BUILD_WITH_LIBSENSORS_LIBS])
5258 AC_SUBST([LIBSIGROK_CFLAGS])
5259 AC_SUBST([LIBSIGROK_LIBS])
5260 PKG_CHECK_MODULES([LIBSIGROK], [libsigrok < 0.4],
5261 [with_libsigrok="yes"],
5262 [with_libsigrok="no (pkg-config could not find libsigrok)"]
5267 with_libssl_cflags=""
5268 with_libssl_ldflags=""
5269 AC_ARG_WITH([libssl], [AS_HELP_STRING([--with-libssl@<:@=PREFIX@:>@], [Path to libssl.])],
5271 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5272 with_libssl_cppflags="-I$withval/include"
5273 with_libssl_ldflags="-L$withval/lib"
5276 with_libssl="$withval"
5282 if test "x$with_libssl" = "xyes"; then
5283 SAVE_CPPFLAGS="$CPPFLAGS"
5284 CPPFLAGS="$CPPFLAGS $with_libssl_cppflags"
5286 AC_CHECK_HEADERS([openssl/sha.h openssl/blowfish.h openssl/rand.h],
5287 [with_libssl="yes"],
5288 [with_libssl="no (ssl header not found)"])
5290 CPPFLAGS="$SAVE_CPPFLAGS"
5292 if test "x$with_libssl" = "xyes"; then
5293 SAVE_CPPFLAGS="$CPPFLAGS"
5294 SAVE_LDFLAGS="$LDFLAGS"
5295 CPPFLAGS="$CPPFLAGS $with_libssl_cppflags"
5296 LDFLAGS="$LDFLAGS $with_libssl_ldflags"
5298 AC_CHECK_LIB([ssl], [OPENSSL_init_ssl], [with_libssl="yes"], [with_libssl="no (Symbol 'SSL_library_init' not found)"])
5300 CPPFLAGS="$SAVE_CPPFLAGS"
5301 LDFLAGS="$SAVE_LDFLAGS"
5303 if test "x$with_libssl" = "xyes"; then
5304 BUILD_WITH_LIBSSL_CFLAGS="$with_libssl_cflags"
5305 BUILD_WITH_LIBSSL_LDFLAGS="$with_libssl_ldflags"
5306 BUILD_WITH_LIBSSL_LIBS="-lssl -lcrypto"
5307 AC_SUBST([BUILD_WITH_LIBSSL_CFLAGS])
5308 AC_SUBST([BUILD_WITH_LIBSSL_LDFLAGS])
5309 AC_SUBST([BUILD_WITH_LIBSSL_LIBS])
5310 AC_DEFINE([HAVE_LIBSSL], [1], [Define if libssl is present and usable.])
5312 AM_CONDITIONAL(BUILD_WITH_LIBSSL, test "x$with_libssl" = "xyes")
5315 # --with-libstatgrab {{{
5316 AC_ARG_WITH([libstatgrab],
5317 [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
5319 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5320 with_libstatgrab_cflags="-I$withval/include"
5321 with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
5322 with_libstatgrab="yes"
5323 with_libstatgrab_pkg_config="no"
5325 with_libstatgrab="$withval"
5326 with_libstatgrab_pkg_config="yes"
5330 with_libstatgrab="yes"
5331 with_libstatgrab_pkg_config="yes"
5334 if test "x$with_libstatgrab" = "xyes" && test "x$with_libstatgrab_pkg_config" = "xyes"; then
5335 AC_MSG_CHECKING([pkg-config for libstatgrab])
5337 $PKG_CONFIG --exists libstatgrab 2>/dev/null
5338 if test "$?" != "0"; then
5339 with_libstatgrab_pkg_config="no"
5340 with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
5341 temp_result="not found"
5343 AC_MSG_RESULT([$temp_result])
5346 if test "x$with_libstatgrab" = "xyes" && test "x$with_libstatgrab_pkg_config" = "xyes" && test "x$with_libstatgrab_cflags" = "x"; then
5347 AC_MSG_CHECKING([for libstatgrab CFLAGS])
5348 temp_result="`$PKG_CONFIG --cflags libstatgrab`"
5349 if test "$?" = "0"; then
5350 with_libstatgrab_cflags="$temp_result"
5352 with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
5353 temp_result="$PKG_CONFIG --cflags libstatgrab failed"
5355 AC_MSG_RESULT([$temp_result])
5358 if test "x$with_libstatgrab" = "xyes" && test "x$with_libstatgrab_pkg_config" = "xyes" && test "x$with_libstatgrab_ldflags" = "x"; then
5359 AC_MSG_CHECKING([for libstatgrab LDFLAGS])
5360 temp_result="`$PKG_CONFIG --libs libstatgrab`"
5363 with_libstatgrab_ldflags="$temp_result"
5365 with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
5366 temp_result="$PKG_CONFIG --libs libstatgrab failed"
5368 AC_MSG_RESULT([$temp_result])
5371 if test "x$with_libstatgrab" = "xyes"; then
5372 SAVE_CPPFLAGS="$CPPFLAGS"
5373 CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
5375 AC_CHECK_HEADERS([statgrab.h],
5376 [with_libstatgrab="yes"],
5377 [with_libstatgrab="no (statgrab.h not found)"]
5380 CPPFLAGS="$SAVE_CPPFLAGS"
5383 if test "x$with_libstatgrab" = "xyes"; then
5384 SAVE_LDFLAGS="$LDFLAGS"
5385 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
5387 AC_CHECK_LIB([statgrab], [sg_init],
5388 [with_libstatgrab="yes"],
5389 [with_libstatgrab="no (symbol sg_init not found)"]
5392 LDFLAGS="$SAVE_LDFLAGS"
5395 if test "x$with_libstatgrab" = "xyes"; then
5396 SAVE_CFLAGS="$CFLAGS"
5397 SAVE_LDFLAGS="$LDFLAGS"
5400 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
5401 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
5402 LIBS="-lstatgrab $LIBS"
5404 AC_CACHE_CHECK([if libstatgrab >= 0.90],
5405 [c_cv_have_libstatgrab_0_90],
5412 #include <statgrab.h>
5415 if (sg_init()) return 0;
5419 [c_cv_have_libstatgrab_0_90="no"],
5420 [c_cv_have_libstatgrab_0_90="yes"]
5425 CFLAGS="$SAVE_CFLAGS"
5426 LDFLAGS="$SAVE_LDFLAGS"
5430 AM_CONDITIONAL([BUILD_WITH_LIBSTATGRAB], [test "x$with_libstatgrab" = "xyes"])
5432 if test "x$with_libstatgrab" = "xyes"; then
5433 AC_DEFINE([HAVE_LIBSTATGRAB], [1],
5434 [Define to 1 if you have the 'statgrab' library (-lstatgrab)]
5437 if test "x$c_cv_have_libstatgrab_0_90" = "xyes"; then
5438 AC_DEFINE([HAVE_LIBSTATGRAB_0_90], [1],
5439 [Define to 1 if libstatgrab version >= 0.90]
5443 BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
5444 BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
5448 AC_SUBST([BUILD_WITH_LIBSTATGRAB_CFLAGS])
5449 AC_SUBST([BUILD_WITH_LIBSTATGRAB_LDFLAGS])
5452 # --with-libtokyotyrant {{{
5453 AC_ARG_WITH([libtokyotyrant],
5454 [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
5456 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5457 with_libtokyotyrant="$withval"
5459 with_libtokyotyrant_cppflags="-I$withval/include"
5460 with_libtokyotyrant_ldflags="-L$withval/include"
5461 with_libtokyotyrant_libs="-ltokyotyrant"
5462 with_libtokyotyrant="yes"
5465 [with_libtokyotyrant="yes"]
5468 if test "x$with_libtokyotyrant" = "xyes"; then
5469 if $PKG_CONFIG --exists tokyotyrant; then
5470 with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
5471 with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
5472 with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
5476 if test "x$with_libtokyotyrant" = "xyes"; then
5477 SAVE_CPPFLAGS="$CPPFLAGS"
5478 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
5480 AC_CHECK_HEADERS([tcrdb.h],
5481 [with_libtokyotyrant="yes"],
5482 [with_libtokyotyrant="no (tcrdb.h not found)"]
5485 CPPFLAGS="$SAVE_CPPFLAGS"
5488 if test "x$with_libtokyotyrant" = "xyes"; then
5489 SAVE_LDFLAGS="$LDFLAGS"
5490 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
5492 AC_CHECK_LIB([tokyotyrant], [tcrdbrnum],
5493 [with_libtokyotyrant="yes"],
5494 [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
5495 [$with_libtokyotyrant_libs]
5498 LDFLAGS="$SAVE_LDFLAGS"
5501 if test "x$with_libtokyotyrant" = "xyes"; then
5502 BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
5503 BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
5504 BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
5506 AC_SUBST([BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS])
5507 AC_SUBST([BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS])
5508 AC_SUBST([BUILD_WITH_LIBTOKYOTYRANT_LIBS])
5511 # --with-libudev {{{
5512 AC_ARG_WITH([libudev],
5513 [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
5515 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5516 with_libudev="$withval"
5518 with_libudev_cppflags="-I$withval/include"
5519 with_libudev_ldflags="-L$withval/lib"
5524 if test "x$ac_system" = "xLinux"; then
5527 with_libudev="no (Linux only library)"
5532 if test "x$with_libudev" = "xyes"; then
5533 SAVE_CPPFLAGS="$CPPFLAGS"
5534 CPPFLAGS="$CPPFLAGS $with_libudev_cppflags"
5536 AC_CHECK_HEADERS([libudev.h],
5537 [with_libudev="yes"],
5538 [with_libudev="no (libudev.h not found)"]
5541 CPPFLAGS="$SAVE_CPPFLAGS"
5544 if test "x$with_libudev" = "xyes"; then
5545 SAVE_LDFLAGS="$LDFLAGS"
5546 LDFLAGS="$LDFLAGS $with_libudev_ldflags"
5548 AC_CHECK_LIB([udev], [udev_new],
5549 [with_libudev="yes"],
5550 [with_libudev="no (libudev not found)"]
5553 LDFLAGS="$SAVE_LDFLAGS"
5556 if test "x$with_libudev" = "xyes"; then
5557 BUILD_WITH_LIBUDEV_CPPFLAGS="$with_libudev_cppflags"
5558 BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
5559 BUILD_WITH_LIBUDEV_LIBS="-ludev"
5562 AC_SUBST([BUILD_WITH_LIBUDEV_CPPFLAGS])
5563 AC_SUBST([BUILD_WITH_LIBUDEV_LDFLAGS])
5564 AC_SUBST([BUILD_WITH_LIBUDEV_LIBS])
5566 AM_CONDITIONAL([BUILD_WITH_LIBUDEV], [test "x$with_libudev" = "xyes"])
5569 # --with-libupsclient {{{
5570 with_libupsclient_config=""
5571 AC_ARG_WITH([libupsclient],
5572 [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
5574 if test "x$withval" = "xno"; then
5575 with_libupsclient="no"
5576 else if test "x$withval" = "xyes"; then
5577 with_libupsclient="use_pkgconfig"
5579 if test -x "$withval"; then
5580 with_libupsclient_config="$withval"
5581 with_libupsclient="use_libupsclient_config"
5582 else if test -x "$withval/bin/libupsclient-config"; then
5583 with_libupsclient_config="$withval/bin/libupsclient-config"
5584 with_libupsclient="use_libupsclient_config"
5586 AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
5587 with_libupsclient_cflags="-I$withval/include"
5588 with_libupsclient_libs="-L$withval/lib -lupsclient"
5589 with_libupsclient="yes"
5593 [with_libupsclient="use_pkgconfig"]
5596 # configure using libupsclient-config
5597 if test "x$with_libupsclient" = "xuse_libupsclient_config"; then
5598 with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
5599 if test $? -ne 0; then
5600 with_libupsclient="no ($with_libupsclient_config failed)"
5602 with_libupsclient_libs="`$with_libupsclient_config --libs`"
5603 if test $? -ne 0; then
5604 with_libupsclient="no ($with_libupsclient_config failed)"
5608 if test "x$with_libupsclient" = "xuse_libupsclient_config"; then
5609 with_libupsclient="yes"
5612 # configure using pkg-config
5613 if test "x$with_libupsclient" = "xuse_pkgconfig"; then
5614 $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
5615 if test $? -ne 0; then
5616 with_libupsclient="no (pkg-config doesn't know libupsclient)"
5620 if test "x$with_libupsclient" = "xuse_pkgconfig"; then
5621 with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
5622 if test $? -ne 0; then
5623 with_libupsclient="no ($PKG_CONFIG failed)"
5626 with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
5627 if test $? -ne 0; then
5628 with_libupsclient="no ($PKG_CONFIG failed)"
5632 if test "x$with_libupsclient" = "xuse_pkgconfig"; then
5633 with_libupsclient="yes"
5636 if test "x$with_libupsclient" = "xyes"; then
5637 SAVE_CPPFLAGS="$CPPFLAGS"
5638 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
5640 AC_CHECK_HEADERS([upsclient.h],
5641 [with_libupsclient="yes"],
5642 [with_libupsclient="no (upsclient.h not found)"]
5645 CPPFLAGS="$SAVE_CPPFLAGS"
5648 if test "x$with_libupsclient" = "xyes"; then
5649 SAVE_LDFLAGS="$LDFLAGS"
5650 LDFLAGS="$LDFLAGS $with_libupsclient_libs"
5652 AC_CHECK_LIB([upsclient], [upscli_connect],
5653 [with_libupsclient="yes"],
5654 [with_libupsclient="no (symbol upscli_connect not found)"]
5657 AC_CHECK_LIB([upsclient], [upscli_init],
5658 [AC_DEFINE([HAVE_UPSCLI_INIT], [1], [Define when upscli_init() (since version 2-7) is available.])]
5661 AC_CHECK_LIB([upsclient], [upscli_tryconnect],
5662 [AC_DEFINE([HAVE_UPSCLI_TRYCONNECT], [1], [Define when upscli_tryconnect() (since version 2.6.2) is available.])]
5665 LDFLAGS="$SAVE_LDFLAGS"
5668 if test "x$with_libupsclient" = "xyes"; then
5669 SAVE_CPPFLAGS="$CPPFLAGS"
5670 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
5672 AC_CHECK_TYPES([UPSCONN_t, UPSCONN],
5678 #include <upsclient.h>
5682 CPPFLAGS="$SAVE_CPPFLAGS"
5685 if test "x$with_libupsclient" = "xyes"; then
5686 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
5687 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
5690 AC_SUBST([BUILD_WITH_LIBUPSCLIENT_CFLAGS])
5691 AC_SUBST([BUILD_WITH_LIBUPSCLIENT_LIBS])
5694 # --with-libxenctrl {{{
5695 AC_ARG_WITH([libxenctrl],
5696 [AS_HELP_STRING([--with-libxenctrl@<:@=PREFIX@:>@], [Path to libxenctrl.])],
5698 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5699 with_libxenctrl_cppflags="-I$withval/include"
5700 with_libxenctrl_ldflags="-L$withval/lib"
5701 with_libxenctrl="yes"
5703 with_libxenctrl="$withval"
5706 [with_libxenctrl="yes"]
5709 if test "x$with_libxenctrl" = "xyes"; then
5710 SAVE_CPPFLAGS="$CPPFLAGS"
5711 CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
5713 AC_CHECK_HEADERS([xenctrl.h],
5714 [with_libxenctrl="yes"],
5715 [with_libxenctrl="no (xenctrl.h not found)"]
5718 CPPFLAGS="$SAVE_CPPFLAGS"
5721 if test "x$with_libxenctrl" = "xyes"; then
5722 SAVE_LDFLAGS="$LDFLAGS"
5723 LDFLAGS="$LDFLAGS $with_libxenctrl_ldflags"
5725 #Xen versions older than 3.4 has no xc_getcpuinfo()
5726 AC_CHECK_LIB([xenctrl], [xc_getcpuinfo],
5727 [with_libxenctrl="yes"],
5728 [with_libxenctrl="no (symbol 'xc_getcpuinfo' not found)"]
5731 LDFLAGS="$SAVE_LDFLAGS"
5734 LIBXENCTL_CPPFLAGS="$with_libxenctl_cppflags"
5735 LIBXENCTL_LDFLAGS="$with_libxenctl_ldflags"
5736 AC_SUBST([LIBXENCTL_CPPFLAGS])
5737 AC_SUBST([LIBXENCTL_LDFLAGS])
5740 # --with-libxmms {{{
5741 with_xmms_config="xmms-config"
5742 AC_ARG_WITH([libxmms],
5743 [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
5745 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5746 with_libxmms="$withval"
5748 if test -f "$withval" && test -x "$withval"; then
5749 with_xmms_config="$withval"
5750 else if test -x "$withval/bin/xmms-config"; then
5751 with_xmms_config="$withval/bin/xmms-config"
5756 [with_libxmms="yes"]
5759 if test "x$with_libxmms" = "xyes"; then
5760 with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
5761 if test $? -ne 0; then
5766 if test "x$with_libxmms" = "xyes"; then
5767 with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
5768 if test $? -ne 0; then
5773 if test "x$with_libxmms" = "xyes"; then
5774 SAVE_CPPFLAGS="$CFLAGS"
5775 CPPFLAGS="$with_xmms_cflags"
5777 AC_CHECK_HEADER([xmmsctrl.h],
5778 [with_libxmms="yes"],
5779 [with_libxmms="no"],
5782 CPPFLAGS="$SAVE_CPPFLAGS"
5785 if test "x$with_libxmms" = "xyes"; then
5787 LIBS="$with_xmms_libs"
5789 AC_CHECK_LIB([xmms], [xmms_remote_get_info],
5790 [with_libxmss="yes"],
5791 [with_libxmms="no"],
5799 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
5800 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
5802 AC_SUBST([BUILD_WITH_LIBXMMS_CFLAGS])
5803 AC_SUBST([BUILD_WITH_LIBXMMS_LIBS])
5806 # --with-libyajl {{{
5807 AC_ARG_WITH([libyajl],
5808 [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
5810 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
5811 with_libyajl_cppflags="-I$withval/include"
5812 with_libyajl_ldflags="-L$withval/lib"
5815 with_libyajl="$withval"
5818 [with_libyajl="yes"]
5821 if test "x$with_libyajl" = "xyes"; then
5822 SAVE_CPPFLAGS="$CPPFLAGS"
5823 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5825 AC_CHECK_HEADERS([yajl/yajl_parse.h],
5826 [with_libyajl="yes"],
5827 [with_libyajl="no (yajl/yajl_parse.h not found)"]
5830 AC_CHECK_HEADERS([yajl/yajl_tree.h],
5831 [with_libyajl2="yes"],
5832 [with_libyajl2="no (yajl/yajl_tree.h not found)"]
5835 AC_CHECK_HEADERS([yajl/yajl_version.h])
5837 CPPFLAGS="$SAVE_CPPFLAGS"
5840 if test "x$with_libyajl" = "xyes"; then
5841 SAVE_LDFLAGS="$LDFLAGS"
5842 LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
5844 AC_CHECK_LIB([yajl], [yajl_alloc],
5845 [with_libyajl="yes"],
5846 [with_libyajl="no (Symbol 'yajl_alloc' not found)"]
5849 AC_CHECK_LIB([yajl], [yajl_tree_parse],
5850 [with_libyajl2="yes"],
5851 [with_libyajl2="no (Symbol 'yajl_tree_parse' not found)"]
5854 LDFLAGS="$SAVE_LDFLAGS"
5857 if test "x$with_libyajl" = "xyes"; then
5858 BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
5859 BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
5860 BUILD_WITH_LIBYAJL_LIBS="-lyajl"
5861 AC_DEFINE([HAVE_LIBYAJL], [1], [Define if libyajl is present and usable.])
5864 AC_SUBST([BUILD_WITH_LIBYAJL_CPPFLAGS])
5865 AC_SUBST([BUILD_WITH_LIBYAJL_LDFLAGS])
5866 AC_SUBST([BUILD_WITH_LIBYAJL_LIBS])
5868 AM_CONDITIONAL([BUILD_WITH_LIBYAJL], [test "x$with_libyajl" = "xyes"])
5869 AM_CONDITIONAL([BUILD_WITH_LIBYAJL2], [test "x$with_libyajl$with_libyajl2" = "xyesyes"])
5873 with_mic_cppflags="-I/opt/intel/mic/sysmgmt/sdk/include"
5874 with_mic_ldflags="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
5875 with_mic_libs="-lMicAccessSDK -scif"
5877 [AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
5879 if test "x$withval" = "xno" || test "x$withval" = "xyes"; then
5881 else if test -d "$with_mic/lib"; then
5882 with_mic_cppflags="-I$withval/include"
5883 with_mic_ldflags="-L$withval/lib/Linux"
5890 if test "x$with_mic" = "xyes"; then
5891 SAVE_CPPFLAGS="$CPPFLAGS"
5892 CPPFLAGS="$CPPFLAGS $with_mic_cppflags"
5894 AC_CHECK_HEADERS([MicAccessApi.h],
5896 [with_mic="no (MicAccessApi not found)"]
5899 CPPFLAGS="$SAVE_CPPFLAGS"
5902 if test "x$with_mic" = "xyes"; then
5903 SAVE_LDFLAGS="$LDFLAGS"
5904 LDFLAGS="$LDFLAGS $with_mic_ldflags"
5906 AC_CHECK_LIB([MicAccessSDK], [MicInitAPI],
5908 [with_mic="no (symbol MicInitAPI not found)"],
5909 [$PTHREAD_LIBS -lscif]
5912 LDFLAGS="$SAVE_LDFLAGS"
5915 if test "x$with_mic" = "xyes"; then
5916 BUILD_WITH_MIC_CPPFLAGS="$with_mic_cppflags"
5917 BUILD_WITH_MIC_LDFLAGS="$with_mic_ldflags"
5918 BUILD_WITH_MIC_LIBS="$with_mic_libs"
5920 AC_SUBST([BUILD_WITH_MIC_CPPFLAGS])
5921 AC_SUBST([BUILD_WITH_MIC_LDFLAGS])
5922 AC_SUBST([BUILD_WITH_MIC_LIBS])
5925 # --with-libvarnish {{{
5926 AC_ARG_WITH([libvarnish],
5927 [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
5929 if test "x$withval" = "xno"; then
5930 with_libvarnish="no"
5931 else if test "x$withval" = "xyes"; then
5932 with_libvarnish="use_pkgconfig"
5933 else if test -d "$with_libvarnish/lib"; then
5934 with_libvarnish_cflags="-I$withval/include"
5935 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
5936 with_libvarnish="yes"
5939 [with_libvarnish="use_pkgconfig"]
5942 # configure using pkg-config
5943 if test "x$with_libvarnish" = "xuse_pkgconfig"; then
5944 $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
5945 if test $? -ne 0; then
5946 with_libvarnish="no (pkg-config doesn't know varnishapi)"
5950 if test "x$with_libvarnish" = "xuse_pkgconfig"; then
5951 with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
5952 if test $? -ne 0; then
5953 with_libvarnish="no ($PKG_CONFIG failed)"
5956 with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
5957 if test $? -ne 0; then
5958 with_libvarnish="no ($PKG_CONFIG failed)"
5961 if test "x$with_libvarnish" = "xuse_pkgconfig"; then
5962 with_libvarnish="yes"
5965 if test "x$with_libvarnish" = "xyes"; then
5966 SAVE_CPPFLAGS="$CPPFLAGS"
5967 CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
5969 $PKG_CONFIG --atleast-version=5.2 'varnishapi' 2>/dev/null
5970 if test $? -eq 0; then
5971 AC_DEFINE([HAVE_VARNISH_V5], [1], [Varnish 5 API support])
5973 AC_CHECK_HEADERS([vapi/vsc.h],
5974 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
5976 AC_CHECK_HEADERS([vsc.h],
5977 [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support]) ],
5979 AC_CHECK_HEADERS([varnishapi.h],
5980 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
5981 [with_libvarnish="no (found none of the varnish header files)"]
5989 CPPFLAGS="$SAVE_CPPFLAGS"
5992 if test "x$with_libvarnish" = "xyes"; then
5993 BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
5994 BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
5997 AC_SUBST([BUILD_WITH_LIBVARNISH_CFLAGS])
5998 AC_SUBST([BUILD_WITH_LIBVARNISH_LIBS])
6001 # --with-libxml2 {{{
6002 AC_ARG_WITH(libxml2,
6003 [AS_HELP_STRING([--with-libxml2@<:@=PREFIX@:>@], [Path to libxml2.])],
6005 if test "x$withval" = "xno"; then
6007 else if test "x$withval" = "xyes"; then
6008 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
6009 if test $? -eq 0; then
6011 with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
6012 with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
6014 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
6018 with_libxml2_cflags="-I$withval/include"
6019 with_libxml2_ldflags="-L$withval/lib"
6022 dnl if no argument --with-libxml2 was passed, find the library locations
6023 dnl with pkg-config just like above, when --with-libxml2=yes.
6026 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
6027 if test $? -eq 0; then
6029 with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
6030 with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
6032 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
6037 if test "x$with_libxml2" = "xyes"; then
6038 SAVE_CPPFLAGS="$CPPFLAGS"
6039 CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
6041 AC_CHECK_HEADERS([libxml/parser.h],
6042 [with_libxml2="yes"],
6043 [with_libxml2="no (libxml/parser.h not found)"]
6046 CPPFLAGS="$SAVE_CPPFLAGS"
6049 if test "x$with_libxml2" = "xyes"; then
6050 SAVE_LDFLAGS="$LDFLAGS"
6051 LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
6053 AC_CHECK_LIB([xml2], [xmlXPathEval],
6054 [with_libxml2="yes"],
6055 [with_libxml2="no (symbol xmlXPathEval not found)"]
6058 LDFLAGS="$SAVE_LDFLAGS"
6061 if test "x$with_libxml2" = "xyes"; then
6062 BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
6063 BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
6066 AC_SUBST([BUILD_WITH_LIBXML2_CFLAGS])
6067 AC_SUBST([BUILD_WITH_LIBXML2_LIBS])
6070 # pkg-config --exists libvirt {{{
6071 $PKG_CONFIG --exists libvirt 2>/dev/null
6072 if test $? = 0; then
6075 with_libvirt="no (pkg-config doesn't know libvirt)"
6078 if test "x$with_libvirt" = "xyes"; then
6079 with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
6080 if test $? -ne 0; then
6084 with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
6085 if test $? -ne 0; then
6090 if test "x$with_libvirt" = "xyes"; then
6091 SAVE_CPPFLAGS="$CPPFLAGS"
6092 CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
6094 AC_CHECK_HEADERS([libvirt/libvirt.h],
6095 [with_libvirt="yes"],
6096 [with_libvirt="no (libvirt/libvirt.h not found)"]
6099 CPPFLAGS="$SAVE_CPPFLAGS"
6102 if test "x$with_libvirt" = "xyes"; then
6103 SAVE_LDFLAGS="$LDFLAGS"
6104 LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
6106 AC_CHECK_LIB([virt], [virDomainBlockStats],
6107 [with_libvirt="yes"],
6108 [with_libvirt="no (symbol virDomainBlockStats not found)"]
6111 LDFLAGS="$SAVE_LDFLAGS"
6114 if test "x$with_libvirt" = "xyes"; then
6115 BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
6116 BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
6119 AC_SUBST([BUILD_WITH_LIBVIRT_CFLAGS])
6120 AC_SUBST([BUILD_WITH_LIBVIRT_LIBS])
6123 # $PKG_CONFIG --exists OpenIPMIpthread {{{
6124 with_libopenipmipthread="yes"
6125 AC_MSG_CHECKING([for libOpenIPMIpthread])
6126 $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
6127 if test $? -ne 0; then
6128 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
6130 AC_MSG_RESULT([$with_libopenipmipthread])
6132 if test "x$with_libopenipmipthread" = "xyes"; then
6133 AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
6134 temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
6135 if test $? -eq 0; then
6136 with_libopenipmipthread_cflags="$temp_result"
6138 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
6139 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
6141 AC_MSG_RESULT([$temp_result])
6144 if test "x$with_libopenipmipthread" = "xyes"; then
6145 AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
6146 temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
6147 if test $? -eq 0; then
6148 with_libopenipmipthread_ldflags="$temp_result"
6150 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
6151 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
6153 AC_MSG_RESULT([$temp_result])
6156 if test "x$with_libopenipmipthread" = "xyes"; then
6157 SAVE_CPPFLAGS="$CPPFLAGS"
6158 CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
6160 AC_CHECK_HEADERS([OpenIPMI/ipmi_smi.h],
6161 [with_libopenipmipthread="yes"],
6162 [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
6164 #include <OpenIPMI/ipmiif.h>
6165 #include <OpenIPMI/ipmi_err.h>
6166 #include <OpenIPMI/ipmi_posix.h>
6167 #include <OpenIPMI/ipmi_conn.h>
6171 CPPFLAGS="$SAVE_CPPFLAGS"
6174 if test "x$with_libopenipmipthread" = "xyes"; then
6175 BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
6176 BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
6179 AC_SUBST([BUILD_WITH_OPENIPMI_CFLAGS])
6180 AC_SUBST([BUILD_WITH_OPENIPMI_LIBS])
6183 # --with-libatasmart {{{
6184 AC_ARG_WITH([libatasmart],
6185 [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
6187 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
6188 with_libatasmart_cppflags="-I$withval/include"
6189 with_libatasmart_ldflags="-L$withval/lib"
6190 with_libatasmart="yes"
6192 with_libatasmart="$withval"
6196 if test "x$ac_system" = "xLinux"; then
6197 with_libatasmart="yes"
6199 with_libatasmart="no (Linux only library)"
6204 if test "x$with_libatasmart" = "xyes"; then
6205 SAVE_CPPFLAGS="$CPPFLAGS"
6206 CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
6208 AC_CHECK_HEADERS([atasmart.h],
6209 [with_libatasmart="yes"],
6210 [with_libatasmart="no (atasmart.h not found)"])
6212 CPPFLAGS="$SAVE_CPPFLAGS"
6215 if test "x$with_libatasmart" = "xyes"; then
6216 SAVE_LDFLAGS="$LDFLAGS"
6217 LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
6219 AC_CHECK_LIB([atasmart], [sk_disk_open],
6220 [with_libatasmart="yes"],
6221 [with_libatasmart="no (Symbol 'sk_disk_open' not found)"]
6224 LDFLAGS="$SAVE_LDFLAGS"
6227 if test "x$with_libatasmart" = "xyes"; then
6228 BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
6229 BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
6230 BUILD_WITH_LIBATASMART_LIBS="-latasmart"
6233 AC_SUBST([BUILD_WITH_LIBATASMART_CPPFLAGS])
6234 AC_SUBST([BUILD_WITH_LIBATASMART_LDFLAGS])
6235 AC_SUBST([BUILD_WITH_LIBATASMART_LIBS])
6238 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
6239 [with_libnotify="yes"],
6240 [with_libnotify="no (pkg-config doesn't know libnotify)"]
6243 PKG_CHECK_MODULES([LIBRIEMANN_CLIENT], [riemann-client >= 1.6.0],
6244 [with_libriemann_client="yes"],
6245 [with_libriemann_client="no (pkg-config doesn't know libriemann-client)"]
6248 # Check for enabled/disabled features
6251 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
6252 # ------------------------------------------------------------
6254 m4_define([my_toupper],[m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
6259 m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
6264 m4_define([EnDis],[disabled])dnl
6265 m4_define([YesNo],[no])dnl
6271 m4_define([EnDis],[enabled])dnl
6272 m4_define([YesNo],[yes])dnl
6275 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
6279 m4_if([$3], [feature], [],
6283 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
6289 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
6291 enable_$1='[YesNo]'dnl
6293 if test "x$enable_$1" = "xno"; then
6296 if test "x$enable_$1" = "xyes"; then
6299 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
6304 AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [whether or not to enable $3 $4])
6305 AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
6307 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
6309 # AC_PLUGIN(name, default, info)
6310 # ------------------------------------------------------------
6318 [AS_HELP_STRING([--enable-$1],[$3])],
6320 if test "x$enableval" = "xyes"; then
6322 else if test "x$enableval" = "xforce"; then
6326 enable_plugin="no (disabled on command line)"
6330 if test "x$enable_all_plugins" = "xauto"; then
6331 if test "x$2" = "xyes"; then
6337 enable_plugin="$enable_all_plugins"
6341 if test "x$enable_plugin" = "xyes"; then
6342 if test "x$2" = "xyes" || test "x$force" = "xyes"; then
6343 AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
6344 if test "x$2" != "xyes"; then
6345 dependency_warning="yes"
6347 else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
6348 dependency_error="yes"
6349 enable_plugin="$2 (dependency error)"
6352 AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), [test "x$enable_plugin" = "xyes"])
6353 enable_$1="$enable_plugin"
6355 )# AC_PLUGIN(name, default, info)
6357 m4_divert_once([HELP_ENABLE], [
6358 collectd features:])
6359 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
6360 AC_COLLECTD([debug], [enable], [feature], [debugging])
6361 AC_COLLECTD([daemon], [disable], [feature], [daemon mode])
6362 AC_COLLECTD([getifaddrs],[enable], [feature], [getifaddrs under Linux])
6363 AC_COLLECTD([werror], [disable], [feature], [building with -Werror])
6365 dependency_warning="no"
6366 dependency_error="no"
6369 plugin_barometer="no"
6374 plugin_conntrack="no"
6375 plugin_contextswitch="no"
6378 plugin_cpusleep="no"
6379 plugin_curl_json="no"
6380 plugin_curl_xml="no"
6384 plugin_dpdkevents="no"
6385 plugin_dpdkstat="no"
6391 plugin_gpu_nvidia="no"
6393 plugin_hugepages="no"
6394 plugin_intel_pmu="no"
6395 plugin_intel_rdt="no"
6396 plugin_interface="no"
6402 plugin_log_logstash="no"
6405 plugin_multimeter="no"
6408 plugin_ovs_events="no"
6409 plugin_ovs_stats="no"
6410 plugin_pcie_errors="no"
6413 plugin_processes="no"
6414 plugin_protocols="no"
6419 plugin_synproxy="no"
6421 plugin_tcpconns="no"
6424 plugin_turbostat="no"
6430 plugin_wireless="no"
6431 plugin_write_prometheus="no"
6432 plugin_write_stackdriver="no"
6436 plugin_zookeeper="no"
6439 if test "x$ac_system" = "xLinux"; then
6440 plugin_battery="yes"
6441 plugin_cgroups="yes"
6442 plugin_conntrack="yes"
6443 plugin_contextswitch="yes"
6445 plugin_cpufreq="yes"
6448 plugin_entropy="yes"
6449 plugin_fhcount="yes"
6450 plugin_fscache="yes"
6451 plugin_hugepages="yes"
6452 plugin_interface="yes"
6461 plugin_processes="yes"
6462 plugin_protocols="yes"
6465 plugin_synproxy="yes"
6466 plugin_tcpconns="yes"
6467 plugin_thermal="yes"
6470 plugin_vserver="yes"
6471 plugin_wireless="yes"
6472 plugin_zfs_arc="yes"
6474 if test "x$ac_cv_header_linux_ip_vs_h" = "xyes"; then
6478 if test "x$have_cpuid_h" = "xyes"; then
6479 plugin_turbostat="yes"
6482 if test "x$c_cv_have_clock_boottime_monotonic" = "xyes"; then
6483 plugin_cpusleep="yes"
6486 if test "x$with_libyajl" = "xyes" && test "x$with_libyajl2" = "xyes"; then
6487 plugin_ovs_events="yes"
6488 plugin_ovs_stats="yes"
6491 if test "x$have_pci_regs_h" = "xyes"; then
6492 plugin_pcie_errors="yes"
6496 if test "x$ac_system" = "xOpenBSD"; then
6497 plugin_tcpconns="yes"
6500 if test "x$ac_system" = "xNetBSD"; then
6502 plugin_entropy="yes"
6504 plugin_processes="yes"
6508 if test "x$with_libiokit" = "xyes"; then
6509 plugin_battery="yes"
6515 if test "x$ac_system" = "xAIX"; then
6517 plugin_tcpconns="yes"
6522 if test "x$ac_system" = "xFreeBSD"; then
6523 plugin_cpufreq="yes"
6525 plugin_zfs_arc="yes"
6529 if test "x$with_perfstat" = "xyes"; then
6530 plugin_contextswitch="yes"
6533 plugin_interface="yes"
6540 if test "x$with_procinfo" = "xyes"; then
6541 plugin_processes="yes"
6545 if test "x$with_kstat" = "xyes"; then
6547 plugin_processes="yes"
6549 plugin_zfs_arc="yes"
6553 if test "x$with_devinfo" = "xyes" && test "x$with_kstat" = "xyes"; then
6556 plugin_interface="yes"
6561 if test "x$with_libi2c" = "xyes"; then
6562 plugin_barometer="yes"
6567 if test "x$with_libstatgrab" = "xyes"; then
6570 plugin_interface="yes"
6577 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"; then
6579 if test "x$have_strptime" = "xyes"; then
6584 if test "x$with_libopenipmipthread" = "xyes"; then
6588 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"; then
6589 plugin_curl_json="yes"
6592 if test "x$with_libcurl" = "xyes" && test "x$with_libssl" = "xyes" && test "x$with_libyajl" = "xyes" && test "x$with_libyajl2" = "xyes"; then
6593 plugin_write_stackdriver="yes"
6596 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"; then
6597 plugin_curl_xml="yes"
6600 if test "x$with_libyajl" = "xyes"; then
6604 if test "x$have_processor_info" = "xyes"; then
6608 if test "x$have_sysctl" = "xyes"; then
6612 if test "x$ac_system" = "xDarwin"; then
6617 if test "x$have_sysctlbyname" = "xyes"; then
6618 plugin_contextswitch="yes"
6621 plugin_tcpconns="yes"
6624 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"; then
6628 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"; then
6632 if test "x$c_cv_have_one_getmntent" = "xyes"; then
6636 if test "x$have_getmntent_r" = "xyes"; then
6640 if test "x$plugin_df" = "xyes"; then
6642 if test "x$have_statfs" = "xyes"; then
6646 if test "x$have_statvfs" = "xyes"; then
6651 if test "x$have_linux_sockios_h" = "xyes" && test "x$have_linux_ethtool_h" = "xyes"; then
6652 plugin_ethstat="yes"
6655 if test "x$with_libgps" = "xyes"; then
6660 if test "x$GRPC_CPP_PLUGIN" = "x"; then
6661 plugin_grpc="no (grpc_cpp_plugin not found)"
6663 if test "x$have_protoc3" != "xyes"; then
6664 plugin_grpc="no (protoc3 not found)"
6666 if test "x$with_libprotobuf" != "xyes"; then
6667 plugin_grpc="no (libprotobuf not found)"
6669 if test "x$with_libgrpcpp" != "xyes"; then
6670 plugin_grpc="no (libgrpc++ not found)"
6673 if test "x$have_getifaddrs" = "xyes"; then
6674 plugin_interface="yes"
6677 if test "x$have_getloadavg" = "xyes"; then
6681 if test "x$with_libyajl" = "xyes"; then
6682 plugin_log_logstash="yes"
6685 if test "x$with_libperl" = "xyes" && test "x$c_cv_have_perl_ithreads" = "xyes"; then
6689 if test "x$have_protoc_c" = "xyes" && test "x$with_libprotobuf_c" = "xyes"; then
6691 if test "x$with_libmicrohttpd" = "xyes"; then
6692 plugin_write_prometheus="yes"
6696 # Mac OS X memory interface
6697 if test "x$have_host_statistics" = "xyes"; then
6701 if test "x$have_termios_h" = "xyes"; then
6702 if test "x$ac_system" != "xAIX"; then
6703 plugin_multimeter="yes"
6708 if test "x$have_thread_info" = "xyes"; then
6709 plugin_processes="yes"
6712 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"; then
6713 plugin_processes="yes"
6716 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"; then
6717 plugin_processes="yes"
6720 if test "x$with_libpython" != "xno"; then
6724 if test "x$with_libatasmart" = "xyes" && test "x$with_libudev" = "xyes"; then
6728 if test "x$with_kvm_getswapinfo" = "xyes"; then
6732 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"; then
6736 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_three_args" = "xyes"; then
6740 if test "x$with_kvm_openfiles = "xyes" && $with_kvm_nlist" = "xyes"; then
6741 plugin_tcpconns="yes"
6744 if test "x$have_getutent" = "xyes"; then
6748 if test "x$have_getutxent" = "xyes"; then
6752 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"; then
6756 if test "x$with_libxenctrl" = "xyes"; then
6760 if test "x$with_libdpdk" = "xyes"; then
6761 plugin_dpdkevents="$dpdk_keepalive"
6762 plugin_dpdkstat="yes"
6765 m4_divert_once([HELP_ENABLE], [
6768 AC_ARG_ENABLE([all-plugins],
6769 [AS_HELP_STRING([--enable-all-plugins], [enable all plugins @<:@default=yes@:>@])],
6771 if test "x$enableval" = "xyes"; then
6772 enable_all_plugins="yes"
6773 else if test "x$enableval" = "xauto"; then
6774 enable_all_plugins="auto"
6776 enable_all_plugins="no"
6779 [enable_all_plugins="auto"]
6782 m4_divert_once([HELP_ENABLE], [])
6784 AC_PLUGIN([aggregation], [yes], [Aggregation plugin])
6785 AC_PLUGIN([amqp], [$with_librabbitmq], [AMQP output plugin])
6786 AC_PLUGIN([amqp1], [$with_libqpid_proton], [AMQP 1.0 output plugin])
6787 AC_PLUGIN([apache], [$with_libcurl], [Apache httpd statistics])
6788 AC_PLUGIN([apcups], [yes], [Statistics of UPSes by APC])
6789 AC_PLUGIN([apple_sensors], [$with_libiokit], [Apple hardware sensors])
6790 AC_PLUGIN([aquaero], [$with_libaquaero5], [Aquaero hardware sensors])
6791 AC_PLUGIN([ascent], [$plugin_ascent], [AscentEmu player statistics])
6792 AC_PLUGIN([barometer], [$plugin_barometer], [Barometer sensor on I2C])
6793 AC_PLUGIN([battery], [$plugin_battery], [Battery statistics])
6794 AC_PLUGIN([bind], [$plugin_bind], [ISC Bind nameserver statistics])
6795 AC_PLUGIN([ceph], [$plugin_ceph], [Ceph daemon statistics])
6796 AC_PLUGIN([cgroups], [$plugin_cgroups], [CGroups CPU usage accounting])
6797 AC_PLUGIN([chrony], [yes], [Chrony statistics])
6798 AC_PLUGIN([conntrack], [$plugin_conntrack], [nf_conntrack statistics])
6799 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
6800 AC_PLUGIN([cpu], [$plugin_cpu], [CPU usage statistics])
6801 AC_PLUGIN([cpufreq], [$plugin_cpufreq], [CPU frequency statistics])
6802 AC_PLUGIN([cpusleep], [$plugin_cpusleep], [CPU sleep statistics])
6803 AC_PLUGIN([csv], [yes], [CSV output plugin])
6804 AC_PLUGIN([curl], [$with_libcurl], [CURL generic web statistics])
6805 AC_PLUGIN([curl_json], [$plugin_curl_json], [CouchDB statistics])
6806 AC_PLUGIN([curl_xml], [$plugin_curl_xml], [CURL generic xml statistics])
6807 AC_PLUGIN([dbi], [$with_libdbi], [General database statistics])
6808 AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics])
6809 AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics])
6810 AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis])
6811 AC_PLUGIN([dpdkevents], [$plugin_dpdkevents], [Events from DPDK])
6812 AC_PLUGIN([dpdkstat], [$plugin_dpdkstat], [Stats from DPDK])
6813 AC_PLUGIN([drbd], [$plugin_drbd], [DRBD statistics])
6814 AC_PLUGIN([email], [yes], [EMail statistics])
6815 AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics])
6816 AC_PLUGIN([ethstat], [$plugin_ethstat], [Stats from NIC driver])
6817 AC_PLUGIN([exec], [yes], [Execution of external programs])
6818 AC_PLUGIN([fhcount], [$plugin_fhcount], [File handles statistics])
6819 AC_PLUGIN([filecount], [yes], [Count files in directories])
6820 AC_PLUGIN([fscache], [$plugin_fscache], [fscache statistics])
6821 AC_PLUGIN([gmond], [$with_libganglia], [Ganglia plugin])
6822 AC_PLUGIN([gps], [$plugin_gps], [GPS plugin])
6823 AC_PLUGIN([gpu_nvidia], [$with_cuda], [NVIDIA GPU plugin])
6824 AC_PLUGIN([grpc], [$plugin_grpc], [gRPC plugin])
6825 AC_PLUGIN([hddtemp], [yes], [Query hddtempd])
6826 AC_PLUGIN([hugepages], [$plugin_hugepages], [Hugepages statistics])
6827 AC_PLUGIN([intel_pmu], [$with_libjevents], [Intel performance monitor plugin])
6828 AC_PLUGIN([intel_rdt], [$with_libpqos], [Intel RDT monitor plugin])
6829 AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics])
6830 AC_PLUGIN([ipc], [$plugin_ipc], [IPC statistics])
6831 AC_PLUGIN([ipmi], [$plugin_ipmi], [IPMI sensor statistics])
6832 AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
6833 AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
6834 AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
6835 AC_PLUGIN([java], [$with_java], [Embed the Java Virtual Machine])
6836 AC_PLUGIN([load], [$plugin_load], [System load])
6837 AC_PLUGIN([log_logstash], [$plugin_log_logstash], [Logstash json_event compatible logging])
6838 AC_PLUGIN([logfile], [yes], [File logging plugin])
6839 AC_PLUGIN([lpar], [$with_perfstat], [AIX logical partitions statistics])
6840 AC_PLUGIN([lua], [$with_liblua], [Lua plugin])
6841 AC_PLUGIN([lvm], [$with_liblvm2app], [LVM statistics])
6842 AC_PLUGIN([madwifi], [$have_linux_wireless_h], [Madwifi wireless statistics])
6843 AC_PLUGIN([match_empty_counter], [yes], [The empty counter match])
6844 AC_PLUGIN([match_hashed], [yes], [The hashed match])
6845 AC_PLUGIN([match_regex], [yes], [The regex match])
6846 AC_PLUGIN([match_timediff], [yes], [The timediff match])
6847 AC_PLUGIN([match_value], [yes], [The value match])
6848 AC_PLUGIN([mbmon], [yes], [Query mbmond])
6849 AC_PLUGIN([mcelog], [$plugin_mcelog], [Machine Check Exceptions notifications])
6850 AC_PLUGIN([md], [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
6851 AC_PLUGIN([memcachec], [$with_libmemcached], [memcachec statistics])
6852 AC_PLUGIN([memcached], [yes], [memcached statistics])
6853 AC_PLUGIN([memory], [$plugin_memory], [Memory usage])
6854 AC_PLUGIN([mic], [$with_mic], [Intel Many Integrated Core stats])
6855 AC_PLUGIN([modbus], [$with_libmodbus], [Modbus plugin])
6856 AC_PLUGIN([mqtt], [$with_libmosquitto], [MQTT output plugin])
6857 AC_PLUGIN([multimeter], [$plugin_multimeter], [Read multimeter values])
6858 AC_PLUGIN([mysql], [$with_libmysql], [MySQL statistics])
6859 AC_PLUGIN([netapp], [$with_libnetapp], [NetApp plugin])
6860 AC_PLUGIN([netlink], [$with_libmnl], [Enhanced Linux network statistics])
6861 AC_PLUGIN([network], [yes], [Network communication plugin])
6862 AC_PLUGIN([nfs], [$plugin_nfs], [NFS statistics])
6863 AC_PLUGIN([nginx], [$with_libcurl], [nginx statistics])
6864 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
6865 AC_PLUGIN([notify_email], [$with_libesmtp], [Email notifier])
6866 AC_PLUGIN([notify_nagios], [yes], [Nagios notification plugin])
6867 AC_PLUGIN([ntpd], [yes], [NTPd statistics])
6868 AC_PLUGIN([numa], [$plugin_numa], [NUMA virtual memory statistics])
6869 AC_PLUGIN([nut], [$with_libupsclient], [Network UPS tools statistics])
6870 AC_PLUGIN([olsrd], [yes], [olsrd statistics])
6871 AC_PLUGIN([onewire], [$with_libowcapi], [OneWire sensor statistics])
6872 AC_PLUGIN([openldap], [$with_libldap], [OpenLDAP statistics])
6873 AC_PLUGIN([openvpn], [yes], [OpenVPN client statistics])
6874 AC_PLUGIN([oracle], [$with_oracle], [Oracle plugin])
6875 AC_PLUGIN([ovs_events], [$plugin_ovs_events], [OVS events plugin])
6876 AC_PLUGIN([ovs_stats], [$plugin_ovs_stats], [OVS statistics plugin])
6877 AC_PLUGIN([pcie_errors], [$plugin_pcie_errors], [PCIe errors plugin])
6878 AC_PLUGIN([perl], [$plugin_perl], [Embed a Perl interpreter])
6879 AC_PLUGIN([pf], [$have_net_pfvar_h], [BSD packet filter (PF) statistics])
6880 # FIXME: Check for libevent, too.
6881 AC_PLUGIN([pinba], [$plugin_pinba], [Pinba statistics])
6882 AC_PLUGIN([ping], [$with_liboping], [Network latency statistics])
6883 AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics])
6884 AC_PLUGIN([powerdns], [yes], [PowerDNS statistics])
6885 AC_PLUGIN([processes], [$plugin_processes], [Process statistics])
6886 AC_PLUGIN([protocols], [$plugin_protocols], [Protocol (IP, TCP, ...) statistics])
6887 AC_PLUGIN([python], [$plugin_python], [Embed a Python interpreter])
6888 AC_PLUGIN([redis], [$with_libhiredis], [Redis plugin])
6889 AC_PLUGIN([routeros], [$with_librouteros], [RouterOS plugin])
6890 AC_PLUGIN([rrdcached], [$librrd_rrdc_update], [RRDTool output plugin])
6891 AC_PLUGIN([rrdtool], [$with_librrd], [RRDTool output plugin])
6892 AC_PLUGIN([sensors], [$with_libsensors], [lm_sensors statistics])
6893 AC_PLUGIN([serial], [$plugin_serial], [serial port traffic])
6894 AC_PLUGIN([sigrok], [$with_libsigrok], [sigrok acquisition sources])
6895 AC_PLUGIN([smart], [$plugin_smart], [SMART statistics])
6896 AC_PLUGIN([snmp], [$with_libnetsnmp], [SNMP querying plugin])
6897 AC_PLUGIN([snmp_agent], [$with_libnetsnmpagent], [SNMP agent plugin])
6898 AC_PLUGIN([statsd], [yes], [StatsD plugin])
6899 AC_PLUGIN([swap], [$plugin_swap], [Swap usage statistics])
6900 AC_PLUGIN([synproxy], [$plugin_synproxy], [Synproxy stats plugin])
6901 AC_PLUGIN([syslog], [$have_syslog], [Syslog logging plugin])
6902 AC_PLUGIN([table], [yes], [Parsing of tabular data])
6903 AC_PLUGIN([tail], [yes], [Parsing of logfiles])
6904 AC_PLUGIN([tail_csv], [yes], [Parsing of CSV files])
6905 AC_PLUGIN([tape], [$plugin_tape], [Tape drive statistics])
6906 AC_PLUGIN([target_notification], [yes], [The notification target])
6907 AC_PLUGIN([target_replace], [yes], [The replace target])
6908 AC_PLUGIN([target_scale], [yes], [The scale target])
6909 AC_PLUGIN([target_set], [yes], [The set target])
6910 AC_PLUGIN([target_v5upgrade], [yes], [The v5upgrade target])
6911 AC_PLUGIN([tcpconns], [$plugin_tcpconns], [TCP connection statistics])
6912 AC_PLUGIN([teamspeak2], [yes], [TeamSpeak2 server statistics])
6913 AC_PLUGIN([ted], [$plugin_ted], [Read The Energy Detective values])
6914 AC_PLUGIN([thermal], [$plugin_thermal], [Linux ACPI thermal zone statistics])
6915 AC_PLUGIN([threshold], [yes], [Threshold checking plugin])
6916 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant], [TokyoTyrant database statistics])
6917 AC_PLUGIN([turbostat], [$plugin_turbostat], [Advanced statistic on Intel cpu states])
6918 AC_PLUGIN([unixsock], [yes], [Unixsock communication plugin])
6919 AC_PLUGIN([uptime], [$plugin_uptime], [Uptime statistics])
6920 AC_PLUGIN([users], [$plugin_users], [User statistics])
6921 AC_PLUGIN([uuid], [yes], [UUID as hostname plugin])
6922 AC_PLUGIN([varnish], [$with_libvarnish], [Varnish cache statistics])
6923 AC_PLUGIN([virt], [$plugin_virt], [Virtual machine statistics])
6924 AC_PLUGIN([vmem], [$plugin_vmem], [Virtual memory statistics])
6925 AC_PLUGIN([vserver], [$plugin_vserver], [Linux VServer statistics])
6926 AC_PLUGIN([wireless], [$plugin_wireless], [Wireless statistics])
6927 AC_PLUGIN([write_graphite], [yes], [Graphite / Carbon output plugin])
6928 AC_PLUGIN([write_http], [$with_libcurl], [HTTP output plugin])
6929 AC_PLUGIN([write_kafka], [$with_librdkafka], [Kafka output plugin])
6930 AC_PLUGIN([write_log], [yes], [Log output plugin])
6931 AC_PLUGIN([write_mongodb], [$with_libmongoc], [MongoDB output plugin])
6932 AC_PLUGIN([write_prometheus], [$plugin_write_prometheus], [Prometheus write plugin])
6933 AC_PLUGIN([write_redis], [$with_libhiredis], [Redis output plugin])
6934 AC_PLUGIN([write_riemann], [$with_libriemann_client], [Riemann output plugin])
6935 AC_PLUGIN([write_sensu], [yes], [Sensu output plugin])
6936 AC_PLUGIN([write_stackdriver], [$plugin_write_stackdriver], [Google Stackdriver Monitoring output plugin])
6937 AC_PLUGIN([write_syslog], [yes], [Syslog output plugin])
6938 AC_PLUGIN([write_tsdb], [yes], [TSDB output plugin])
6939 AC_PLUGIN([xencpu], [$plugin_xencpu], [Xen Host CPU usage])
6940 AC_PLUGIN([xmms], [$with_libxmms], [XMMS statistics])
6941 AC_PLUGIN([zfs_arc], [$plugin_zfs_arc], [ZFS ARC statistics])
6942 AC_PLUGIN([zone], [$plugin_zone], [Solaris container statistics])
6943 AC_PLUGIN([zookeeper], [yes], [Zookeeper statistics])
6945 dnl Default configuration file
6946 # Load either syslog or logfile
6947 LOAD_PLUGIN_SYSLOG=""
6948 LOAD_PLUGIN_LOGFILE=""
6949 LOAD_PLUGIN_LOG_LOGSTASH=""
6951 AC_MSG_CHECKING([which default log plugin to load])
6952 default_log_plugin="none"
6953 if test "x$enable_syslog" = "xyes"; then
6954 default_log_plugin="syslog"
6956 LOAD_PLUGIN_SYSLOG="##"
6959 if test "x$enable_logfile" = "xyes"; then
6960 if test "x$default_log_plugin" = "xnone"; then
6961 default_log_plugin="logfile"
6963 LOAD_PLUGIN_LOGFILE="#"
6966 LOAD_PLUGIN_LOGFILE="##"
6969 if test "x$enable_log_logstash" = "xyes"; then
6970 LOAD_PLUGIN_LOG_LOGSTASH="#"
6972 LOAD_PLUGIN_LOG_LOGSTASH="##"
6975 AC_MSG_RESULT([$default_log_plugin])
6977 AC_SUBST([LOAD_PLUGIN_SYSLOG])
6978 AC_SUBST([LOAD_PLUGIN_LOGFILE])
6979 AC_SUBST([LOAD_PLUGIN_LOG_LOGSTASH])
6981 if test "x$enable_debug" = "xyes"; then
6982 DEFAULT_LOG_LEVEL="debug"
6984 DEFAULT_LOG_LEVEL="info"
6986 AC_SUBST([DEFAULT_LOG_LEVEL])
6988 # Load only one of rrdtool, network, csv in the default config.
6989 LOAD_PLUGIN_RRDTOOL=""
6990 LOAD_PLUGIN_NETWORK=""
6993 AC_MSG_CHECKING([which default write plugin to load])
6994 default_write_plugin="none"
6995 if test "x$enable_rrdtool" = "xyes"; then
6996 default_write_plugin="rrdtool"
6998 LOAD_PLUGIN_RRDTOOL="##"
7001 if test "x$enable_network" = "xyes"; then
7002 if test "x$default_write_plugin" = "xnone"; then
7003 default_write_plugin="network"
7005 LOAD_PLUGIN_NETWORK="#"
7008 LOAD_PLUGIN_NETWORK="##"
7011 if test "x$enable_csv" = "xyes"; then
7012 if test "x$default_write_plugin" = "xnone"; then
7013 default_write_plugin="csv"
7018 LOAD_PLUGIN_CSV="##"
7020 AC_MSG_RESULT([$default_write_plugin])
7022 AC_SUBST([LOAD_PLUGIN_RRDTOOL])
7023 AC_SUBST([LOAD_PLUGIN_NETWORK])
7024 AC_SUBST([LOAD_PLUGIN_CSV])
7027 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
7028 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
7030 if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
7031 PERL_BINDINGS_OPTIONS="$withval"
7032 with_perl_bindings="yes"
7034 with_perl_bindings="$withval"
7038 if test "x$PERL" != "x"; then
7039 with_perl_bindings="yes"
7041 with_perl_bindings="no (no perl interpreter found)"
7045 if test "x$with_perl_bindings" = "xyes"; then
7046 AC_MSG_CHECKING([for the ExtUtils::MakeMaker module])
7047 if $PERL -MExtUtils::MakeMaker -e '' 2>/dev/null; then
7048 AC_MSG_RESULT([yes])
7051 with_perl_bindings="no (ExtUtils::MakeMaker not found)"
7055 if test "x$with_perl_bindings" = "xyes"; then
7056 PERL_BINDINGS="perl"
7061 AC_SUBST([PERL_BINDINGS])
7062 AC_SUBST([PERL_BINDINGS_OPTIONS])
7064 dnl libcollectdclient
7065 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
7066 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
7067 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
7069 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
7071 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
7073 AC_SUBST([LCC_VERSION_MAJOR])
7074 AC_SUBST([LCC_VERSION_MINOR])
7075 AC_SUBST([LCC_VERSION_PATCH])
7076 AC_SUBST([LCC_VERSION_EXTRA])
7077 AC_SUBST([LCC_VERSION_STRING])
7079 AC_CONFIG_FILES([src/libcollectdclient/collectd/lcc_features.h])
7081 if test "x$GCC" = "xyes"; then
7084 if test "x$enable_werror" != "xno"; then
7085 AM_CFLAGS="$AM_CFLAGS -Werror"
7086 AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
7090 AC_SUBST([AM_CFLAGS])
7091 AC_SUBST([AM_CXXFLAGS])
7096 src/libcollectdclient/libcollectdclient.pc \
7101 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" != "xyes"; then
7102 with_librrd="yes (warning: librrd is not thread-safe)"
7105 if test "x$with_libperl" = "xyes"; then
7106 with_libperl="yes (version `$PERL -MConfig -e 'print $Config{version};'`)"
7108 enable_perl="no (needs libperl)"
7111 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"; then
7112 enable_perl="no (libperl doesn't support ithreads)"
7115 if test "x$with_perl_bindings" = "xyes" && test "x$PERL_BINDINGS_OPTIONS" != "x"; then
7116 with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
7120 AC_MSG_RESULT([Configuration:])
7121 AC_MSG_RESULT([ Build:])
7122 AC_MSG_RESULT([ Platform . . . . . . $ac_system])
7123 AC_MSG_RESULT([ Compiler vendor . . . $ax_cv_c_compiler_vendor])
7124 AC_MSG_RESULT([ CC . . . . . . . . . $CC])
7125 AC_MSG_RESULT([ CFLAGS . . . . . . . $AM_CFLAGS $CFLAGS])
7126 AC_MSG_RESULT([ CXXFLAGS . . . . . . $AM_CXXFLAGS $CXXFLAGS])
7127 AC_MSG_RESULT([ CPP . . . . . . . . . $CPP])
7128 AC_MSG_RESULT([ CPPFLAGS . . . . . . $CPPFLAGS])
7129 AC_MSG_RESULT([ GRPC_CPP_PLUGIN . . . $GRPC_CPP_PLUGIN])
7130 AC_MSG_RESULT([ LD . . . . . . . . . $LD])
7131 AC_MSG_RESULT([ LDFLAGS . . . . . . . $LDFLAGS])
7132 AC_MSG_RESULT([ PROTOC . . . . . . . $PROTOC])
7133 AC_MSG_RESULT([ YACC . . . . . . . . $YACC])
7134 AC_MSG_RESULT([ YFLAGS . . . . . . . $YFLAGS])
7136 AC_MSG_RESULT([ Libraries:])
7137 AC_MSG_RESULT([ intel mic . . . . . . $with_mic])
7138 AC_MSG_RESULT([ libaquaero5 . . . . . $with_libaquaero5])
7139 AC_MSG_RESULT([ libatasmart . . . . . $with_libatasmart])
7140 AC_MSG_RESULT([ libcurl . . . . . . . $with_libcurl])
7141 AC_MSG_RESULT([ libdbi . . . . . . . $with_libdbi])
7142 AC_MSG_RESULT([ libdpdk . . . . . . . $with_libdpdk])
7143 AC_MSG_RESULT([ libesmtp . . . . . . $with_libesmtp])
7144 AC_MSG_RESULT([ libganglia . . . . . $with_libganglia])
7145 AC_MSG_RESULT([ libgcrypt . . . . . . $with_libgcrypt])
7146 AC_MSG_RESULT([ libgps . . . . . . . $with_libgps])
7147 AC_MSG_RESULT([ libgrpc++ . . . . . . $with_libgrpcpp])
7148 AC_MSG_RESULT([ libhiredis . . . . . $with_libhiredis])
7149 AC_MSG_RESULT([ libi2c-dev . . . . . $with_libi2c])
7150 AC_MSG_RESULT([ libiokit . . . . . . $with_libiokit])
7151 AC_MSG_RESULT([ libiptc . . . . . . . $with_libiptc])
7152 AC_MSG_RESULT([ libjevents . . . . . $with_libjevents])
7153 AC_MSG_RESULT([ libjvm . . . . . . . $with_java])
7154 AC_MSG_RESULT([ libkstat . . . . . . $with_kstat])
7155 AC_MSG_RESULT([ libkvm . . . . . . . $with_libkvm])
7156 AC_MSG_RESULT([ libldap . . . . . . . $with_libldap])
7157 AC_MSG_RESULT([ liblua . . . . . . . $with_liblua])
7158 AC_MSG_RESULT([ liblvm2app . . . . . $with_liblvm2app])
7159 AC_MSG_RESULT([ libmemcached . . . . $with_libmemcached])
7160 AC_MSG_RESULT([ libmicrohttpd . . . . $with_libmicrohttpd])
7161 AC_MSG_RESULT([ libmnl . . . . . . . $with_libmnl])
7162 AC_MSG_RESULT([ libmodbus . . . . . . $with_libmodbus])
7163 AC_MSG_RESULT([ libmongoc . . . . . . $with_libmongoc])
7164 AC_MSG_RESULT([ libmosquitto . . . . $with_libmosquitto])
7165 AC_MSG_RESULT([ libmysql . . . . . . $with_libmysql])
7166 AC_MSG_RESULT([ libnetapp . . . . . . $with_libnetapp])
7167 AC_MSG_RESULT([ libnetsnmp . . . . . $with_libnetsnmp])
7168 AC_MSG_RESULT([ libnetsnmpagent . . . $with_libnetsnmpagent])
7169 AC_MSG_RESULT([ libnotify . . . . . . $with_libnotify])
7170 AC_MSG_RESULT([ libnvidia-ml . . . . $with_cuda])
7171 AC_MSG_RESULT([ libopenipmi . . . . . $with_libopenipmipthread])
7172 AC_MSG_RESULT([ liboping . . . . . . $with_liboping])
7173 AC_MSG_RESULT([ libowcapi . . . . . . $with_libowcapi])
7174 AC_MSG_RESULT([ libpcap . . . . . . . $with_libpcap])
7175 AC_MSG_RESULT([ libperfstat . . . . . $with_perfstat])
7176 AC_MSG_RESULT([ libperl . . . . . . . $with_libperl])
7177 AC_MSG_RESULT([ libpq . . . . . . . . $with_libpq])
7178 AC_MSG_RESULT([ libpqos . . . . . . . $with_libpqos])
7179 AC_MSG_RESULT([ libprotobuf . . . . . $with_libprotobuf])
7180 AC_MSG_RESULT([ libprotobuf-c . . . . $with_libprotobuf_c])
7181 AC_MSG_RESULT([ libpython . . . . . . $with_libpython])
7182 AC_MSG_RESULT([ libqpid-proton . . . $with_libqpid_proton])
7183 AC_MSG_RESULT([ librabbitmq . . . . . $with_librabbitmq])
7184 AC_MSG_RESULT([ libriemann-client . . $with_libriemann_client])
7185 AC_MSG_RESULT([ librdkafka . . . . . $with_librdkafka])
7186 AC_MSG_RESULT([ librouteros . . . . . $with_librouteros])
7187 AC_MSG_RESULT([ librrd . . . . . . . $with_librrd])
7188 AC_MSG_RESULT([ libsensors . . . . . $with_libsensors])
7189 AC_MSG_RESULT([ libsigrok . . . . . $with_libsigrok])
7190 AC_MSG_RESULT([ libssl . . . . . . . $with_libssl])
7191 AC_MSG_RESULT([ libstatgrab . . . . . $with_libstatgrab])
7192 AC_MSG_RESULT([ libtokyotyrant . . . $with_libtokyotyrant])
7193 AC_MSG_RESULT([ libudev . . . . . . . $with_libudev])
7194 AC_MSG_RESULT([ libupsclient . . . . $with_libupsclient])
7195 AC_MSG_RESULT([ libvarnish . . . . . $with_libvarnish])
7196 AC_MSG_RESULT([ libvirt . . . . . . . $with_libvirt])
7197 AC_MSG_RESULT([ libxenctrl . . . . . $with_libxenctrl])
7198 AC_MSG_RESULT([ libxml2 . . . . . . . $with_libxml2])
7199 AC_MSG_RESULT([ libxmms . . . . . . . $with_libxmms])
7200 AC_MSG_RESULT([ libyajl . . . . . . . $with_libyajl])
7201 AC_MSG_RESULT([ oracle . . . . . . . $with_oracle])
7202 AC_MSG_RESULT([ protobuf-c . . . . . $have_protoc_c])
7203 AC_MSG_RESULT([ protoc 3 . . . . . . $have_protoc3])
7205 AC_MSG_RESULT([ Features:])
7206 AC_MSG_RESULT([ daemon mode . . . . . $enable_daemon])
7207 AC_MSG_RESULT([ debug . . . . . . . . $enable_debug])
7209 AC_MSG_RESULT([ Bindings:])
7210 AC_MSG_RESULT([ perl . . . . . . . . $with_perl_bindings])
7212 AC_MSG_RESULT([ Modules:])
7213 AC_MSG_RESULT([ aggregation . . . . . $enable_aggregation])
7214 AC_MSG_RESULT([ amqp . . . . . . . $enable_amqp])
7215 AC_MSG_RESULT([ amqp1 . . . . . . . $enable_amqp1])
7216 AC_MSG_RESULT([ apache . . . . . . . $enable_apache])
7217 AC_MSG_RESULT([ apcups . . . . . . . $enable_apcups])
7218 AC_MSG_RESULT([ apple_sensors . . . . $enable_apple_sensors])
7219 AC_MSG_RESULT([ aquaero . . . . . . . $enable_aquaero])
7220 AC_MSG_RESULT([ ascent . . . . . . . $enable_ascent])
7221 AC_MSG_RESULT([ barometer . . . . . . $enable_barometer])
7222 AC_MSG_RESULT([ battery . . . . . . . $enable_battery])
7223 AC_MSG_RESULT([ bind . . . . . . . . $enable_bind])
7224 AC_MSG_RESULT([ ceph . . . . . . . . $enable_ceph])
7225 AC_MSG_RESULT([ cgroups . . . . . . . $enable_cgroups])
7226 AC_MSG_RESULT([ chrony. . . . . . . . $enable_chrony])
7227 AC_MSG_RESULT([ conntrack . . . . . . $enable_conntrack])
7228 AC_MSG_RESULT([ contextswitch . . . . $enable_contextswitch])
7229 AC_MSG_RESULT([ cpu . . . . . . . . . $enable_cpu])
7230 AC_MSG_RESULT([ cpufreq . . . . . . . $enable_cpufreq])
7231 AC_MSG_RESULT([ cpusleep . . . . . . $enable_cpusleep])
7232 AC_MSG_RESULT([ csv . . . . . . . . . $enable_csv])
7233 AC_MSG_RESULT([ curl . . . . . . . . $enable_curl])
7234 AC_MSG_RESULT([ curl_json . . . . . . $enable_curl_json])
7235 AC_MSG_RESULT([ curl_xml . . . . . . $enable_curl_xml])
7236 AC_MSG_RESULT([ dbi . . . . . . . . . $enable_dbi])
7237 AC_MSG_RESULT([ df . . . . . . . . . $enable_df])
7238 AC_MSG_RESULT([ disk . . . . . . . . $enable_disk])
7239 AC_MSG_RESULT([ dns . . . . . . . . . $enable_dns])
7240 AC_MSG_RESULT([ dpdkevents. . . . . . $enable_dpdkevents])
7241 AC_MSG_RESULT([ dpdkstat . . . . . . $enable_dpdkstat])
7242 AC_MSG_RESULT([ drbd . . . . . . . . $enable_drbd])
7243 AC_MSG_RESULT([ email . . . . . . . . $enable_email])
7244 AC_MSG_RESULT([ entropy . . . . . . . $enable_entropy])
7245 AC_MSG_RESULT([ ethstat . . . . . . . $enable_ethstat])
7246 AC_MSG_RESULT([ exec . . . . . . . . $enable_exec])
7247 AC_MSG_RESULT([ fhcount . . . . . . . $enable_fhcount])
7248 AC_MSG_RESULT([ filecount . . . . . . $enable_filecount])
7249 AC_MSG_RESULT([ fscache . . . . . . . $enable_fscache])
7250 AC_MSG_RESULT([ gmond . . . . . . . . $enable_gmond])
7251 AC_MSG_RESULT([ gps . . . . . . . . . $enable_gps])
7252 AC_MSG_RESULT([ gpu_nvidia . . . . . $enable_gpu_nvidia])
7253 AC_MSG_RESULT([ grpc . . . . . . . . $enable_grpc])
7254 AC_MSG_RESULT([ hddtemp . . . . . . . $enable_hddtemp])
7255 AC_MSG_RESULT([ hugepages . . . . . . $enable_hugepages])
7256 AC_MSG_RESULT([ intel_pmu . . . . . . $enable_intel_pmu])
7257 AC_MSG_RESULT([ intel_rdt . . . . . . $enable_intel_rdt])
7258 AC_MSG_RESULT([ interface . . . . . . $enable_interface])
7259 AC_MSG_RESULT([ ipc . . . . . . . . . $enable_ipc])
7260 AC_MSG_RESULT([ ipmi . . . . . . . . $enable_ipmi])
7261 AC_MSG_RESULT([ iptables . . . . . . $enable_iptables])
7262 AC_MSG_RESULT([ ipvs . . . . . . . . $enable_ipvs])
7263 AC_MSG_RESULT([ irq . . . . . . . . . $enable_irq])
7264 AC_MSG_RESULT([ java . . . . . . . . $enable_java])
7265 AC_MSG_RESULT([ load . . . . . . . . $enable_load])
7266 AC_MSG_RESULT([ logfile . . . . . . . $enable_logfile])
7267 AC_MSG_RESULT([ log_logstash . . . . $enable_log_logstash])
7268 AC_MSG_RESULT([ lpar . . . . . . . . $enable_lpar])
7269 AC_MSG_RESULT([ lua . . . . . . . . . $enable_lua])
7270 AC_MSG_RESULT([ lvm . . . . . . . . . $enable_lvm])
7271 AC_MSG_RESULT([ madwifi . . . . . . . $enable_madwifi])
7272 AC_MSG_RESULT([ match_empty_counter . $enable_match_empty_counter])
7273 AC_MSG_RESULT([ match_hashed . . . . $enable_match_hashed])
7274 AC_MSG_RESULT([ match_regex . . . . . $enable_match_regex])
7275 AC_MSG_RESULT([ match_timediff . . . $enable_match_timediff])
7276 AC_MSG_RESULT([ match_value . . . . . $enable_match_value])
7277 AC_MSG_RESULT([ mbmon . . . . . . . . $enable_mbmon])
7278 AC_MSG_RESULT([ mcelog . . . . . . . $enable_mcelog])
7279 AC_MSG_RESULT([ md . . . . . . . . . $enable_md])
7280 AC_MSG_RESULT([ memcachec . . . . . . $enable_memcachec])
7281 AC_MSG_RESULT([ memcached . . . . . . $enable_memcached])
7282 AC_MSG_RESULT([ memory . . . . . . . $enable_memory])
7283 AC_MSG_RESULT([ mic . . . . . . . . . $enable_mic])
7284 AC_MSG_RESULT([ modbus . . . . . . . $enable_modbus])
7285 AC_MSG_RESULT([ mqtt . . . . . . . . $enable_mqtt])
7286 AC_MSG_RESULT([ multimeter . . . . . $enable_multimeter])
7287 AC_MSG_RESULT([ mysql . . . . . . . . $enable_mysql])
7288 AC_MSG_RESULT([ netapp . . . . . . . $enable_netapp])
7289 AC_MSG_RESULT([ netlink . . . . . . . $enable_netlink])
7290 AC_MSG_RESULT([ network . . . . . . . $enable_network])
7291 AC_MSG_RESULT([ nfs . . . . . . . . . $enable_nfs])
7292 AC_MSG_RESULT([ nginx . . . . . . . . $enable_nginx])
7293 AC_MSG_RESULT([ notify_desktop . . . $enable_notify_desktop])
7294 AC_MSG_RESULT([ notify_email . . . . $enable_notify_email])
7295 AC_MSG_RESULT([ notify_nagios . . . . $enable_notify_nagios])
7296 AC_MSG_RESULT([ ntpd . . . . . . . . $enable_ntpd])
7297 AC_MSG_RESULT([ numa . . . . . . . . $enable_numa])
7298 AC_MSG_RESULT([ nut . . . . . . . . . $enable_nut])
7299 AC_MSG_RESULT([ olsrd . . . . . . . . $enable_olsrd])
7300 AC_MSG_RESULT([ onewire . . . . . . . $enable_onewire])
7301 AC_MSG_RESULT([ openldap . . . . . . $enable_openldap])
7302 AC_MSG_RESULT([ openvpn . . . . . . . $enable_openvpn])
7303 AC_MSG_RESULT([ oracle . . . . . . . $enable_oracle])
7304 AC_MSG_RESULT([ ovs_events . . . . . $enable_ovs_events])
7305 AC_MSG_RESULT([ ovs_stats . . . . . . $enable_ovs_stats])
7306 AC_MSG_RESULT([ pcie_errors . . . . . $enable_pcie_errors])
7307 AC_MSG_RESULT([ perl . . . . . . . . $enable_perl])
7308 AC_MSG_RESULT([ pf . . . . . . . . . $enable_pf])
7309 AC_MSG_RESULT([ pinba . . . . . . . . $enable_pinba])
7310 AC_MSG_RESULT([ ping . . . . . . . . $enable_ping])
7311 AC_MSG_RESULT([ postgresql . . . . . $enable_postgresql])
7312 AC_MSG_RESULT([ powerdns . . . . . . $enable_powerdns])
7313 AC_MSG_RESULT([ processes . . . . . . $enable_processes])
7314 AC_MSG_RESULT([ protocols . . . . . . $enable_protocols])
7315 AC_MSG_RESULT([ python . . . . . . . $enable_python])
7316 AC_MSG_RESULT([ redis . . . . . . . . $enable_redis])
7317 AC_MSG_RESULT([ routeros . . . . . . $enable_routeros])
7318 AC_MSG_RESULT([ rrdcached . . . . . . $enable_rrdcached])
7319 AC_MSG_RESULT([ rrdtool . . . . . . . $enable_rrdtool])
7320 AC_MSG_RESULT([ sensors . . . . . . . $enable_sensors])
7321 AC_MSG_RESULT([ serial . . . . . . . $enable_serial])
7322 AC_MSG_RESULT([ sigrok . . . . . . . $enable_sigrok])
7323 AC_MSG_RESULT([ smart . . . . . . . . $enable_smart])
7324 AC_MSG_RESULT([ snmp . . . . . . . . $enable_snmp])
7325 AC_MSG_RESULT([ snmp_agent . . . . . $enable_snmp_agent])
7326 AC_MSG_RESULT([ statsd . . . . . . . $enable_statsd])
7327 AC_MSG_RESULT([ swap . . . . . . . . $enable_swap])
7328 AC_MSG_RESULT([ synproxy . . . . . . $enable_synproxy])
7329 AC_MSG_RESULT([ syslog . . . . . . . $enable_syslog])
7330 AC_MSG_RESULT([ table . . . . . . . . $enable_table])
7331 AC_MSG_RESULT([ tail_csv . . . . . . $enable_tail_csv])
7332 AC_MSG_RESULT([ tail . . . . . . . . $enable_tail])
7333 AC_MSG_RESULT([ tape . . . . . . . . $enable_tape])
7334 AC_MSG_RESULT([ target_notification . $enable_target_notification])
7335 AC_MSG_RESULT([ target_replace . . . $enable_target_replace])
7336 AC_MSG_RESULT([ target_scale . . . . $enable_target_scale])
7337 AC_MSG_RESULT([ target_set . . . . . $enable_target_set])
7338 AC_MSG_RESULT([ target_v5upgrade . . $enable_target_v5upgrade])
7339 AC_MSG_RESULT([ tcpconns . . . . . . $enable_tcpconns])
7340 AC_MSG_RESULT([ teamspeak2 . . . . . $enable_teamspeak2])
7341 AC_MSG_RESULT([ ted . . . . . . . . . $enable_ted])
7342 AC_MSG_RESULT([ thermal . . . . . . . $enable_thermal])
7343 AC_MSG_RESULT([ threshold . . . . . . $enable_threshold])
7344 AC_MSG_RESULT([ tokyotyrant . . . . . $enable_tokyotyrant])
7345 AC_MSG_RESULT([ turbostat . . . . . . $enable_turbostat])
7346 AC_MSG_RESULT([ unixsock . . . . . . $enable_unixsock])
7347 AC_MSG_RESULT([ uptime . . . . . . . $enable_uptime])
7348 AC_MSG_RESULT([ users . . . . . . . . $enable_users])
7349 AC_MSG_RESULT([ uuid . . . . . . . . $enable_uuid])
7350 AC_MSG_RESULT([ varnish . . . . . . . $enable_varnish])
7351 AC_MSG_RESULT([ virt . . . . . . . . $enable_virt])
7352 AC_MSG_RESULT([ vmem . . . . . . . . $enable_vmem])
7353 AC_MSG_RESULT([ vserver . . . . . . . $enable_vserver])
7354 AC_MSG_RESULT([ wireless . . . . . . $enable_wireless])
7355 AC_MSG_RESULT([ write_graphite . . . $enable_write_graphite])
7356 AC_MSG_RESULT([ write_http . . . . . $enable_write_http])
7357 AC_MSG_RESULT([ write_kafka . . . . . $enable_write_kafka])
7358 AC_MSG_RESULT([ write_log . . . . . . $enable_write_log])
7359 AC_MSG_RESULT([ write_mongodb . . . . $enable_write_mongodb])
7360 AC_MSG_RESULT([ write_prometheus. . . $enable_write_prometheus])
7361 AC_MSG_RESULT([ write_redis . . . . . $enable_write_redis])
7362 AC_MSG_RESULT([ write_riemann . . . . $enable_write_riemann])
7363 AC_MSG_RESULT([ write_sensu . . . . . $enable_write_sensu])
7364 AC_MSG_RESULT([ write_stackdriver . . $enable_write_stackdriver])
7365 AC_MSG_RESULT([ write_syslog . . . . $enable_write_syslog])
7366 AC_MSG_RESULT([ write_tsdb . . . . . $enable_write_tsdb])
7367 AC_MSG_RESULT([ xencpu . . . . . . . $enable_xencpu])
7368 AC_MSG_RESULT([ xmms . . . . . . . . $enable_xmms])
7369 AC_MSG_RESULT([ zfs_arc . . . . . . . $enable_zfs_arc])
7370 AC_MSG_RESULT([ zone . . . . . . . . $enable_zone])
7371 AC_MSG_RESULT([ zookeeper . . . . . . $enable_zookeeper])
7374 if test "x$dependency_error" = "xyes"; then
7375 AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
7378 if test "x$dependency_warning" = "xyes"; then
7379 AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
7382 # vim: set fdm=marker sw=2 sts=2 ts=2 et :