src/daemon/common.c: avoid leaking cap_header in error condition
[collectd.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ([2.60])
3 AC_INIT([collectd],[m4_esyscmd(./version-gen.sh)])
4 AC_CONFIG_SRCDIR(src/target_set.c)
5 AC_CONFIG_HEADERS(src/config.h)
6 AC_CONFIG_AUX_DIR([libltdl/config])
7
8 dnl older automake's default of ARFLAGS=cru is noisy on newer binutils;
9 dnl we don't really need the 'u' even in older toolchains.  Then there is
10 dnl older libtool, which spelled it AR_FLAGS
11 m4_divert_text([DEFAULTS], [: "${ARFLAGS=cr} ${AR_FLAGS=cr}"])
12
13 m4_ifdef([LT_PACKAGE_VERSION],
14         # libtool >= 2.2
15         [
16          LT_CONFIG_LTDL_DIR([libltdl])
17          LT_INIT([dlopen])
18          LTDL_INIT([convenience])
19          AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.])
20         ]
21 ,
22         # libtool <= 1.5
23         [
24          AC_LIBLTDL_CONVENIENCE
25          AC_SUBST(LTDLINCL)
26          AC_SUBST(LIBLTDL)
27          AC_LIBTOOL_DLOPEN
28          AC_CONFIG_SUBDIRS(libltdl)
29          AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.])
30         ]
31 )
32
33 AM_CONDITIONAL([BUILD_INCLUDED_LTDL], [test "x$LTDLDEPS" != "x"])
34
35 AM_INIT_AUTOMAKE([subdir-objects tar-pax dist-bzip2 no-dist-gzip foreign])
36 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
37 AC_LANG(C)
38
39 AC_PREFIX_DEFAULT("/opt/collectd")
40
41 AC_SYS_LARGEFILE
42
43 #
44 # Checks for programs.
45 #
46 AC_PROG_CC_C99([],
47   [AC_MSG_ERROR([No compiler found that supports C99])]
48 )
49 AC_PROG_CXX
50 AC_PROG_CPP
51 AC_PROG_EGREP
52 AC_PROG_INSTALL
53 AC_PROG_LN_S
54 AC_PROG_MAKE_SET
55 AM_PROG_CC_C_O
56 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
57
58 AC_DISABLE_STATIC
59 AC_PROG_LIBTOOL
60 AC_PROG_LEX
61 AC_PROG_YACC
62
63 AC_PATH_PROG([VALGRIND], [valgrind])
64
65 # Warn when pkg.m4 is missing
66 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
67
68 PKG_PROG_PKG_CONFIG
69
70 AC_CACHE_CHECK([if bison is the parser generator],
71         [collectd_cv_prog_bison],
72         [AS_IF([$YACC --version 2>/dev/null | $EGREP -q '^bison '],
73                 [collectd_cv_prog_bison=yes], [collectd_cv_prog_bison=no]
74         )]
75 )
76
77 if test "x$collectd_cv_prog_bison" = "xno" && test ! -f "${srcdir}/src/liboconfig/parser.c"
78 then
79         AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/src/liboconfig/parser.c. Please install bison])
80 fi
81
82 AC_ARG_VAR([PROTOC], [path to the protoc binary])
83 AC_PATH_PROG([PROTOC], [protoc])
84 have_protoc3="no"
85 if test "x$PROTOC" != "x"; then
86         AC_MSG_CHECKING([for protoc 3.0.0+])
87         if $PROTOC --version | $EGREP libprotoc.3 >/dev/null; then
88                 protoc3="yes (`$PROTOC --version`)"
89                 have_protoc3="yes"
90         else
91                 protoc3="no (`$PROTOC --version`)"
92         fi
93         AC_MSG_RESULT([$protoc3])
94 fi
95 AM_CONDITIONAL(HAVE_PROTOC3, test "x$have_protoc3" = "xyes")
96
97 AC_ARG_VAR([GRPC_CPP_PLUGIN], [path to the grpc_cpp_plugin binary])
98 AC_PATH_PROG([GRPC_CPP_PLUGIN], [grpc_cpp_plugin])
99 AM_CONDITIONAL(HAVE_GRPC_CPP, test "x$GRPC_CPP_PLUGIN" != "x")
100
101 AC_ARG_VAR([PROTOC_C], [path to the protoc-c binary])
102 AC_PATH_PROG([PROTOC_C], [protoc-c])
103 if test "x$PROTOC_C" = "x"
104 then
105   have_protoc_c="no (protoc-c compiler not found)"
106 else
107   have_protoc_c="yes"
108 fi
109
110 AC_MSG_CHECKING([for kernel type ($host_os)])
111 case $host_os in
112         *linux*)
113         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
114         ac_system="Linux"
115         ;;
116         *solaris*)
117         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
118         ac_system="Solaris"
119         ;;
120         *darwin*)
121         AC_DEFINE([KERNEL_DARWIN], 1, [True if program is to be compiled for a Darwin kernel])
122         ac_system="Darwin"
123         ;;
124         *openbsd*)
125         AC_DEFINE([KERNEL_OPENBSD], 1, [True if program is to be compiled for an OpenBSD kernel])
126         ac_system="OpenBSD"
127         ;;
128         *netbsd*)
129         AC_DEFINE([KERNEL_NETBSD], 1, [True if program is to be compiled for a NetBSD kernel])
130         ac_system="NetBSD"
131         ;;
132         *aix*)
133         AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
134         ac_system="AIX"
135         ;;
136         *freebsd*)
137         AC_DEFINE([KERNEL_FREEBSD], 1, [True if program is to be compiled for a FreeBSD kernel])
138         ac_system="FreeBSD"
139         ;;
140         *)
141         ac_system="unknown"
142 esac
143 AC_MSG_RESULT([$ac_system])
144
145 AM_CONDITIONAL([BUILD_AIX], [test "x$ac_system" = "xAIX"])
146 AM_CONDITIONAL([BUILD_DARWIN], [test "x$ac_system" = "xDarwin"])
147 AM_CONDITIONAL([BUILD_FREEBSD], [test "x$ac_system" = "xFreeBSD"])
148 AM_CONDITIONAL([BUILD_LINUX], [test "x$ac_system" = "xLinux"])
149 AM_CONDITIONAL([BUILD_OPENBSD], [test "x$ac_system" = "xOpenBSD"])
150 AM_CONDITIONAL([BUILD_SOLARIS], [test "x$ac_system" = "xSolaris"])
151
152 if test "x$ac_system" = "xLinux"
153 then
154         AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
155         if test -z "$KERNEL_DIR"
156         then
157                 KERNEL_DIR="/lib/modules/`uname -r`/source"
158         fi
159
160         KERNEL_CFLAGS="-I$KERNEL_DIR/include"
161         AC_SUBST(KERNEL_CFLAGS)
162 fi
163
164 if test "x$ac_system" = "xSolaris"
165 then
166         AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
167         AC_DEFINE(_REENTRANT,               1, [Define to enable reentrancy interfaces.])
168
169         AC_MSG_CHECKING([whether compiler builds 64bit binaries])
170         AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
171                            #ifndef _LP64
172                            # error "Compiler not in 64bit mode."
173                            #endif
174                            ])],
175                            [AC_MSG_RESULT([yes])],
176                            [
177                             AC_MSG_RESULT([no])
178                             AC_MSG_NOTICE([Solaris detected. Please consider building a 64-bit binary.])
179                            ])
180 fi
181
182 if test "x$ac_system" = "xAIX"
183 then
184         AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
185 fi
186
187 # Where to install .pc files.
188 pkgconfigdir="${libdir}/pkgconfig"
189 AC_SUBST(pkgconfigdir)
190
191 # Check for standards compliance mode
192 AC_ARG_ENABLE(standards,
193               AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
194               [enable_standards="$enableval"],
195               [enable_standards="no"])
196 if test "x$enable_standards" = "xyes"
197 then
198         AC_DEFINE(_ISOC99_SOURCE,        1, [Define to enforce ISO C99 compliance.])
199         AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
200         AC_DEFINE(_XOPEN_SOURCE,       700, [Define to enforce X/Open 7 (XSI) compliance.])
201         AC_DEFINE(_REENTRANT,            1, [Define to enable reentrancy interfaces.])
202         if test "x$GCC" = "xyes"
203         then
204                 CFLAGS="$CFLAGS -std=c99"
205         fi
206 fi
207 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
208
209 #
210 # Checks for header files.
211 #
212 AC_HEADER_STDC
213 AC_HEADER_SYS_WAIT
214 AC_HEADER_DIRENT
215 AC_HEADER_STDBOOL
216
217 AC_CHECK_HEADERS(stdio.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h endian.h sys/isa_defs.h fnmatch.h libgen.h)
218
219 # For entropy plugin on newer NetBSD
220 AC_CHECK_HEADERS(sys/rndio.h, [], [],
221 [#if HAVE_SYS_TYPES_H
222 # include <sys/types.h>
223 #endif
224 #if HAVE_SYS_IOCTL_H
225 # include <sys/ioctl.h>
226 #endif
227 #if HAVE_SYS_PARAM_H
228 # include <sys/param.h>
229 #endif
230 ])
231
232 # For ping library
233 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
234 [#if HAVE_STDINT_H
235 # include <stdint.h>
236 #endif
237 #if HAVE_SYS_TYPES_H
238 # include <sys/types.h>
239 #endif
240 ])
241 AC_CHECK_HEADERS(netinet/in.h, [], [],
242 [#if HAVE_STDINT_H
243 # include <stdint.h>
244 #endif
245 #if HAVE_SYS_TYPES_H
246 # include <sys/types.h>
247 #endif
248 #if HAVE_NETINET_IN_SYSTM_H
249 # include <netinet/in_systm.h>
250 #endif
251 ])
252 AC_CHECK_HEADERS(netinet/ip.h, [], [],
253 [#if HAVE_STDINT_H
254 # include <stdint.h>
255 #endif
256 #if HAVE_SYS_TYPES_H
257 # include <sys/types.h>
258 #endif
259 #if HAVE_NETINET_IN_SYSTM_H
260 # include <netinet/in_systm.h>
261 #endif
262 #if HAVE_NETINET_IN_H
263 # include <netinet/in.h>
264 #endif
265 ])
266 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
267 [#if HAVE_STDINT_H
268 # include <stdint.h>
269 #endif
270 #if HAVE_SYS_TYPES_H
271 # include <sys/types.h>
272 #endif
273 #if HAVE_NETINET_IN_SYSTM_H
274 # include <netinet/in_systm.h>
275 #endif
276 #if HAVE_NETINET_IN_H
277 # include <netinet/in.h>
278 #endif
279 #if HAVE_NETINET_IP_H
280 # include <netinet/ip.h>
281 #endif
282 ])
283 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
284 [#if HAVE_STDINT_H
285 # include <stdint.h>
286 #endif
287 #if HAVE_SYS_TYPES_H
288 # include <sys/types.h>
289 #endif
290 #if HAVE_NETINET_IN_SYSTM_H
291 # include <netinet/in_systm.h>
292 #endif
293 #if HAVE_NETINET_IN_H
294 # include <netinet/in.h>
295 #endif
296 #if HAVE_NETINET_IP_H
297 # include <netinet/ip.h>
298 #endif
299 ])
300 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
301 [#if HAVE_STDINT_H
302 # include <stdint.h>
303 #endif
304 #if HAVE_SYS_TYPES_H
305 # include <sys/types.h>
306 #endif
307 #if HAVE_NETINET_IN_SYSTM_H
308 # include <netinet/in_systm.h>
309 #endif
310 #if HAVE_NETINET_IN_H
311 # include <netinet/in.h>
312 #endif
313 ])
314 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
315 [#if HAVE_STDINT_H
316 # include <stdint.h>
317 #endif
318 #if HAVE_SYS_TYPES_H
319 # include <sys/types.h>
320 #endif
321 #if HAVE_NETINET_IN_SYSTM_H
322 # include <netinet/in_systm.h>
323 #endif
324 #if HAVE_NETINET_IN_H
325 # include <netinet/in.h>
326 #endif
327 #if HAVE_NETINET_IP6_H
328 # include <netinet/ip6.h>
329 #endif
330 ])
331 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
332 [#if HAVE_STDINT_H
333 # include <stdint.h>
334 #endif
335 #if HAVE_SYS_TYPES_H
336 # include <sys/types.h>
337 #endif
338 #if HAVE_NETINET_IN_SYSTM_H
339 # include <netinet/in_systm.h>
340 #endif
341 #if HAVE_NETINET_IN_H
342 # include <netinet/in.h>
343 #endif
344 #if HAVE_NETINET_IP_H
345 # include <netinet/ip.h>
346 #endif
347 ])
348 AC_CHECK_HEADERS(netinet/udp.h, [], [],
349 [#if HAVE_STDINT_H
350 # include <stdint.h>
351 #endif
352 #if HAVE_SYS_TYPES_H
353 # include <sys/types.h>
354 #endif
355 #if HAVE_NETINET_IN_SYSTM_H
356 # include <netinet/in_systm.h>
357 #endif
358 #if HAVE_NETINET_IN_H
359 # include <netinet/in.h>
360 #endif
361 #if HAVE_NETINET_IP_H
362 # include <netinet/ip.h>
363 #endif
364 ])
365
366 have_ip6_ext="no"
367 AC_CHECK_TYPES([struct ip6_ext], [have_ip6_ext="yes"], [have_ip6_ext="no"],
368 [#if HAVE_STDINT_H
369 # include <stdint.h>
370 #endif
371 #if HAVE_SYS_TYPES_H
372 # include <sys/types.h>
373 #endif
374 #if HAVE_NETINET_IN_SYSTM_H
375 # include <netinet/in_systm.h>
376 #endif
377 #if HAVE_NETINET_IN_H
378 # include <netinet/in.h>
379 #endif
380 #if HAVE_NETINET_IP6_H
381 # include <netinet/ip6.h>
382 #endif
383 ])
384
385 if test "x$have_ip6_ext" = "xno"; then
386         SAVE_CFLAGS="$CFLAGS"
387         CFLAGS="$CFLAGS -DSOLARIS2=8"
388
389         AC_CHECK_TYPES([struct ip6_ext],
390                        [have_ip6_ext="yes, with -DSOLARIS2=8"],
391                        [have_ip6_ext="no"],
392 [#if HAVE_STDINT_H
393 # include <stdint.h>
394 #endif
395 #if HAVE_SYS_TYPES_H
396 # include <sys/types.h>
397 #endif
398 #if HAVE_NETINET_IN_SYSTM_H
399 # include <netinet/in_systm.h>
400 #endif
401 #if HAVE_NETINET_IN_H
402 # include <netinet/in.h>
403 #endif
404 #if HAVE_NETINET_IP6_H
405 # include <netinet/ip6.h>
406 #endif
407 ])
408
409         if test "x$have_ip6_ext" = "xno"; then
410                 CFLAGS="$SAVE_CFLAGS"
411         fi
412 fi
413
414 # For cpu modules
415 AC_CHECK_HEADERS(sys/dkstat.h)
416 if test "x$ac_system" = "xDarwin"
417 then
418         AC_CHECK_HEADERS(mach/mach_init.h mach/host_priv.h mach/mach_error.h mach/mach_host.h mach/mach_port.h mach/mach_types.h mach/message.h mach/processor_set.h mach/processor.h mach/processor_info.h mach/task.h mach/thread_act.h mach/vm_region.h mach/vm_map.h mach/vm_prot.h mach/vm_statistics.h mach/kern_return.h)
419         AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
420         # For the battery plugin
421         AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
422 [
423 #if HAVE_IOKIT_IOKITLIB_H
424 #  include <IOKit/IOKitLib.h>
425 #endif
426 #if HAVE_IOKIT_IOTYPES_H
427 #  include <IOKit/IOTypes.h>
428 #endif
429 ])
430
431 fi
432
433 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
434 [
435 #if HAVE_SYS_TYPES_H
436 #  include <sys/types.h>
437 #endif
438 #if HAVE_SYS_PARAM_H
439 # include <sys/param.h>
440 #endif
441 ])
442
443 AC_MSG_CHECKING([for sysctl kern.cp_times])
444 if test -x /sbin/sysctl
445 then
446         /sbin/sysctl kern.cp_times >/dev/null 2>&1
447         if test $? -eq 0
448         then
449                 AC_MSG_RESULT([yes])
450                 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
451                 [Define if sysctl supports kern.cp_times])
452         else
453                 AC_MSG_RESULT([no])
454         fi
455 else
456         AC_MSG_RESULT([no])
457 fi
458
459 AC_MSG_CHECKING([for sysctl kern.cp_time])
460 if test -x /sbin/sysctl
461 then
462         /sbin/sysctl kern.cp_time >/dev/null 2>&1
463         if test $? -eq 0
464         then
465                 AC_MSG_RESULT([yes])
466                 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIME, 1,
467                         [Define if sysctl supports kern.cp_time])
468         else
469                 AC_MSG_RESULT([no])
470         fi
471 else
472         AC_MSG_RESULT([no])
473 fi
474
475 # For hddtemp module
476 AC_CHECK_HEADERS(linux/major.h)
477
478 # For md module (Linux only)
479 if test "x$ac_system" = "xLinux"
480 then
481         AC_CHECK_HEADERS(linux/raid/md_u.h,
482                          [have_linux_raid_md_u_h="yes"],
483                          [have_linux_raid_md_u_h="no"],
484 [
485 #include <sys/ioctl.h>
486 #include <linux/major.h>
487 #include <linux/types.h>
488 ])
489 else
490         have_linux_raid_md_u_h="no"
491 fi
492
493 # For the wireless module
494 have_linux_wireless_h="no"
495 if test "x$ac_system" = "xLinux"
496 then
497   AC_CHECK_HEADERS(linux/wireless.h,
498                    [have_linux_wireless_h="yes"],
499                    [have_linux_wireless_h="no"],
500 [
501 #include <dirent.h>
502 #include <sys/ioctl.h>
503 #include <sys/socket.h>
504 ])
505 fi
506
507 # For the swap module
508 have_sys_swap_h="yes"
509 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
510 [
511 #undef _FILE_OFFSET_BITS
512 #undef _LARGEFILE64_SOURCE
513 #if HAVE_SYS_TYPES_H
514 #  include <sys/types.h>
515 #endif
516 #if HAVE_SYS_PARAM_H
517 # include <sys/param.h>
518 #endif
519 ])
520
521 # For load module
522 # For the processes plugin
523 # For users module
524 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
525
526 # For interface plugin
527 AC_CHECK_HEADERS(ifaddrs.h)
528 AC_CHECK_HEADERS(net/if.h, [], [],
529 [
530 #if HAVE_SYS_TYPES_H
531 #  include <sys/types.h>
532 #endif
533 #if HAVE_SYS_SOCKET_H
534 #  include <sys/socket.h>
535 #endif
536 ])
537 AC_CHECK_HEADERS(linux/if.h, [], [],
538 [
539 #if HAVE_SYS_TYPES_H
540 #  include <sys/types.h>
541 #endif
542 #if HAVE_SYS_SOCKET_H
543 #  include <sys/socket.h>
544 #endif
545 ])
546 AC_CHECK_HEADERS(linux/inet_diag.h, [], [],
547 [
548 #if HAVE_SYS_TYPES_H
549 #  include <sys/types.h>
550 #endif
551 #if HAVE_SYS_SOCKET_H
552 #  include <sys/socket.h>
553 #endif
554 #if HAVE_LINUX_INET_DIAG_H
555 # include <linux/inet_diag.h>
556 #endif
557 ])
558 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
559 [
560 #if HAVE_SYS_TYPES_H
561 #  include <sys/types.h>
562 #endif
563 #if HAVE_SYS_SOCKET_H
564 #  include <sys/socket.h>
565 #endif
566 #if HAVE_LINUX_IF_H
567 # include <linux/if.h>
568 #endif
569 ])
570
571 # For ethstat module
572 AC_CHECK_HEADERS(linux/sockios.h,
573     [have_linux_sockios_h="yes"],
574     [have_linux_sockios_h="no"],
575     [
576 #if HAVE_SYS_IOCTL_H
577 # include <sys/ioctl.h>
578 #endif
579 #if HAVE_NET_IF_H
580 # include <net/if.h>
581 #endif
582     ])
583 AC_CHECK_HEADERS(linux/ethtool.h,
584     [have_linux_ethtool_h="yes"],
585     [have_linux_ethtool_h="no"],
586     [
587 #if HAVE_SYS_IOCTL_H
588 # include <sys/ioctl.h>
589 #endif
590 #if HAVE_NET_IF_H
591 # include <net/if.h>
592 #endif
593 #if HAVE_LINUX_SOCKIOS_H
594 # include <linux/sockios.h>
595 #endif
596     ])
597
598 # For ipvs module
599 have_linux_ip_vs_h="no"
600 have_net_ip_vs_h="no"
601 have_ip_vs_h="no"
602 ip_vs_h_needs_kernel_cflags="no"
603 if test "x$ac_system" = "xLinux"
604 then
605         AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
606         AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
607         AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
608
609         if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
610         then
611                 SAVE_CFLAGS="$CFLAGS"
612                 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
613
614                 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
615
616                 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
617                 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
618                 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
619
620                 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
621                 then
622                         ip_vs_h_needs_kernel_cflags="yes"
623                 fi
624
625                 CFLAGS="$SAVE_CFLAGS"
626         fi
627 fi
628 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
629
630 # For quota module
631 AC_CHECK_HEADERS(sys/ucred.h, [], [],
632 [
633 #if HAVE_SYS_TYPES_H
634 #  include <sys/types.h>
635 #endif
636 #if HAVE_SYS_PARAM_H
637 # include <sys/param.h>
638 #endif
639 ])
640
641 # For mount interface
642 AC_CHECK_HEADERS(sys/mount.h, [], [],
643 [
644 #if HAVE_SYS_TYPES_H
645 #  include <sys/types.h>
646 #endif
647 #if HAVE_SYS_PARAM_H
648 # include <sys/param.h>
649 #endif
650 ])
651
652 # For the email plugin
653 AC_CHECK_HEADERS(linux/un.h, [], [],
654 [
655 #if HAVE_SYS_SOCKET_H
656 #       include <sys/socket.h>
657 #endif
658 ])
659
660 AC_CHECK_HEADERS([ \
661   ctype.h \
662   fs_info.h \
663   fshelp.h \
664   grp.h \
665   kvm.h \
666   limits.h \
667   locale.h \
668   mntent.h \
669   mnttab.h \
670   paths.h \
671   pwd.h \
672   sys/fs_types.h \
673   sys/fstyp.h \
674   sys/mntent.h \
675   sys/mnttab.h \
676   sys/statfs.h \
677   sys/statvfs.h \
678   sys/un.h \
679   sys/vfs.h \
680   sys/vfstab.h \
681   sys/vmmeter.h \
682   wordexp.h \
683 ])
684
685 AC_CHECK_HEADERS([xfs/xqm.h], [], [],
686 [
687 #define _GNU_SOURCE
688 ])
689
690 # For the dns plugin
691 AC_CHECK_HEADERS(arpa/nameser.h)
692 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
693 [
694 #if HAVE_ARPA_NAMESER_H
695 # include <arpa/nameser.h>
696 #endif
697 ])
698
699 AC_CHECK_HEADERS(net/if_arp.h, [], [],
700 [#if HAVE_SYS_SOCKET_H
701 # include <sys/socket.h>
702 #endif
703 ])
704 AC_CHECK_HEADERS(net/ppp_defs.h)
705 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
706 [#if HAVE_NET_PPP_DEFS_H
707 # include <net/ppp_defs.h>
708 #endif
709 ])
710 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
711 [#if HAVE_STDINT_H
712 # include <stdint.h>
713 #endif
714 #if HAVE_SYS_TYPES_H
715 # include <sys/types.h>
716 #endif
717 #if HAVE_SYS_SOCKET_H
718 # include <sys/socket.h>
719 #endif
720 #if HAVE_NET_IF_H
721 # include <net/if.h>
722 #endif
723 #if HAVE_NETINET_IN_H
724 # include <netinet/in.h>
725 #endif
726 ])
727
728 have_net_pfvar_h="no"
729 AC_CHECK_HEADERS(net/pfvar.h,
730                [have_net_pfvar_h="yes"],
731                [have_net_pfvar_h="no"],
732 [
733 #if HAVE_SYS_IOCTL_H
734 # include <sys/ioctl.h>
735 #endif
736 #if HAVE_SYS_SOCKET_H
737 # include <sys/socket.h>
738 #endif
739 #if HAVE_NET_IF_H
740 # include <net/if.h>
741 #endif
742 #if HAVE_NETINET_IN_H
743 # include <netinet/in.h>
744 #endif
745 ])
746
747 # For the multimeter plugin
748 have_termios_h="no"
749 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
750
751 # For cpusleep plugin
752 AC_CACHE_CHECK([whether clock_boottime and clock_monotonic are supported],
753                        [c_cv_have_clock_boottime_monotonic],
754                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
755 [[
756 #include <time.h>
757 ]],
758 [[
759  struct timespec b, m;
760  clock_gettime(CLOCK_BOOTTIME, &b );
761  clock_gettime(CLOCK_MONOTONIC, &m );
762 ]]
763                        )],
764                        [c_cv_have_clock_boottime_monotonic="yes"],
765                        [c_cv_have_clock_boottime_monotonic="no"]))
766
767
768 # For the turbostat plugin
769 have_asm_msrindex_h="no"
770 AC_CHECK_HEADERS(asm/msr-index.h, [have_asm_msrindex_h="yes"])
771
772 if test "x$have_asm_msrindex_h" = "xyes"
773 then
774   AC_CACHE_CHECK([whether asm/msr-index.h has MSR_PKG_C10_RESIDENCY],
775                  [c_cv_have_usable_asm_msrindex_h],
776                  AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
777 [[[
778 #include<asm/msr-index.h>
779 ]]],
780 [[[
781 int y = MSR_PKG_C10_RESIDENCY;
782 return(y);
783 ]]]
784   )],
785                  [c_cv_have_usable_asm_msrindex_h="yes"],
786                  [c_cv_have_usable_asm_msrindex_h="no"],
787                                   )
788                  )
789 fi
790
791 have_cpuid_h="no"
792 AC_CHECK_HEADERS(cpuid.h, [have_cpuid_h="yes"])
793
794 AC_CHECK_HEADERS(sys/capability.h)
795 #
796 # Checks for typedefs, structures, and compiler characteristics.
797 #
798 AC_C_CONST
799 AC_TYPE_PID_T
800 AC_TYPE_SIZE_T
801 AC_TYPE_UID_T
802 AC_HEADER_TIME
803
804 #
805 # Checks for library functions.
806 #
807 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog sysconf setenv if_indextoname setlocale asprintf)
808
809 AC_FUNC_STRERROR_R
810
811 test_cxx_flags() {
812         AC_LANG_PUSH([C++])
813         AC_LANG_CONFTEST([
814                 AC_LANG_SOURCE([[int main(void){}]])
815         ])
816         $CXX -c conftest.cpp $CXXFLAGS $@ > /dev/null 2> /dev/null
817         ret=$?
818         rm -f conftest.o
819         AC_LANG_POP([C++])
820         return $ret
821 }
822
823 SAVE_CFLAGS="$CFLAGS"
824 # Emulate behavior of src/Makefile.am
825 if test "x$GCC" = "xyes"
826 then
827         CFLAGS="$CFLAGS -Wall -Werror"
828 fi
829
830 AC_CACHE_CHECK([for strtok_r],
831   [c_cv_have_strtok_r_default],
832   AC_LINK_IFELSE(
833     [AC_LANG_PROGRAM(
834 [[[
835 #include <stdlib.h>
836 #include <stdio.h>
837 #include <string.h>
838 ]]],
839 [[[
840       char buffer[] = "foo,bar,baz";
841       char *token;
842       char *dummy;
843       char *saveptr;
844
845       dummy = buffer;
846       saveptr = NULL;
847       while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
848       {
849         dummy = NULL;
850         printf ("token = %s;\n", token);
851       }
852 ]]]
853     )],
854     [c_cv_have_strtok_r_default="yes"],
855     [c_cv_have_strtok_r_default="no"]
856   )
857 )
858
859 if test "x$c_cv_have_strtok_r_default" = "xno"
860 then
861   CFLAGS="$CFLAGS -D_REENTRANT=1"
862
863   AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
864     [c_cv_have_strtok_r_reentrant],
865     AC_LINK_IFELSE(
866       [AC_LANG_PROGRAM(
867 [[[
868 #include <stdlib.h>
869 #include <stdio.h>
870 #include <string.h>
871 ]]],
872 [[[
873         char buffer[] = "foo,bar,baz";
874         char *token;
875         char *dummy;
876         char *saveptr;
877
878         dummy = buffer;
879         saveptr = NULL;
880         while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
881         {
882           dummy = NULL;
883           printf ("token = %s;\n", token);
884         }
885 ]]]
886       )],
887       [c_cv_have_strtok_r_reentrant="yes"],
888       [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
889     )
890   )
891 fi
892
893 CFLAGS="$SAVE_CFLAGS"
894 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
895 then
896         CFLAGS="$CFLAGS -D_REENTRANT=1"
897 fi
898
899 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
900
901 socket_needs_socket="no"
902 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
903 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
904
905 clock_gettime_needs_rt="no"
906 clock_gettime_needs_posix4="no"
907 have_clock_gettime="no"
908 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
909 if test "x$have_clock_gettime" = "xno"
910 then
911         AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
912                                          have_clock_gettime="yes"])
913 fi
914 if test "x$have_clock_gettime" = "xno"
915 then
916         AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
917                                              have_clock_gettime="yes"])
918 fi
919 if test "x$have_clock_gettime" = "xyes"
920 then
921         AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
922 fi
923
924 nanosleep_needs_rt="no"
925 nanosleep_needs_posix4="no"
926 AC_CHECK_FUNCS(nanosleep,
927     [],
928     AC_CHECK_LIB(rt, nanosleep,
929         [nanosleep_needs_rt="yes"],
930         AC_CHECK_LIB(posix4, nanosleep,
931             [nanosleep_needs_posix4="yes"],
932             AC_MSG_ERROR(cannot find nanosleep))))
933
934 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
935 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
936
937 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
938 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
939 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
940 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
941 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
942 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
943 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
944 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
945 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
946 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
947 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
948 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
949
950 # Check for strptime {{{
951 if test "x$GCC" = "xyes"
952 then
953         SAVE_CFLAGS="$CFLAGS"
954         CFLAGS="$CFLAGS -Wall -Wextra -Werror"
955 fi
956
957 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
958 if test "x$have_strptime" = "xyes"
959 then
960         AC_CACHE_CHECK([whether strptime is exported by default],
961                        [c_cv_have_strptime_default],
962                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
963 [[[
964 #include <time.h>
965 ]]],
966 [[[
967  struct tm stm;
968  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
969 ]]]
970                        )],
971                        [c_cv_have_strptime_default="yes"],
972                        [c_cv_have_strptime_default="no"]))
973 fi
974 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
975 then
976         AC_CACHE_CHECK([whether strptime needs standards mode],
977                        [c_cv_have_strptime_standards],
978                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
979 [[[
980 #ifndef _ISOC99_SOURCE
981 # define _ISOC99_SOURCE 1
982 #endif
983 #ifndef _POSIX_C_SOURCE
984 # define _POSIX_C_SOURCE 200112L
985 #endif
986 #ifndef _XOPEN_SOURCE
987 # define _XOPEN_SOURCE 500
988 #endif
989 #include <time.h>
990 ]]],
991 [[[
992  struct tm stm;
993  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
994 ]]]
995                        )],
996                        [c_cv_have_strptime_standards="yes"],
997                        [c_cv_have_strptime_standards="no"]))
998
999         if test "x$c_cv_have_strptime_standards" = "xyes"
1000         then
1001                 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
1002         else
1003                 have_strptime="no"
1004         fi
1005 fi
1006
1007 if test "x$GCC" = "xyes"
1008 then
1009         CFLAGS="$SAVE_CFLAGS"
1010 fi
1011 # }}} Check for strptime
1012
1013 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
1014 if test "x$have_swapctl" = "xyes"; then
1015         AC_CACHE_CHECK([whether swapctl takes two arguments],
1016                 [c_cv_have_swapctl_two_args],
1017                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1018 [[[
1019 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1020 #  undef _FILE_OFFSET_BITS
1021 #  undef _LARGEFILE64_SOURCE
1022 #endif
1023 #include <sys/stat.h>
1024 #include <sys/param.h>
1025 #include <sys/swap.h>
1026 #include <unistd.h>
1027 ]]],
1028 [[[
1029 int num = swapctl(0, NULL);
1030 ]]]
1031                         )],
1032                         [c_cv_have_swapctl_two_args="yes"],
1033                         [c_cv_have_swapctl_two_args="no"]
1034                 )
1035         )
1036         AC_CACHE_CHECK([whether swapctl takes three arguments],
1037                 [c_cv_have_swapctl_three_args],
1038                 AC_COMPILE_IFELSE(
1039                         [AC_LANG_PROGRAM(
1040 [[[
1041 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
1042 #  undef _FILE_OFFSET_BITS
1043 #  undef _LARGEFILE64_SOURCE
1044 #endif
1045 #include <sys/stat.h>
1046 #include <sys/param.h>
1047 #include <sys/swap.h>
1048 #include <unistd.h>
1049 ]]],
1050 [[[
1051 int num = swapctl(0, NULL, 0);
1052 ]]]
1053                         )],
1054                         [c_cv_have_swapctl_three_args="yes"],
1055                         [c_cv_have_swapctl_three_args="no"]
1056                 )
1057         )
1058 fi
1059 # Check for different versions of `swapctl' here..
1060 if test "x$have_swapctl" = "xyes"; then
1061         if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
1062                 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
1063                           [Define if the function swapctl exists and takes two arguments.])
1064         fi
1065         if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
1066                 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
1067                           [Define if the function swapctl exists and takes three arguments.])
1068         fi
1069 fi
1070
1071 # Check for NAN
1072 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
1073 [
1074  if test "x$withval" = "xno"; then
1075          nan_type="none"
1076  else if test "x$withval" = "xyes"; then
1077          nan_type="zero"
1078  else
1079          nan_type="$withval"
1080  fi; fi
1081 ],
1082 [nan_type="none"])
1083 if test "x$nan_type" = "xnone"; then
1084   AC_CACHE_CHECK([whether NAN is defined by default],
1085     [c_cv_have_nan_default],
1086     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1087 [[[
1088 #include <stdlib.h>
1089 #include <math.h>
1090 static double foo = NAN;
1091 ]]],
1092 [[[
1093        if (isnan (foo))
1094         return 0;
1095        else
1096         return 1;
1097 ]]]
1098       )],
1099       [c_cv_have_nan_default="yes"],
1100       [c_cv_have_nan_default="no"]
1101     )
1102   )
1103   if test "x$c_cv_have_nan_default" = "xyes"
1104   then
1105     nan_type="default"
1106   fi
1107 fi
1108 if test "x$nan_type" = "xnone"; then
1109   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
1110     [c_cv_have_nan_isoc],
1111     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1112 [[[
1113 #include <stdlib.h>
1114 #define __USE_ISOC99 1
1115 #include <math.h>
1116 static double foo = NAN;
1117 ]]],
1118 [[[
1119        if (isnan (foo))
1120         return 0;
1121        else
1122         return 1;
1123 ]]]
1124       )],
1125       [c_cv_have_nan_isoc="yes"],
1126       [c_cv_have_nan_isoc="no"]
1127     )
1128   )
1129   if test "x$c_cv_have_nan_isoc" = "xyes"
1130   then
1131     nan_type="isoc99"
1132   fi
1133 fi
1134 if test "x$nan_type" = "xnone"; then
1135   SAVE_LDFLAGS=$LDFLAGS
1136   LDFLAGS="$LDFLAGS -lm"
1137   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1138     [c_cv_have_nan_zero],
1139     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1140 [[[
1141 #include <stdlib.h>
1142 #include <math.h>
1143 #ifdef NAN
1144 # undef NAN
1145 #endif
1146 #define NAN (0.0 / 0.0)
1147 #ifndef isnan
1148 # define isnan(f) ((f) != (f))
1149 #endif
1150 static double foo = NAN;
1151 ]]],
1152 [[[
1153        if (isnan (foo))
1154         return 0;
1155        else
1156         return 1;
1157 ]]]
1158       )],
1159       [c_cv_have_nan_zero="yes"],
1160       [c_cv_have_nan_zero="no"]
1161     )
1162   )
1163   LDFLAGS=$SAVE_LDFLAGS
1164   if test "x$c_cv_have_nan_zero" = "xyes"
1165   then
1166     nan_type="zero"
1167   fi
1168 fi
1169
1170 if test "x$nan_type" = "xdefault"; then
1171   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
1172     [Define if NAN is defined by default and can initialize static variables.])
1173 else if test "x$nan_type" = "xisoc99"; then
1174   AC_DEFINE(NAN_STATIC_ISOC, 1,
1175     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
1176 else if test "x$nan_type" = "xzero"; then
1177   AC_DEFINE(NAN_ZERO_ZERO, 1,
1178     [Define if NAN can be defined as (0.0 / 0.0)])
1179 else
1180   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1181 fi; fi; fi
1182
1183 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
1184 [
1185  if test "x$withval" = "xnothing"; then
1186         fp_layout_type="nothing"
1187  else if test "x$withval" = "xendianflip"; then
1188         fp_layout_type="endianflip"
1189  else if test "x$withval" = "xintswap"; then
1190         fp_layout_type="intswap"
1191  else
1192         AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1193 fi; fi; fi
1194 ],
1195 [fp_layout_type="unknown"])
1196
1197 if test "x$fp_layout_type" = "xunknown"; then
1198   AC_CACHE_CHECK([if doubles are stored in x86 representation],
1199     [c_cv_fp_layout_need_nothing],
1200     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1201 [[[
1202 #include <stdlib.h>
1203 #include <stdio.h>
1204 #include <string.h>
1205 #if HAVE_STDINT_H
1206 # include <stdint.h>
1207 #endif
1208 #if HAVE_INTTYPES_H
1209 # include <inttypes.h>
1210 #endif
1211 #if HAVE_STDBOOL_H
1212 # include <stdbool.h>
1213 #endif
1214 ]]],
1215 [[[
1216         uint64_t i0;
1217         uint64_t i1;
1218         uint8_t c[8];
1219         double d;
1220
1221         d = 8.642135e130;
1222         memcpy ((void *) &i0, (void *) &d, 8);
1223
1224         i1 = i0;
1225         memcpy ((void *) c, (void *) &i1, 8);
1226
1227         if ((c[0] == 0x2f) && (c[1] == 0x25)
1228                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1229                         && (c[4] == 0x43) && (c[5] == 0x2b)
1230                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1231                 return (0);
1232         else
1233                 return (1);
1234 ]]]
1235       )],
1236       [c_cv_fp_layout_need_nothing="yes"],
1237       [c_cv_fp_layout_need_nothing="no"]
1238     )
1239   )
1240   if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1241     fp_layout_type="nothing"
1242   fi
1243 fi
1244 if test "x$fp_layout_type" = "xunknown"; then
1245   AC_CACHE_CHECK([if endianflip converts to x86 representation],
1246     [c_cv_fp_layout_need_endianflip],
1247     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1248 [[[
1249 #include <stdlib.h>
1250 #include <stdio.h>
1251 #include <string.h>
1252 #if HAVE_STDINT_H
1253 # include <stdint.h>
1254 #endif
1255 #if HAVE_INTTYPES_H
1256 # include <inttypes.h>
1257 #endif
1258 #if HAVE_STDBOOL_H
1259 # include <stdbool.h>
1260 #endif
1261 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1262                        (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1263                        (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1264                        (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
1265                        (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
1266                        (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1267                        (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1268                        (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1269 ]]],
1270 [[[
1271         uint64_t i0;
1272         uint64_t i1;
1273         uint8_t c[8];
1274         double d;
1275
1276         d = 8.642135e130;
1277         memcpy ((void *) &i0, (void *) &d, 8);
1278
1279         i1 = endianflip (i0);
1280         memcpy ((void *) c, (void *) &i1, 8);
1281
1282         if ((c[0] == 0x2f) && (c[1] == 0x25)
1283                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1284                         && (c[4] == 0x43) && (c[5] == 0x2b)
1285                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1286                 return (0);
1287         else
1288                 return (1);
1289 ]]]
1290       )],
1291       [c_cv_fp_layout_need_endianflip="yes"],
1292       [c_cv_fp_layout_need_endianflip="no"]
1293     )
1294   )
1295   if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1296     fp_layout_type="endianflip"
1297   fi
1298 fi
1299 if test "x$fp_layout_type" = "xunknown"; then
1300   AC_CACHE_CHECK([if intswap converts to x86 representation],
1301     [c_cv_fp_layout_need_intswap],
1302     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1303 [[[
1304 #include <stdlib.h>
1305 #include <stdio.h>
1306 #include <string.h>
1307 #if HAVE_STDINT_H
1308 # include <stdint.h>
1309 #endif
1310 #if HAVE_INTTYPES_H
1311 # include <inttypes.h>
1312 #endif
1313 #if HAVE_STDBOOL_H
1314 # include <stdbool.h>
1315 #endif
1316 #define intswap(A)    ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1317                        (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1318 ]]],
1319 [[[
1320         uint64_t i0;
1321         uint64_t i1;
1322         uint8_t c[8];
1323         double d;
1324
1325         d = 8.642135e130;
1326         memcpy ((void *) &i0, (void *) &d, 8);
1327
1328         i1 = intswap (i0);
1329         memcpy ((void *) c, (void *) &i1, 8);
1330
1331         if ((c[0] == 0x2f) && (c[1] == 0x25)
1332                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1333                         && (c[4] == 0x43) && (c[5] == 0x2b)
1334                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1335                 return (0);
1336         else
1337                 return (1);
1338 ]]]
1339       )],
1340       [c_cv_fp_layout_need_intswap="yes"],
1341       [c_cv_fp_layout_need_intswap="no"]
1342     )
1343   )
1344   if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1345     fp_layout_type="intswap"
1346   fi
1347 fi
1348
1349 if test "x$fp_layout_type" = "xnothing"; then
1350   AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1351   [Define if doubles are stored in x86 representation.])
1352 else if test "x$fp_layout_type" = "xendianflip"; then
1353   AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1354   [Define if endianflip is needed to convert to x86 representation.])
1355 else if test "x$fp_layout_type" = "xintswap"; then
1356   AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1357   [Define if intswap is needed to convert to x86 representation.])
1358 else
1359   AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1360 fi; fi; fi
1361
1362 # --with-useragent {{{
1363 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1364 [
1365     if test "x$withval" != "xno" && test "x$withval" != "xyes"
1366     then
1367         AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1368     fi
1369 ])
1370
1371 # }}}
1372
1373 # --with-data-max-name-len {{{
1374 AC_ARG_WITH(data-max-name-len, [AS_HELP_STRING([--with-data-max-name-len@<:@=VALUE@:>@], [Maximum length of data buffers])],
1375 [
1376     if test "x$withval" != "x" && test $withval -gt 0
1377     then
1378         AC_DEFINE_UNQUOTED(DATA_MAX_NAME_LEN, [$withval], [Maximum length of data buffers])
1379     else
1380         AC_MSG_ERROR([DATA_MAX_NAME_LEN must be a positive integer -- $withval given])
1381     fi
1382 ],
1383 [   AC_DEFINE(DATA_MAX_NAME_LEN, 128, [Maximum length of data buffers])]
1384 )
1385 # }}}
1386
1387 have_getfsstat="no"
1388 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1389 have_getvfsstat="no"
1390 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1391 have_listmntent="no"
1392 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1393 have_getmntent_r="no"
1394 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"])
1395
1396 have_getmntent="no"
1397 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1398 if test "x$have_getmntent" = "xno"; then
1399         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1400 fi
1401 if test "x$have_getmntent" = "xno"; then
1402         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1403 fi
1404 if test "x$have_getmntent" = "xno"; then
1405         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1406 fi
1407
1408 if test "x$have_getmntent" = "xc"; then
1409         AC_CACHE_CHECK([whether getmntent takes one argument],
1410                 [c_cv_have_one_getmntent],
1411                 AC_COMPILE_IFELSE(
1412                         [AC_LANG_PROGRAM(
1413 [[[
1414 #include "$srcdir/src/utils_mount.h"
1415 ]]],
1416 [[[
1417 FILE *fh;
1418 struct mntent *me;
1419 fh = setmntent ("/etc/mtab", "r");
1420 me = getmntent (fh);
1421 return(me->mnt_passno);
1422 ]]]
1423                         )],
1424                         [c_cv_have_one_getmntent="yes"],
1425                         [c_cv_have_one_getmntent="no"]
1426                 )
1427         )
1428         AC_CACHE_CHECK([whether getmntent takes two arguments],
1429                 [c_cv_have_two_getmntent],
1430                 AC_COMPILE_IFELSE(
1431                         [AC_LANG_PROGRAM(
1432 [[[
1433 #include "$srcdir/src/utils_mount.h"
1434 ]]],
1435 [[[
1436                                  FILE *fh;
1437                                  struct mnttab mt;
1438                                  int status;
1439                                  fh = fopen ("/etc/mnttab", "r");
1440                                  status = getmntent (fh, &mt);
1441                                  return(status);
1442 ]]]
1443                         )],
1444                         [c_cv_have_two_getmntent="yes"],
1445                         [c_cv_have_two_getmntent="no"]
1446                 )
1447         )
1448 fi
1449
1450 # Check for different versions of `getmntent' here..
1451
1452 if test "x$have_getmntent" = "xc"; then
1453         if test "x$c_cv_have_one_getmntent" = "xyes"; then
1454                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1455                           [Define if the function getmntent exists and takes one argument.])
1456         fi
1457         if test "x$c_cv_have_two_getmntent" = "xyes"; then
1458                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1459                           [Define if the function getmntent exists and takes two arguments.])
1460         fi
1461 fi
1462 if test "x$have_getmntent" = "xsun"; then
1463         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1464                   [Define if the function getmntent exists. It is the version from libsun.])
1465 fi
1466 if test "x$have_getmntent" = "xseq"; then
1467         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1468                   [Define if the function getmntent exists. It is the version from libseq.])
1469 fi
1470 if test "x$have_getmntent" = "xgen"; then
1471         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1472                   [Define if the function getmntent exists. It is the version from libgen.])
1473 fi
1474
1475 # Check for htonll
1476 AC_CACHE_CHECK([if have htonll defined],
1477                   [c_cv_have_htonll],
1478                   AC_LINK_IFELSE([AC_LANG_PROGRAM(
1479 [[[
1480 #include <sys/types.h>
1481 #include <netinet/in.h>
1482 #if HAVE_INTTYPES_H
1483 # include <inttypes.h>
1484 #endif
1485 ]]],
1486 [[[
1487           return htonll(0);
1488 ]]]
1489     )],
1490     [c_cv_have_htonll="yes"],
1491     [c_cv_have_htonll="no"]
1492   )
1493 )
1494 if test "x$c_cv_have_htonll" = "xyes"
1495 then
1496     AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1497 fi
1498
1499 # Check for structures
1500 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1501         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1502         [],
1503         [
1504         #include <sys/types.h>
1505         #include <sys/socket.h>
1506         #include <net/if.h>
1507         ])
1508 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1509         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1510         [],
1511         [
1512         #include <sys/types.h>
1513         #include <sys/socket.h>
1514         #include <linux/if.h>
1515         #include <linux/netdevice.h>
1516         ])
1517 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1518         [AC_DEFINE(HAVE_STRUCT_LINUX_INET_DIAG_REQ, 1, [Define if struct inet_diag_req exists and is usable.])],
1519         [],
1520         [
1521         #include <linux/inet_diag.h>
1522         ])
1523
1524
1525 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1526         [],
1527         [
1528         #include <netinet/in.h>
1529         #include <net/if.h>
1530         ])
1531
1532 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1533         [
1534                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1535                         [Define if struct kinfo_proc exists in the FreeBSD variant.])
1536                 have_struct_kinfo_proc_freebsd="yes"
1537         ],
1538         [
1539                 have_struct_kinfo_proc_freebsd="no"
1540         ],
1541         [
1542 #include <kvm.h>
1543 #include <sys/param.h>
1544 #include <sys/sysctl.h>
1545 #include <sys/user.h>
1546         ])
1547
1548 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1549         [
1550                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1551                         [Define if struct kinfo_proc exists in the OpenBSD variant.])
1552                 have_struct_kinfo_proc_openbsd="yes"
1553         ],
1554         [
1555                 have_struct_kinfo_proc_openbsd="no"
1556         ],
1557         [
1558 #include <sys/param.h>
1559 #include <sys/sysctl.h>
1560 #include <kvm.h>
1561         ])
1562
1563
1564 AC_CHECK_MEMBERS([struct kinfo_proc2.p_pid, struct kinfo_proc2.p_uru_maxrss],
1565         [
1566                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC2_NETBSD, 1,
1567                         [Define if struct kinfo_proc2 exists in the NetBSD variant.])
1568                 have_struct_kinfo_proc2_netbsd="yes"
1569         ],
1570         [
1571                 have_struct_kinfo_proc2_netbsd="no"
1572         ],
1573         [
1574 #include <sys/param.h>
1575 #include <sys/sysctl.h>
1576 #include <kvm.h>
1577         ])
1578
1579
1580
1581 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1582 [#define _BSD_SOURCE
1583 #define _DEFAULT_SOURCE
1584 #if HAVE_STDINT_H
1585 # include <stdint.h>
1586 #endif
1587 #if HAVE_SYS_TYPES_H
1588 # include <sys/types.h>
1589 #endif
1590 #if HAVE_NETINET_IN_SYSTM_H
1591 # include <netinet/in_systm.h>
1592 #endif
1593 #if HAVE_NETINET_IN_H
1594 # include <netinet/in.h>
1595 #endif
1596 #if HAVE_NETINET_IP_H
1597 # include <netinet/ip.h>
1598 #endif
1599 #if HAVE_NETINET_UDP_H
1600 # include <netinet/udp.h>
1601 #endif
1602 ])
1603 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1604 [#define _BSD_SOURCE
1605 #define _DEFAULT_SOURCE
1606 #if HAVE_STDINT_H
1607 # include <stdint.h>
1608 #endif
1609 #if HAVE_SYS_TYPES_H
1610 # include <sys/types.h>
1611 #endif
1612 #if HAVE_NETINET_IN_SYSTM_H
1613 # include <netinet/in_systm.h>
1614 #endif
1615 #if HAVE_NETINET_IN_H
1616 # include <netinet/in.h>
1617 #endif
1618 #if HAVE_NETINET_IP_H
1619 # include <netinet/ip.h>
1620 #endif
1621 #if HAVE_NETINET_UDP_H
1622 # include <netinet/udp.h>
1623 #endif
1624 ])
1625
1626 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1627         [],
1628         [],
1629         [
1630 #if HAVE_KSTAT_H
1631 # include <kstat.h>
1632 #endif
1633         ])
1634
1635 #
1636 # Checks for libraries begin here
1637 #
1638
1639 with_libresolv="yes"
1640 AC_CHECK_LIB(resolv, res_search,
1641 [
1642         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1643 ],
1644 [with_libresolv="no"])
1645 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1646
1647 dnl Check for HAL (hardware abstraction library)
1648 with_libhal="no"
1649 PKG_CHECK_MODULES([HAL], [hal],
1650   [
1651     SAVE_LIBS="$LIBS"
1652     LIBS="$HAL_LIBS $LIBS"
1653     AC_CHECK_LIB([hal], [libhal_device_property_exists],
1654       [
1655         SAVE_CPPFLAGS="$CPPFLAGS"
1656         CPPFLAGS="$HAL_CFLAGS $CPPFLAGS"
1657         AC_CHECK_HEADERS([libhal.h],
1658         [
1659           with_libhal="yes"
1660           BUILD_WITH_LIBHAL_CFLAGS="$HAL_CFLAGS"
1661           BUILD_WITH_LIBHAL_LIBS="$HAL_LIBS"
1662         ])
1663         CPPFLAGS="$SAVE_CPPFLAGS"
1664       ],
1665       [ : ]
1666     )
1667     LIBS="$SAVE_LIBS"
1668   ],
1669   [ : ]
1670 )
1671 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1672 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1673
1674
1675 SAVE_LIBS="$LIBS"
1676 AC_CHECK_LIB([pthread],
1677   [pthread_create],
1678   [],
1679   [AC_MSG_ERROR([Symbol 'pthread_create' not found in libpthread"])],
1680   []
1681 )
1682 PTHREAD_LIBS="$LIBS"
1683 LIBS="$SAVE_LIBS"
1684
1685 AC_CHECK_HEADERS([pthread.h],
1686   [],
1687   [AC_MSG_ERROR([pthread.h not found])]
1688 )
1689 AC_SUBST([PTHREAD_LIBS])
1690
1691 m4_divert_once([HELP_WITH], [
1692 collectd additional packages:])
1693
1694 if test "x$ac_system" = "xAIX"
1695 then
1696         with_perfstat="yes"
1697         with_procinfo="yes"
1698 else
1699         with_perfstat="no (AIX only)"
1700         with_procinfo="no (AIX only)"
1701 fi
1702
1703 if test "x$with_perfstat" = "xyes"
1704 then
1705         AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1706 #       AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1707 fi
1708 if test "x$with_perfstat" = "xyes"
1709 then
1710          AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1711          # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1712          AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1713          if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1714          then
1715                 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1716          fi
1717 fi
1718 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1719
1720 # Processes plugin under AIX.
1721 if test "x$with_procinfo" = "xyes"
1722 then
1723         AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1724 fi
1725 if test "x$with_procinfo" = "xyes"
1726 then
1727          AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1728 fi
1729
1730 if test "x$ac_system" = "xSolaris"
1731 then
1732         with_kstat="yes"
1733         with_devinfo="yes"
1734 else
1735         with_kstat="no (Solaris only)"
1736         with_devinfo="no (Solaris only)"
1737 fi
1738
1739 if test "x$with_kstat" = "xyes"
1740 then
1741         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1742 fi
1743 if test "x$with_kstat" = "xyes"
1744 then
1745         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1746         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1747 fi
1748 if test "x$with_kstat" = "xyes"
1749 then
1750         AC_DEFINE(HAVE_LIBKSTAT, 1,
1751                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1752 fi
1753 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1754 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1755
1756 with_libiokit="no"
1757 if test "x$ac_system" = "xDarwin"
1758 then
1759         with_libiokit="yes"
1760 else
1761         with_libiokit="no"
1762 fi
1763 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1764
1765 with_libkvm="no"
1766 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1767 if test "x$with_kvm_getprocs" = "xyes"
1768 then
1769         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1770                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1771         with_libkvm="yes"
1772 fi
1773 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1774
1775 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1776 if test "x$with_kvm_getswapinfo" = "xyes"
1777 then
1778         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1779                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1780         with_libkvm="yes"
1781 fi
1782 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1783
1784 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1785 if test "x$with_kvm_nlist" = "xyes"
1786 then
1787         AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1788         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1789                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1790         with_libkvm="yes"
1791 fi
1792 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1793
1794 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1795 if test "x$with_kvm_openfiles" = "xyes"
1796 then
1797         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1798                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1799         with_libkvm="yes"
1800 fi
1801 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1802
1803 # --with-libaquaero5 {{{
1804 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1805 [
1806  if test "x$withval" = "xyes"
1807  then
1808          with_libaquaero5="yes"
1809  else if test "x$withval" = "xno"
1810  then
1811          with_libaquaero5="no"
1812  else
1813          with_libaquaero5="yes"
1814          LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1815          LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1816  fi; fi
1817 ],
1818 [with_libaquaero5="yes"])
1819
1820 SAVE_CPPFLAGS="$CPPFLAGS"
1821 SAVE_LDFLAGS="$LDFLAGS"
1822
1823 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1824 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1825
1826 if test "x$with_libaquaero5" = "xyes"
1827 then
1828         if test "x$LIBAQUAERO5_CFLAGS" != "x"
1829         then
1830                 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1831         fi
1832         AC_CHECK_HEADERS(libaquaero5.h,
1833         [with_libaquaero5="yes"],
1834         [with_libaquaero5="no (libaquaero5.h not found)"])
1835 fi
1836 if test "x$with_libaquaero5" = "xyes"
1837 then
1838         if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1839         then
1840                 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1841         fi
1842         AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1843         [with_libaquaero5="yes"],
1844         [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1845 fi
1846
1847 CPPFLAGS="$SAVE_CPPFLAGS"
1848 LDFLAGS="$SAVE_LDFLAGS"
1849
1850 if test "x$with_libaquaero5" = "xyes"
1851 then
1852         BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1853         BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1854         AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1855         AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1856 fi
1857 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1858 # }}}
1859
1860 # --with-libhiredis {{{
1861 AC_ARG_WITH(libhiredis, [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@],
1862       [Path to libhiredis.])],
1863 [
1864  if test "x$withval" = "xyes"
1865  then
1866          with_libhiredis="yes"
1867  else if test "x$withval" = "xno"
1868  then
1869          with_libhiredis="no"
1870  else
1871          with_libhiredis="yes"
1872          LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
1873          LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
1874  fi; fi
1875 ],
1876 [with_libhiredis="yes"])
1877
1878 SAVE_CPPFLAGS="$CPPFLAGS"
1879 SAVE_LDFLAGS="$LDFLAGS"
1880
1881 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
1882 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
1883
1884 if test "x$with_libhiredis" = "xyes"
1885 then
1886         if test "x$LIBHIREDIS_CPPFLAGS" != "x"
1887         then
1888                 AC_MSG_NOTICE([libhiredis CPPFLAGS: $LIBHIREDIS_CPPFLAGS])
1889         fi
1890         AC_CHECK_HEADERS(hiredis/hiredis.h,
1891         [with_libhiredis="yes"],
1892         [with_libhiredis="no (hiredis.h not found)"])
1893 fi
1894 if test "x$with_libhiredis" = "xyes"
1895 then
1896         if test "x$LIBHIREDIS_LDFLAGS" != "x"
1897         then
1898                 AC_MSG_NOTICE([libhiredis LDFLAGS: $LIBHIREDIS_LDFLAGS])
1899         fi
1900         AC_CHECK_LIB(hiredis, redisCommand,
1901         [with_libhiredis="yes"],
1902         [with_libhiredis="no (symbol 'redisCommand' not found)"])
1903
1904 fi
1905
1906 CPPFLAGS="$SAVE_CPPFLAGS"
1907 LDFLAGS="$SAVE_LDFLAGS"
1908
1909 if test "x$with_libhiredis" = "xyes"
1910 then
1911         BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
1912         BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
1913         AC_SUBST(BUILD_WITH_LIBHIREDIS_CPPFLAGS)
1914         AC_SUBST(BUILD_WITH_LIBHIREDIS_LDFLAGS)
1915 fi
1916 AM_CONDITIONAL(BUILD_WITH_LIBHIREDIS, test "x$with_libhiredis" = "xyes")
1917 # }}}
1918
1919 # --with-libcurl {{{
1920 with_curl_config="curl-config"
1921 with_curl_cflags=""
1922 with_curl_libs=""
1923 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1924 [
1925         if test "x$withval" = "xno"
1926         then
1927                 with_libcurl="no"
1928         else if test "x$withval" = "xyes"
1929         then
1930                 with_libcurl="yes"
1931         else
1932                 if test -f "$withval" && test -x "$withval"
1933                 then
1934                         with_curl_config="$withval"
1935                         with_libcurl="yes"
1936                 else if test -x "$withval/bin/curl-config"
1937                 then
1938                         with_curl_config="$withval/bin/curl-config"
1939                         with_libcurl="yes"
1940                 fi; fi
1941                 with_libcurl="yes"
1942         fi; fi
1943 ],
1944 [
1945         with_libcurl="yes"
1946 ])
1947 if test "x$with_libcurl" = "xyes"
1948 then
1949         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1950         curl_config_status=$?
1951
1952         if test $curl_config_status -ne 0
1953         then
1954                 with_libcurl="no ($with_curl_config failed)"
1955         else
1956                 SAVE_CPPFLAGS="$CPPFLAGS"
1957                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1958
1959                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1960
1961                 CPPFLAGS="$SAVE_CPPFLAGS"
1962         fi
1963 fi
1964 if test "x$with_libcurl" = "xyes"
1965 then
1966         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1967         curl_config_status=$?
1968
1969         if test $curl_config_status -ne 0
1970         then
1971                 with_libcurl="no ($with_curl_config failed)"
1972         else
1973                 AC_CHECK_LIB(curl, curl_easy_init,
1974                  [with_libcurl="yes"],
1975                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1976                  [$with_curl_libs])
1977                 AC_CHECK_DECL(CURLOPT_USERNAME,
1978                  [have_curlopt_username="yes"],
1979                  [have_curlopt_username="no"],
1980                  [[#include <curl/curl.h>]])
1981                 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
1982                  [have_curlopt_timeout="yes"],
1983                  [have_curlopt_timeout="no"],
1984                  [[#include <curl/curl.h>]])
1985         fi
1986 fi
1987 if test "x$with_libcurl" = "xyes"
1988 then
1989         SAVE_CPPFLAGS="$CPPFLAGS"
1990         SAVE_LDFLAGS="$LDFLAGS"
1991         CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1992         LDFLAGS="$LDFLAGS $with_curl_libs"
1993         AC_CACHE_CHECK([for CURLINFO_APPCONNECT_TIME],
1994                 [c_cv_have_curlinfo_appconnect_time],
1995                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
1996 [[
1997 #include <curl/curl.h>
1998 ]],
1999 [[
2000 int val = CURLINFO_APPCONNECT_TIME;
2001 return val;
2002 ]]
2003                         )],
2004                         [c_cv_have_curlinfo_appconnect_time="yes"],
2005                         [c_cv_have_curlinfo_appconnect_time="no"]
2006                 )
2007         )
2008         CPPFLAGS="$SAVE_CPPFLAGS"
2009         LDFLAGS="$SAVE_LDFLAGS"
2010 fi
2011 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
2012 if test "x$c_cv_have_curlinfo_appconnect_time" = "xyes"
2013 then
2014         AC_DEFINE(HAVE_CURLINFO_APPCONNECT_TIME, 1, [Define if curl.h defines CURLINFO_APPCONNECT_TIME.])
2015 fi
2016
2017 if test "x$with_libcurl" = "xyes"
2018 then
2019         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
2020         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
2021         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
2022         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
2023
2024         if test "x$have_curlopt_username" = "xyes"
2025         then
2026                 AC_DEFINE(HAVE_CURLOPT_USERNAME, 1, [Define if libcurl supports CURLOPT_USERNAME option.])
2027         fi
2028
2029         if test "x$have_curlopt_timeout" = "xyes"
2030         then
2031                 AC_DEFINE(HAVE_CURLOPT_TIMEOUT_MS, 1, [Define if libcurl supports CURLOPT_TIMEOUT_MS option.])
2032         fi
2033 fi
2034 # }}}
2035
2036 # --with-libdbi {{{
2037 with_libdbi_cppflags=""
2038 with_libdbi_ldflags=""
2039 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
2040 [
2041         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2042         then
2043                 with_libdbi_cppflags="-I$withval/include"
2044                 with_libdbi_ldflags="-L$withval/lib"
2045                 with_libdbi="yes"
2046         else
2047                 with_libdbi="$withval"
2048         fi
2049 ],
2050 [
2051         with_libdbi="yes"
2052 ])
2053 if test "x$with_libdbi" = "xyes"
2054 then
2055         SAVE_CPPFLAGS="$CPPFLAGS"
2056         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2057
2058         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
2059
2060         CPPFLAGS="$SAVE_CPPFLAGS"
2061 fi
2062 if test "x$with_libdbi" = "xyes"
2063 then
2064         SAVE_CPPFLAGS="$CPPFLAGS"
2065         SAVE_LDFLAGS="$LDFLAGS"
2066         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2067         LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
2068
2069         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
2070
2071         CPPFLAGS="$SAVE_CPPFLAGS"
2072         LDFLAGS="$SAVE_LDFLAGS"
2073 fi
2074 if test "x$with_libdbi" = "xyes"
2075 then
2076         BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
2077         BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
2078         BUILD_WITH_LIBDBI_LIBS="-ldbi"
2079         AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
2080         AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
2081         AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
2082 fi
2083 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
2084 # }}}
2085
2086 # --with-libesmtp {{{
2087 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
2088 [
2089         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2090         then
2091                 LDFLAGS="$LDFLAGS -L$withval/lib"
2092                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
2093                 with_libesmtp="yes"
2094         else
2095                 with_libesmtp="$withval"
2096         fi
2097 ],
2098 [
2099         with_libesmtp="yes"
2100 ])
2101 if test "x$with_libesmtp" = "xyes"
2102 then
2103         AC_CHECK_LIB(esmtp, smtp_create_session,
2104         [
2105                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
2106         ], [with_libesmtp="no (libesmtp not found)"])
2107 fi
2108 if test "x$with_libesmtp" = "xyes"
2109 then
2110         AC_CHECK_HEADERS(libesmtp.h,
2111         [
2112                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
2113         ], [with_libesmtp="no (libesmtp.h not found)"])
2114 fi
2115 if test "x$with_libesmtp" = "xyes"
2116 then
2117         collect_libesmtp=1
2118 else
2119         collect_libesmtp=0
2120 fi
2121 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
2122         [Wether or not to use the esmtp library])
2123 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
2124 # }}}
2125
2126 # --with-libganglia {{{
2127 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
2128 [
2129  if test -f "$withval" && test -x "$withval"
2130  then
2131          with_libganglia_config="$withval"
2132          with_libganglia="yes"
2133  else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
2134  then
2135          with_libganglia_config="$withval/bin/ganglia-config"
2136          with_libganglia="yes"
2137  else if test -d "$withval"
2138  then
2139          GANGLIA_CPPFLAGS="-I$withval/include"
2140          GANGLIA_LDFLAGS="-L$withval/lib"
2141          with_libganglia="yes"
2142  else
2143          with_libganglia="$withval"
2144  fi; fi; fi
2145 ],
2146 [
2147  with_libganglia="yes"
2148 ])
2149
2150 if test "x$with_libganglia" = "xyes"
2151 then
2152         if test "x$with_libganglia_config" != "x"
2153         then
2154                 if test "x$GANGLIA_CPPFLAGS" = "x"
2155                 then
2156                         GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
2157                 fi
2158
2159                 if test "x$GANGLIA_LDFLAGS" = "x"
2160                 then
2161                         GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
2162                 fi
2163
2164                 if test "x$GANGLIA_LIBS" = "x"
2165                 then
2166                         GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
2167                 fi
2168         else
2169                 GANGLIA_LIBS="-lganglia"
2170         fi
2171 fi
2172
2173 SAVE_CPPFLAGS="$CPPFLAGS"
2174 SAVE_LDFLAGS="$LDFLAGS"
2175 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
2176 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
2177
2178 if test "x$with_libganglia" = "xyes"
2179 then
2180         AC_CHECK_HEADERS(gm_protocol.h,
2181         [
2182                 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
2183                           [Define to 1 if you have the <gm_protocol.h> header file.])
2184         ], [with_libganglia="no (gm_protocol.h not found)"])
2185 fi
2186
2187 if test "x$with_libganglia" = "xyes"
2188 then
2189         AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
2190         [
2191                 AC_DEFINE(HAVE_LIBGANGLIA, 1,
2192                           [Define to 1 if you have the ganglia library (-lganglia).])
2193         ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
2194 fi
2195
2196 CPPFLAGS="$SAVE_CPPFLAGS"
2197 LDFLAGS="$SAVE_LDFLAGS"
2198
2199 AC_SUBST(GANGLIA_CPPFLAGS)
2200 AC_SUBST(GANGLIA_LDFLAGS)
2201 AC_SUBST(GANGLIA_LIBS)
2202 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
2203 # }}}
2204
2205 # --with-libgcrypt {{{
2206 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
2207 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2208 GCRYPT_LIBS="$GCRYPT_LIBS"
2209 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2210 [
2211  if test -f "$withval" && test -x "$withval"
2212  then
2213          with_libgcrypt_config="$withval"
2214          with_libgcrypt="yes"
2215  else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
2216  then
2217          with_libgcrypt_config="$withval/bin/gcrypt-config"
2218          with_libgcrypt="yes"
2219  else if test -d "$withval"
2220  then
2221          GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2222          GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2223          with_libgcrypt="yes"
2224  else
2225          with_libgcrypt_config="gcrypt-config"
2226          with_libgcrypt="$withval"
2227  fi; fi; fi
2228 ],
2229 [
2230  with_libgcrypt_config="libgcrypt-config"
2231  with_libgcrypt="yes"
2232 ])
2233
2234 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
2235 then
2236         if test "x$GCRYPT_CPPFLAGS" = "x"
2237         then
2238                 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2239         fi
2240
2241         if test "x$GCRYPT_LIBS" = "x"
2242         then
2243                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2244         fi
2245 fi
2246
2247 SAVE_CPPFLAGS="$CPPFLAGS"
2248 SAVE_LDFLAGS="$LDFLAGS"
2249 SAVE_LIBS="$LIBS"
2250 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2251 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2252 LIBS="$LIBS $GCRYPT_LIBS"
2253
2254 if test "x$with_libgcrypt" = "xyes"
2255 then
2256         if test "x$GCRYPT_CPPFLAGS" != "x"
2257         then
2258                 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
2259         fi
2260         AC_CHECK_HEADERS(gcrypt.h,
2261                 [with_libgcrypt="yes"],
2262                 [with_libgcrypt="no (gcrypt.h not found)"])
2263 fi
2264
2265 if test "x$with_libgcrypt" = "xyes"
2266 then
2267         AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2268                 [with_libgcrypt="yes"],
2269                 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
2270 fi
2271
2272 CPPFLAGS="$SAVE_CPPFLAGS"
2273 LDFLAGS="$SAVE_LDFLAGS"
2274 LIBS="$SAVE_LIBS"
2275
2276 if test "x$with_libgcrypt" = "xyes"
2277 then
2278         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
2279 fi
2280
2281 AC_SUBST(GCRYPT_CPPFLAGS)
2282 AC_SUBST(GCRYPT_LDFLAGS)
2283 AC_SUBST(GCRYPT_LIBS)
2284 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
2285 # }}}
2286
2287 # --with-libgps {{{
2288 with_libgps_cflags=""
2289 with_libgps_ldflags=""
2290 AC_ARG_WITH(libgps, [AS_HELP_STRING([--with-libgps@<:@=PREFIX@:>@], [Path to libgps.])],
2291 [
2292         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2293         then
2294                 with_libgps_cflags="-I$withval/include"
2295                 with_libgps_ldflags="-L$withval/lib"
2296                 with_libgps="yes"
2297         else
2298                 with_libgps="$withval"
2299         fi
2300 ],
2301 [
2302         with_libgps="yes"
2303 ])
2304 if test "x$with_libgps" = "xyes"
2305 then
2306         SAVE_CFLAGS="$CFLAGS"
2307         CFLAGS="$CFLAGS $with_libgps_cflags"
2308
2309         AC_CHECK_HEADERS(gps.h, [with_libgps="yes"], [with_libgps="no (gps.h not found)"])
2310
2311         CFLAGS="$SAVE_CFLAGS"
2312 fi
2313 if test "x$with_libgps" = "xyes"
2314 then
2315         SAVE_CFLAGS="$CFLAGS"
2316         SAVE_LDFLAGS="$LDFLAGS"
2317         CFLAGS="$CFLAGS $with_libgps_cflags"
2318         LDFLAGS="$LDFLAGS $with_libgps_ldflags"
2319
2320         AC_CHECK_LIB(gps, gps_open, [with_libgps="yes"], [with_libgps="no (symbol gps_open not found)"])
2321
2322         CFLAGS="$SAVE_CFLAGS"
2323         LDFLAGS="$SAVE_LDFLAGS"
2324 fi
2325 if test "x$with_libgps" = "xyes"
2326 then
2327         BUILD_WITH_LIBGPS_CFLAGS="$with_libgps_cflags"
2328         BUILD_WITH_LIBGPS_LDFLAGS="$with_libgps_ldflags"
2329         BUILD_WITH_LIBGPS_LIBS="-lgps"
2330         AC_SUBST(BUILD_WITH_LIBGPS_CFLAGS)
2331         AC_SUBST(BUILD_WITH_LIBGPS_LDFLAGS)
2332         AC_SUBST(BUILD_WITH_LIBGPS_LIBS)
2333 fi
2334 AM_CONDITIONAL(BUILD_WITH_LIBGPS, test "x$with_libgps" = "xyes")
2335 # }}}
2336
2337 # --with-libgrpc++ {{{
2338 with_libgrpcpp_cppflags=""
2339 with_libgrpcpp_ldflags=""
2340 AC_ARG_WITH([libgrpc++], [AS_HELP_STRING([--with-libgrpc++@<:@=PREFIX@:>@], [Path to libgrpc++.])],
2341   [
2342     with_grpcpp="$withval"
2343     if test "x$withval" != "xno" && test "x$withval" != "xyes"
2344     then
2345       with_libgrpcpp_cppflags="-I$withval/include"
2346       with_libgrpcpp_ldflags="-L$withval/lib"
2347       with_libgrpcpp="yes"
2348     fi
2349     if test "x$withval" = "xno"
2350     then
2351       with_libgrpcpp="no (disabled on command line)"
2352     fi
2353   ],
2354   [withval="yes"]
2355 )
2356 if test "x$withval" = "xyes"
2357 then
2358 PKG_CHECK_MODULES([GRPCPP], [grpc++],
2359   [with_libgrpcpp="yes"],
2360   [with_libgrpcpp="no (pkg-config could not find libgrpc++)"]
2361 )
2362 fi
2363
2364 if test "x$withval" != "xno"
2365 then
2366   AC_MSG_CHECKING([whether $CXX accepts -std=c++11])
2367   if test_cxx_flags -std=c++11; then
2368     AC_MSG_RESULT([yes])
2369   else
2370     AC_MSG_RESULT([no])
2371     with_libgrpcpp="no (requires C++11 support)"
2372   fi
2373 fi
2374
2375 if test "x$with_libgrpcpp" = "xyes"
2376 then
2377   AC_LANG_PUSH(C++)
2378   SAVE_CPPFLAGS="$CPPFLAGS"
2379   CPPFLAGS="$with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS -std=c++11"
2380   AC_CHECK_HEADERS([grpc++/grpc++.h], [],
2381     [with_libgrpcpp="no (<grpc++/grpc++.h> not found)"]
2382   )
2383   CPPFLAGS="$SAVE_CPPFLAGS"
2384   AC_LANG_POP(C++)
2385 fi
2386 if test "x$with_libgrpcpp" = "xyes"
2387 then
2388   AC_LANG_PUSH(C++)
2389   SAVE_LDFLAGS="$LDFLAGS"
2390   SAVE_LIBS="$LIBS"
2391   LDFLAGS="$with_libgrpcpp_ldflags"
2392   if test "x$GRPCPP_LIBS" = "x"
2393   then
2394     LIBS="-lgrpc++"
2395   else
2396     LIBS="$GRPCPP_LIBS"
2397   fi
2398   AC_LINK_IFELSE(
2399     [AC_LANG_PROGRAM(
2400       [[#include <grpc++/grpc++.h>]],
2401       [[grpc::ServerBuilder sb;]]
2402     )],
2403     [
2404       with_libgrpcpp="yes"
2405       if test "x$GRPCPP_LIBS" = "x"
2406       then
2407         GRPCPP_LIBS="-lgrpc++"
2408       fi
2409     ],
2410     [with_libgrpcpp="no (libgrpc++ not found)"]
2411   )
2412   LDFLAGS="$SAVE_LDFLAGS"
2413   LIBS="$SAVE_LIBS"
2414   AC_LANG_POP(C++)
2415 fi
2416 BUILD_WITH_LIBGRPCPP_CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS"
2417 BUILD_WITH_LIBGRPCPP_LDFLAGS="$with_libgrpcpp_ldflags"
2418 BUILD_WITH_LIBGRPCPP_LIBS="$GRPCPP_LIBS"
2419 AC_SUBST([BUILD_WITH_LIBGRPCPP_CPPFLAGS])
2420 AC_SUBST([BUILD_WITH_LIBGRPCPP_LDFLAGS])
2421 AC_SUBST([BUILD_WITH_LIBGRPCPP_LIBS])
2422 # }}}
2423
2424 # --with-libiptc {{{
2425 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2426 [
2427         if test "x$withval" = "xyes"
2428         then
2429                 with_libiptc="pkgconfig"
2430         else if test "x$withval" = "xno"
2431         then
2432                 with_libiptc="no"
2433         else
2434                 with_libiptc="yes"
2435                 with_libiptc_cflags="-I$withval/include"
2436                 with_libiptc_libs="-L$withval/lib"
2437         fi; fi
2438 ],
2439 [
2440         if test "x$ac_system" = "xLinux"
2441         then
2442                 with_libiptc="pkgconfig"
2443         else
2444                 with_libiptc="no (Linux only)"
2445         fi
2446 ])
2447
2448 if test "x$with_libiptc" = "xpkgconfig"
2449 then
2450         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2451         if test $? -ne 0
2452         then
2453                 with_libiptc="no (pkg-config doesn't know libiptc)"
2454         fi
2455 fi
2456 if test "x$with_libiptc" = "xpkgconfig"
2457 then
2458         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2459         if test $? -ne 0
2460         then
2461                 with_libiptc="no ($PKG_CONFIG failed)"
2462         fi
2463         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2464         if test $? -ne 0
2465         then
2466                 with_libiptc="no ($PKG_CONFIG failed)"
2467         fi
2468 fi
2469
2470 SAVE_CPPFLAGS="$CPPFLAGS"
2471 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2472
2473 # check whether the header file for libiptc is available.
2474 if test "x$with_libiptc" = "xpkgconfig"
2475 then
2476         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2477                         [with_libiptc="no (header file missing)"])
2478 fi
2479 # If the header file is available, check for the required type declaractions.
2480 # They may be missing in old versions of libiptc. In that case, they will be
2481 # declared in the iptables plugin.
2482 if test "x$with_libiptc" = "xpkgconfig"
2483 then
2484         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2485 fi
2486 # Check for the iptc_init symbol in the library.
2487 # This could be in iptc or ip4tc
2488 if test "x$with_libiptc" = "xpkgconfig"
2489 then
2490         SAVE_LIBS="$LIBS"
2491         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2492                         [with_libiptc="pkgconfig"],
2493                         [with_libiptc="no"],
2494                         [$with_libiptc_libs])
2495         LIBS="$SAVE_LIBS"
2496 fi
2497 if test "x$with_libiptc" = "xpkgconfig"
2498 then
2499         with_libiptc="yes"
2500 fi
2501
2502 CPPFLAGS="$SAVE_CPPFLAGS"
2503
2504 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2505 if test "x$with_libiptc" = "xyes"
2506 then
2507         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2508         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2509         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2510         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2511 fi
2512 # }}}
2513
2514 # --with-java {{{
2515 with_java_home="$JAVA_HOME"
2516 if test "x$with_java_home" = "x"
2517 then
2518         with_java_home="/usr/lib/jvm"
2519 fi
2520 JAVAC="$JAVAC"
2521 JAR="$JAR"
2522 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2523 [
2524         if test "x$withval" = "xno"
2525         then
2526                 with_java="no"
2527         else if test "x$withval" = "xyes"
2528         then
2529                 with_java="yes"
2530         else
2531                 with_java_home="$withval"
2532                 with_java="yes"
2533         fi; fi
2534 ],
2535 [with_java="yes"])
2536 if test "x$with_java" = "xyes"
2537 then
2538         if test -d "$with_java_home"
2539         then
2540                 AC_MSG_CHECKING([for jni.h])
2541                 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2542                 if test "x$TMPVAR" != "x"
2543                 then
2544                         AC_MSG_RESULT([found in $TMPVAR])
2545                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2546                 else
2547                         AC_MSG_RESULT([not found])
2548                 fi
2549
2550                 AC_MSG_CHECKING([for jni_md.h])
2551                 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2552                 if test "x$TMPVAR" != "x"
2553                 then
2554                         AC_MSG_RESULT([found in $TMPVAR])
2555                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2556                 else
2557                         AC_MSG_RESULT([not found])
2558                 fi
2559
2560                 AC_MSG_CHECKING([for libjvm.so])
2561                 TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2562                 if test "x$TMPVAR" != "x"
2563                 then
2564                         AC_MSG_RESULT([found in $TMPVAR])
2565                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2566                 else
2567                         AC_MSG_RESULT([not found])
2568                 fi
2569
2570                 if test "x$JAVAC" = "x"
2571                 then
2572                         AC_MSG_CHECKING([for javac])
2573                         TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2574                         if test "x$TMPVAR" != "x"
2575                         then
2576                                 JAVAC="$TMPVAR"
2577                                 AC_MSG_RESULT([$JAVAC])
2578                         else
2579                                 AC_MSG_RESULT([not found])
2580                         fi
2581                 fi
2582                 if test "x$JAR" = "x"
2583                 then
2584                         AC_MSG_CHECKING([for jar])
2585                         TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2586                         if test "x$TMPVAR" != "x"
2587                         then
2588                                 JAR="$TMPVAR"
2589                                 AC_MSG_RESULT([$JAR])
2590                         else
2591                                 AC_MSG_RESULT([not found])
2592                         fi
2593                 fi
2594         else if test "x$with_java_home" != "x"
2595         then
2596                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2597         fi; fi
2598 fi
2599
2600 if test "x$JAVA_CPPFLAGS" != "x"
2601 then
2602         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2603 fi
2604 if test "x$JAVA_CFLAGS" != "x"
2605 then
2606         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2607 fi
2608 if test "x$JAVA_LDFLAGS" != "x"
2609 then
2610         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2611 fi
2612 if test "x$JAVA_LIBS" != "x"
2613 then
2614         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2615 fi
2616 if test "x$JAVAC" = "x"
2617 then
2618         with_javac_path="$PATH"
2619         if test "x$with_java_home" != "x"
2620         then
2621                 with_javac_path="$with_java_home:with_javac_path"
2622                 if test -d "$with_java_home/bin"
2623                 then
2624                         with_javac_path="$with_java_home/bin:with_javac_path"
2625                 fi
2626         fi
2627
2628         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2629 fi
2630 if test "x$JAVAC" = "x"
2631 then
2632         with_java="no (javac not found)"
2633 fi
2634 if test "x$JAR" = "x"
2635 then
2636         with_jar_path="$PATH"
2637         if test "x$with_java_home" != "x"
2638         then
2639                 with_jar_path="$with_java_home:$with_jar_path"
2640                 if test -d "$with_java_home/bin"
2641                 then
2642                         with_jar_path="$with_java_home/bin:$with_jar_path"
2643                 fi
2644         fi
2645
2646         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2647 fi
2648 if test "x$JAR" = "x"
2649 then
2650         with_java="no (jar not found)"
2651 fi
2652
2653 SAVE_CPPFLAGS="$CPPFLAGS"
2654 SAVE_CFLAGS="$CFLAGS"
2655 SAVE_LDFLAGS="$LDFLAGS"
2656 SAVE_LIBS="$LIBS"
2657 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2658 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2659 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2660 LIBS="$LIBS $JAVA_LIBS"
2661
2662 if test "x$with_java" = "xyes"
2663 then
2664         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2665 fi
2666 if test "x$with_java" = "xyes"
2667 then
2668         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2669         [with_java="yes"],
2670         [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
2671         [$JAVA_LIBS $PTHREAD_LIBS])
2672 fi
2673 if test "x$with_java" = "xyes"
2674 then
2675         JAVA_LIBS="$JAVA_LIBS -ljvm"
2676         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2677 fi
2678
2679 CPPFLAGS="$SAVE_CPPFLAGS"
2680 CFLAGS="$SAVE_CFLAGS"
2681 LDFLAGS="$SAVE_LDFLAGS"
2682 LIBS="$SAVE_LIBS"
2683
2684 AC_SUBST(JAVA_CPPFLAGS)
2685 AC_SUBST(JAVA_CFLAGS)
2686 AC_SUBST(JAVA_LDFLAGS)
2687 AC_SUBST(JAVA_LIBS)
2688 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2689 # }}}
2690
2691 # --with-libldap {{{
2692 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2693 [
2694  if test "x$withval" = "xyes"
2695  then
2696          with_libldap="yes"
2697  else if test "x$withval" = "xno"
2698  then
2699          with_libldap="no"
2700  else
2701          with_libldap="yes"
2702          LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2703          LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2704  fi; fi
2705 ],
2706 [with_libldap="yes"])
2707
2708 SAVE_CPPFLAGS="$CPPFLAGS"
2709 SAVE_LDFLAGS="$LDFLAGS"
2710
2711 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2712 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2713
2714 if test "x$with_libldap" = "xyes"
2715 then
2716         if test "x$LIBLDAP_CPPFLAGS" != "x"
2717         then
2718                 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2719         fi
2720         AC_CHECK_HEADERS(ldap.h,
2721         [with_libldap="yes"],
2722         [with_libldap="no ('ldap.h' not found)"])
2723 fi
2724 if test "x$with_libldap" = "xyes"
2725 then
2726         if test "x$LIBLDAP_LDFLAGS" != "x"
2727         then
2728                 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2729         fi
2730         AC_CHECK_LIB(ldap, ldap_initialize,
2731         [with_libldap="yes"],
2732         [with_libldap="no (symbol 'ldap_initialize' not found)"])
2733
2734 fi
2735
2736 CPPFLAGS="$SAVE_CPPFLAGS"
2737 LDFLAGS="$SAVE_LDFLAGS"
2738
2739 if test "x$with_libldap" = "xyes"
2740 then
2741         BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2742         BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2743         AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2744         AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2745 fi
2746 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2747 # }}}
2748
2749 # --with-liblvm2app {{{
2750 with_liblvm2app_cppflags=""
2751 with_liblvm2app_ldflags=""
2752 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2753 [
2754         if test "x$withval" = "xno"
2755         then
2756                 with_liblvm2app="no"
2757         else
2758                 with_liblvm2app="yes"
2759                 if test "x$withval" != "xyes"
2760                 then
2761                         with_liblvm2app_cppflags="-I$withval/include"
2762                         with_liblvm2app_ldflags="-L$withval/lib"
2763                 fi
2764         fi
2765 ],
2766 [
2767         if test "x$ac_system" = "xLinux"
2768         then
2769                 with_liblvm2app="yes"
2770         else
2771                 with_liblvm2app="no (Linux only library)"
2772         fi
2773 ])
2774 if test "x$with_liblvm2app" = "xyes"
2775 then
2776         SAVE_CPPFLAGS="$CPPFLAGS"
2777         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2778
2779         AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2780
2781         CPPFLAGS="$SAVE_CPPFLAGS"
2782 fi
2783
2784 if test "x$with_liblvm2app" = "xyes"
2785 then
2786         SAVE_CPPFLAGS="$CPPFLAGS"
2787         SAVE_LDFLAGS="$LDFLAGS"
2788         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2789         LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2790
2791         AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
2792
2793         CPPFLAGS="$SAVE_CPPFLAGS"
2794         LDFLAGS="$SAVE_LDFLAGS"
2795 fi
2796 if test "x$with_liblvm2app" = "xyes"
2797 then
2798         BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2799         BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2800         BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2801         AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2802         AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2803         AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2804         AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2805 fi
2806 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2807 # }}}
2808
2809 # --with-libmemcached {{{
2810 with_libmemcached_cppflags=""
2811 with_libmemcached_ldflags=""
2812 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2813 [
2814         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2815         then
2816                 with_libmemcached_cppflags="-I$withval/include"
2817                 with_libmemcached_ldflags="-L$withval/lib"
2818                 with_libmemcached="yes"
2819         else
2820                 with_libmemcached="$withval"
2821         fi
2822 ],
2823 [
2824         with_libmemcached="yes"
2825 ])
2826 if test "x$with_libmemcached" = "xyes"
2827 then
2828         SAVE_CPPFLAGS="$CPPFLAGS"
2829         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2830
2831         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2832
2833         CPPFLAGS="$SAVE_CPPFLAGS"
2834 fi
2835 if test "x$with_libmemcached" = "xyes"
2836 then
2837         SAVE_CPPFLAGS="$CPPFLAGS"
2838         SAVE_LDFLAGS="$LDFLAGS"
2839         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2840         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2841
2842         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2843
2844         CPPFLAGS="$SAVE_CPPFLAGS"
2845         LDFLAGS="$SAVE_LDFLAGS"
2846 fi
2847 if test "x$with_libmemcached" = "xyes"
2848 then
2849         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2850         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2851         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2852         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2853         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2854         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2855         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2856 fi
2857 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2858 # }}}
2859
2860 # --with-libmodbus {{{
2861 with_libmodbus_config=""
2862 with_libmodbus_cflags=""
2863 with_libmodbus_libs=""
2864 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2865 [
2866         if test "x$withval" = "xno"
2867         then
2868                 with_libmodbus="no"
2869         else if test "x$withval" = "xyes"
2870         then
2871                 with_libmodbus="use_pkgconfig"
2872         else if test -d "$with_libmodbus/lib"
2873         then
2874                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2875                 with_libmodbus_cflags="-I$withval/include"
2876                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2877                 with_libmodbus="yes"
2878         fi; fi; fi
2879 ],
2880 [with_libmodbus="use_pkgconfig"])
2881
2882 # configure using pkg-config
2883 if test "x$with_libmodbus" = "xuse_pkgconfig"
2884 then
2885         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2886         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2887         if test $? -ne 0
2888         then
2889                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2890         fi
2891 fi
2892 if test "x$with_libmodbus" = "xuse_pkgconfig"
2893 then
2894         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2895         if test $? -ne 0
2896         then
2897                 with_libmodbus="no ($PKG_CONFIG failed)"
2898         fi
2899         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2900         if test $? -ne 0
2901         then
2902                 with_libmodbus="no ($PKG_CONFIG failed)"
2903         fi
2904 fi
2905 if test "x$with_libmodbus" = "xuse_pkgconfig"
2906 then
2907         with_libmodbus="yes"
2908 fi
2909
2910 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2911 # the actual checks.
2912 if test "x$with_libmodbus" = "xyes"
2913 then
2914         SAVE_CPPFLAGS="$CPPFLAGS"
2915         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2916
2917         AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
2918
2919         CPPFLAGS="$SAVE_CPPFLAGS"
2920 fi
2921 if test "x$with_libmodbus" = "xyes"
2922 then
2923         SAVE_CPPFLAGS="$CPPFLAGS"
2924         SAVE_LDFLAGS="$LDFLAGS"
2925
2926         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2927         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2928
2929         AC_CHECK_LIB(modbus, modbus_connect,
2930                      [with_libmodbus="yes"],
2931                      [with_libmodbus="no (symbol modbus_connect not found)"])
2932
2933         CPPFLAGS="$SAVE_CPPFLAGS"
2934         LDFLAGS="$SAVE_LDFLAGS"
2935 fi
2936 if test "x$with_libmodbus" = "xyes"
2937 then
2938         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2939         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2940         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2941         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2942 fi
2943 # }}}
2944
2945 # --with-libmongoc {{{
2946 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2947 [
2948  if test "x$withval" = "xyes"
2949  then
2950          with_libmongoc="yes"
2951  else if test "x$withval" = "xno"
2952  then
2953          with_libmongoc="no"
2954  else
2955          with_libmongoc="yes"
2956          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2957          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2958  fi; fi
2959 ],
2960 [with_libmongoc="yes"])
2961
2962 SAVE_CPPFLAGS="$CPPFLAGS"
2963 SAVE_LDFLAGS="$LDFLAGS"
2964
2965 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2966 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2967
2968 if test "x$with_libmongoc" = "xyes"
2969 then
2970         if test "x$LIBMONGOC_CPPFLAGS" != "x"
2971         then
2972                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2973         fi
2974         AC_CHECK_HEADERS(mongo.h,
2975         [with_libmongoc="yes"],
2976         [with_libmongoc="no ('mongo.h' not found)"],
2977 [#if HAVE_STDINT_H
2978 # define MONGO_HAVE_STDINT 1
2979 #else
2980 # define MONGO_USE_LONG_LONG_INT 1
2981 #endif
2982 ])
2983 fi
2984 if test "x$with_libmongoc" = "xyes"
2985 then
2986         if test "x$LIBMONGOC_LDFLAGS" != "x"
2987         then
2988                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2989         fi
2990         AC_CHECK_LIB(mongoc, mongo_run_command,
2991         [with_libmongoc="yes"],
2992         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2993 fi
2994
2995 CPPFLAGS="$SAVE_CPPFLAGS"
2996 LDFLAGS="$SAVE_LDFLAGS"
2997
2998 if test "x$with_libmongoc" = "xyes"
2999 then
3000         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
3001         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
3002         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
3003         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
3004 fi
3005 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
3006 # }}}
3007
3008 # --with-libmosquitto {{{
3009 with_libmosquitto_cppflags=""
3010 with_libmosquitto_ldflags=""
3011 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
3012 [
3013         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3014         then
3015                 with_libmosquitto_cppflags="-I$withval/include"
3016                 with_libmosquitto_ldflags="-L$withval/lib"
3017                 with_libmosquitto="yes"
3018         else
3019                 with_libmosquitto="$withval"
3020         fi
3021 ],
3022 [
3023         with_libmosquitto="yes"
3024 ])
3025 if test "x$with_libmosquitto" = "xyes"
3026 then
3027         SAVE_CPPFLAGS="$CPPFLAGS"
3028         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3029
3030         AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
3031
3032         CPPFLAGS="$SAVE_CPPFLAGS"
3033 fi
3034 if test "x$with_libmosquitto" = "xyes"
3035 then
3036         SAVE_LDFLAGS="$LDFLAGS"
3037         SAVE_CPPFLAGS="$CPPFLAGS"
3038         LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
3039         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3040
3041         AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
3042
3043         LDFLAGS="$SAVE_LDFLAGS"
3044         CPPFLAGS="$SAVE_CPPFLAGS"
3045 fi
3046 if test "x$with_libmosquitto" = "xyes"
3047 then
3048         BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
3049         BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
3050         BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
3051         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
3052         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LDFLAGS)
3053         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
3054 fi
3055 # }}}
3056
3057 # --with-libmysql {{{
3058 with_mysql_config="mysql_config"
3059 with_mysql_cflags=""
3060 with_mysql_libs=""
3061 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
3062 [
3063         if test "x$withval" = "xno"
3064         then
3065                 with_libmysql="no"
3066         else if test "x$withval" = "xyes"
3067         then
3068                 with_libmysql="yes"
3069         else
3070                 if test -f "$withval" && test -x "$withval";
3071                 then
3072                         with_mysql_config="$withval"
3073                 else if test -x "$withval/bin/mysql_config"
3074                 then
3075                         with_mysql_config="$withval/bin/mysql_config"
3076                 fi; fi
3077                 with_libmysql="yes"
3078         fi; fi
3079 ],
3080 [
3081         with_libmysql="yes"
3082 ])
3083 if test "x$with_libmysql" = "xyes"
3084 then
3085         with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
3086         mysql_config_status=$?
3087
3088         if test $mysql_config_status -ne 0
3089         then
3090                 with_libmysql="no ($with_mysql_config failed)"
3091         else
3092                 SAVE_CPPFLAGS="$CPPFLAGS"
3093                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3094
3095                 have_mysql_h="no"
3096                 have_mysql_mysql_h="no"
3097                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
3098
3099                 if test "x$have_mysql_h" = "xno"
3100                 then
3101                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
3102                 fi
3103
3104                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
3105                 then
3106                         with_libmysql="no (mysql.h not found)"
3107                 fi
3108
3109                 CPPFLAGS="$SAVE_CPPFLAGS"
3110         fi
3111 fi
3112 if test "x$with_libmysql" = "xyes"
3113 then
3114         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
3115         mysql_config_status=$?
3116
3117         if test $mysql_config_status -ne 0
3118         then
3119                 with_libmysql="no ($with_mysql_config failed)"
3120         else
3121                 SAVE_CPPFLAGS="$CPPFLAGS"
3122                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3123                 SAVE_LIBS="$LIBS"
3124                 LIBS="$with_mysql_libs"
3125                 AC_SEARCH_LIBS([mysql_get_server_version],
3126                  [],
3127                  [with_libmysql="yes"],
3128                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
3129                  [])
3130                 CPPFLAGS="$SAVE_CPPFLAGS"
3131                 LIBS="$SAVE_LIBS"
3132         fi
3133 fi
3134 if test "x$with_libmysql" = "xyes"
3135 then
3136         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
3137         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
3138         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
3139         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
3140 fi
3141 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
3142 # }}}
3143
3144 # --with-libmnl {{{
3145 with_libmnl_cflags=""
3146 with_libmnl_libs=""
3147 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
3148 [
3149  echo "libmnl: withval = $withval"
3150  if test "x$withval" = "xyes"
3151  then
3152          with_libmnl="yes"
3153  else if test "x$withval" = "xno"
3154  then
3155          with_libmnl="no"
3156  else
3157          if test -d "$withval/include"
3158          then
3159                  with_libmnl_cflags="-I$withval/include"
3160                  with_libmnl_libs="-L$withval/lib -lmnl"
3161                  with_libmnl="yes"
3162          else
3163                  AC_MSG_ERROR("no such directory: $withval/include")
3164          fi
3165  fi; fi
3166 ],
3167 [
3168  if test "x$ac_system" = "xLinux"
3169  then
3170          with_libmnl="yes"
3171  else
3172          with_libmnl="no (Linux only library)"
3173  fi
3174 ])
3175 if test "x$with_libmnl" = "xyes"
3176 then
3177         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
3178           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
3179           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
3180         fi
3181
3182         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
3183         [
3184          with_libmnl="yes"
3185          break
3186         ], [],
3187 [#include <stdio.h>
3188 #include <sys/types.h>
3189 #include <asm/types.h>
3190 #include <sys/socket.h>
3191 #include <linux/netlink.h>
3192 #include <linux/rtnetlink.h>])
3193         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
3194 [#include <stdio.h>
3195 #include <sys/types.h>
3196 #include <asm/types.h>
3197 #include <sys/socket.h>])
3198
3199         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3200 [[
3201 #include <stdio.h>
3202 #include <sys/types.h>
3203 #include <asm/types.h>
3204 #include <sys/socket.h>
3205 #include <linux/netlink.h>
3206 #include <linux/rtnetlink.h>
3207 ]],
3208 [[
3209 int retval = TCA_STATS2;
3210 return (retval);
3211 ]]
3212         )],
3213         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
3214
3215         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3216 [[
3217 #include <stdio.h>
3218 #include <sys/types.h>
3219 #include <asm/types.h>
3220 #include <sys/socket.h>
3221 #include <linux/netlink.h>
3222 #include <linux/rtnetlink.h>
3223 ]],
3224 [[
3225 int retval = TCA_STATS;
3226 return (retval);
3227 ]]
3228         )],
3229         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
3230 fi
3231 if test "x$with_libmnl" = "xyes"
3232 then
3233         AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3234         [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3235         [],
3236         [
3237         #include <linux/if_link.h>
3238         ])
3239 fi
3240 if test "x$with_libmnl" = "xyes"
3241 then
3242         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
3243                      [with_libmnl="yes"],
3244                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3245                      [$with_libmnl_libs])
3246 fi
3247 if test "x$with_libmnl" = "xyes"
3248 then
3249         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
3250         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3251         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3252         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
3253         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
3254 fi
3255 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
3256 # }}}
3257
3258 # --with-libnetapp {{{
3259 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3260 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
3261 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
3262 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
3263 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
3264 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
3265 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3266 [
3267  if test -d "$withval"
3268  then
3269          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3270          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3271          with_libnetapp="yes"
3272  else
3273          with_libnetapp="$withval"
3274  fi
3275 ],
3276 [
3277  with_libnetapp="yes"
3278 ])
3279
3280 SAVE_CPPFLAGS="$CPPFLAGS"
3281 SAVE_LDFLAGS="$LDFLAGS"
3282 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3283 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3284
3285 if test "x$with_libnetapp" = "xyes"
3286 then
3287         if test "x$LIBNETAPP_CPPFLAGS" != "x"
3288         then
3289                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
3290         fi
3291         AC_CHECK_HEADERS(netapp_api.h,
3292                 [with_libnetapp="yes"],
3293                 [with_libnetapp="no (netapp_api.h not found)"])
3294 fi
3295
3296 if test "x$with_libnetapp" = "xyes"
3297 then
3298         if test "x$LIBNETAPP_LDFLAGS" != "x"
3299         then
3300                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
3301         fi
3302
3303         if test "x$LIBNETAPP_LIBS" = "x"
3304         then
3305                 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3306         fi
3307         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
3308
3309         AC_CHECK_LIB(netapp, na_server_invoke_elem,
3310                 [with_libnetapp="yes"],
3311                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3312                 [$LIBNETAPP_LIBS])
3313         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3314 fi
3315
3316 CPPFLAGS="$SAVE_CPPFLAGS"
3317 LDFLAGS="$SAVE_LDFLAGS"
3318
3319 if test "x$with_libnetapp" = "xyes"
3320 then
3321         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
3322 fi
3323
3324 AC_SUBST(LIBNETAPP_CPPFLAGS)
3325 AC_SUBST(LIBNETAPP_LDFLAGS)
3326 AC_SUBST(LIBNETAPP_LIBS)
3327 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
3328 # }}}
3329
3330 # --with-libnetsnmp {{{
3331 with_snmp_config="net-snmp-config"
3332 with_snmp_cflags=""
3333 with_snmp_libs=""
3334 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3335 [
3336         if test "x$withval" = "xno"
3337         then
3338                 with_libnetsnmp="no"
3339         else if test "x$withval" = "xyes"
3340         then
3341                 with_libnetsnmp="yes"
3342         else
3343                 if test -x "$withval"
3344                 then
3345                         with_snmp_config="$withval"
3346                         with_libnetsnmp="yes"
3347                 else
3348                         with_snmp_config="$withval/bin/net-snmp-config"
3349                         with_libnetsnmp="yes"
3350                 fi
3351         fi; fi
3352 ],
3353 [with_libnetsnmp="yes"])
3354 if test "x$with_libnetsnmp" = "xyes"
3355 then
3356         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
3357         snmp_config_status=$?
3358
3359         if test $snmp_config_status -ne 0
3360         then
3361                 with_libnetsnmp="no ($with_snmp_config failed)"
3362         else
3363                 SAVE_CPPFLAGS="$CPPFLAGS"
3364                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
3365
3366                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3367
3368                 CPPFLAGS="$SAVE_CPPFLAGS"
3369         fi
3370 fi
3371 if test "x$with_libnetsnmp" = "xyes"
3372 then
3373         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
3374         snmp_config_status=$?
3375
3376         if test $snmp_config_status -ne 0
3377         then
3378                 with_libnetsnmp="no ($with_snmp_config failed)"
3379         else
3380                 AC_CHECK_LIB(netsnmp, init_snmp,
3381                 [with_libnetsnmp="yes"],
3382                 [with_libnetsnmp="no (libnetsnmp not found)"],
3383                 [$with_snmp_libs])
3384         fi
3385 fi
3386 if test "x$with_libnetsnmp" = "xyes"
3387 then
3388         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
3389         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
3390         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
3391         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
3392 fi
3393 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
3394 # }}}
3395
3396 # --with-liboconfig {{{
3397 with_own_liboconfig="no"
3398 liboconfig_LDFLAGS="$LDFLAGS"
3399 liboconfig_CPPFLAGS="$CPPFLAGS"
3400 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3401 [
3402         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3403         then
3404                 if test -d "$withval/lib"
3405                 then
3406                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3407                 fi
3408                 if test -d "$withval/include"
3409                 then
3410                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3411                 fi
3412         fi
3413         if test "x$withval" = "xno"
3414         then
3415                 AC_MSG_ERROR("liboconfig is required")
3416         fi
3417 ],
3418 [
3419         with_liboconfig="yes"
3420 ])
3421
3422 save_LDFLAGS="$LDFLAGS"
3423 save_CPPFLAGS="$CPPFLAGS"
3424 LDFLAGS="$liboconfig_LDFLAGS"
3425 CPPFLAGS="$liboconfig_CPPFLAGS"
3426 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
3427 [
3428         with_liboconfig="yes"
3429         with_own_liboconfig="no"
3430 ],
3431 [
3432         with_liboconfig="yes"
3433         with_own_liboconfig="yes"
3434         LDFLAGS="$save_LDFLAGS"
3435         CPPFLAGS="$save_CPPFLAGS"
3436 ])
3437
3438 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3439 if test "x$with_own_liboconfig" = "xyes"
3440 then
3441         with_liboconfig="yes (shipped version)"
3442 fi
3443 # }}}
3444
3445 # --with-liboping {{{
3446 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3447 [
3448  if test "x$withval" = "xyes"
3449  then
3450          with_liboping="yes"
3451  else if test "x$withval" = "xno"
3452  then
3453          with_liboping="no"
3454  else
3455          with_liboping="yes"
3456          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3457          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3458  fi; fi
3459 ],
3460 [with_liboping="yes"])
3461
3462 SAVE_CPPFLAGS="$CPPFLAGS"
3463 SAVE_LDFLAGS="$LDFLAGS"
3464
3465 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3466 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3467
3468 if test "x$with_liboping" = "xyes"
3469 then
3470         if test "x$LIBOPING_CPPFLAGS" != "x"
3471         then
3472                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3473         fi
3474         AC_CHECK_HEADERS(oping.h,
3475         [with_liboping="yes"],
3476         [with_liboping="no (oping.h not found)"])
3477 fi
3478 if test "x$with_liboping" = "xyes"
3479 then
3480         if test "x$LIBOPING_LDFLAGS" != "x"
3481         then
3482                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3483         fi
3484         AC_CHECK_LIB(oping, ping_construct,
3485         [with_liboping="yes"],
3486         [with_liboping="no (symbol 'ping_construct' not found)"])
3487 fi
3488
3489 CPPFLAGS="$SAVE_CPPFLAGS"
3490 LDFLAGS="$SAVE_LDFLAGS"
3491
3492 if test "x$with_liboping" = "xyes"
3493 then
3494         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3495         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3496         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3497         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3498 fi
3499 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3500 # }}}
3501
3502 # --with-oracle {{{
3503 with_oracle_cppflags=""
3504 with_oracle_libs=""
3505 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3506 [
3507         if test "x$withval" = "xyes"
3508         then
3509                 if test "x$ORACLE_HOME" = "x"
3510                 then
3511                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3512                 fi
3513                 with_oracle="yes"
3514         else if test "x$withval" = "xno"
3515         then
3516                 with_oracle="no"
3517         else
3518                 with_oracle="yes"
3519                 ORACLE_HOME="$withval"
3520         fi; fi
3521 ],
3522 [
3523         if test "x$ORACLE_HOME" = "x"
3524         then
3525                 with_oracle="no (ORACLE_HOME is not set)"
3526         else
3527                 with_oracle="yes"
3528         fi
3529 ])
3530 if test "x$ORACLE_HOME" != "x"
3531 then
3532         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3533
3534         if test -e "$ORACLE_HOME/lib/ldflags"
3535         then
3536                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3537         fi
3538         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3539         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3540 fi
3541 if test "x$with_oracle" = "xyes"
3542 then
3543         SAVE_CPPFLAGS="$CPPFLAGS"
3544         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3545
3546         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3547
3548         CPPFLAGS="$SAVE_CPPFLAGS"
3549 fi
3550 if test "x$with_oracle" = "xyes"
3551 then
3552         SAVE_CPPFLAGS="$CPPFLAGS"
3553         SAVE_LIBS="$LIBS"
3554         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3555         LIBS="$LIBS $with_oracle_libs"
3556
3557         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3558
3559         CPPFLAGS="$SAVE_CPPFLAGS"
3560         LIBS="$SAVE_LIBS"
3561 fi
3562 if test "x$with_oracle" = "xyes"
3563 then
3564         BUILD_WITH_ORACLE_CPPFLAGS="$with_oracle_cppflags"
3565         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3566         AC_SUBST(BUILD_WITH_ORACLE_CPPFLAGS)
3567         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3568 fi
3569 # }}}
3570
3571 # --with-libowcapi {{{
3572 with_libowcapi_cppflags=""
3573 with_libowcapi_ldflags=""
3574 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3575 [
3576         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3577         then
3578                 with_libowcapi_cppflags="-I$withval/include"
3579                 with_libowcapi_ldflags="-L$withval/lib"
3580                 with_libowcapi="yes"
3581         else
3582                 with_libowcapi="$withval"
3583         fi
3584 ],
3585 [
3586         with_libowcapi="yes"
3587 ])
3588 if test "x$with_libowcapi" = "xyes"
3589 then
3590         SAVE_CPPFLAGS="$CPPFLAGS"
3591         CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
3592
3593         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3594
3595         CPPFLAGS="$SAVE_CPPFLAGS"
3596 fi
3597 if test "x$with_libowcapi" = "xyes"
3598 then
3599         SAVE_LDFLAGS="$LDFLAGS"
3600         SAVE_CPPFLAGS="$CPPFLAGS"
3601         LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
3602         CPPFLAGS="$with_libowcapi_cppflags"
3603
3604         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3605
3606         LDFLAGS="$SAVE_LDFLAGS"
3607         CPPFLAGS="$SAVE_CPPFLAGS"
3608 fi
3609 if test "x$with_libowcapi" = "xyes"
3610 then
3611         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3612         BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
3613         BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
3614         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3615         AC_SUBST(BUILD_WITH_LIBOWCAPI_LDFLAGS)
3616         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3617 fi
3618 # }}}
3619
3620 # --with-libpcap {{{
3621 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3622 [
3623         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3624         then
3625                 LDFLAGS="$LDFLAGS -L$withval/lib"
3626                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3627                 with_libpcap="yes"
3628         else
3629                 with_libpcap="$withval"
3630         fi
3631 ],
3632 [
3633         with_libpcap="yes"
3634 ])
3635 if test "x$with_libpcap" = "xyes"
3636 then
3637         AC_CHECK_LIB(pcap, pcap_open_live,
3638         [
3639                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3640         ], [with_libpcap="no (libpcap not found)"])
3641 fi
3642 if test "x$with_libpcap" = "xyes"
3643 then
3644         AC_CHECK_HEADERS(pcap.h,,
3645                          [with_libpcap="no (pcap.h not found)"])
3646 fi
3647 if test "x$with_libpcap" = "xyes"
3648 then
3649         AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3650                        [c_cv_libpcap_have_pcap_error_iface_not_up],
3651                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3652 [[[
3653 #include <pcap.h>
3654 ]]],
3655 [[[
3656   int val = PCAP_ERROR_IFACE_NOT_UP;
3657   return(val);
3658 ]]]
3659                        )],
3660                        [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3661                        [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3662 fi
3663 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3664 then
3665                 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3666 fi
3667 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3668 # }}}
3669
3670 # --with-libperl {{{
3671 perl_interpreter="perl"
3672 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3673 [
3674         if test -f "$withval" && test -x "$withval"
3675         then
3676                 perl_interpreter="$withval"
3677                 with_libperl="yes"
3678         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3679         then
3680                 LDFLAGS="$LDFLAGS -L$withval/lib"
3681                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3682                 perl_interpreter="$withval/bin/perl"
3683                 with_libperl="yes"
3684         else
3685                 with_libperl="$withval"
3686         fi; fi
3687 ],
3688 [
3689         with_libperl="yes"
3690 ])
3691
3692 AC_MSG_CHECKING([for perl])
3693 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3694 if test -x "$perl_interpreter"
3695 then
3696         AC_MSG_RESULT([yes ($perl_interpreter)])
3697 else
3698         perl_interpreter=""
3699         AC_MSG_RESULT([no])
3700 fi
3701
3702 AC_SUBST(PERL, "$perl_interpreter")
3703
3704 if test "x$with_libperl" = "xyes" \
3705         && test -n "$perl_interpreter"
3706 then
3707   SAVE_CFLAGS="$CFLAGS"
3708   SAVE_LIBS="$LIBS"
3709 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3710   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e perl_inc`
3711   PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3712   CFLAGS="$CFLAGS $PERL_CFLAGS"
3713   LIBS="$LIBS $PERL_LIBS"
3714
3715   AC_CACHE_CHECK([for libperl],
3716     [c_cv_have_libperl],
3717     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3718 [[[
3719 #define PERL_NO_GET_CONTEXT
3720 #include <EXTERN.h>
3721 #include <perl.h>
3722 #include <XSUB.h>
3723 ]]],
3724 [[[
3725        dTHX;
3726        load_module (PERL_LOADMOD_NOIMPORT,
3727                          newSVpv ("Collectd::Plugin::FooBar", 24),
3728                          Nullsv);
3729 ]]]
3730       )],
3731       [c_cv_have_libperl="yes"],
3732       [c_cv_have_libperl="no"]
3733     )
3734   )
3735
3736   if test "x$c_cv_have_libperl" = "xyes"
3737   then
3738           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3739           AC_SUBST(PERL_CFLAGS)
3740           AC_SUBST(PERL_LIBS)
3741   else
3742           with_libperl="no"
3743   fi
3744
3745   CFLAGS="$SAVE_CFLAGS"
3746   LIBS="$SAVE_LIBS"
3747 else if test -z "$perl_interpreter"; then
3748   with_libperl="no (no perl interpreter found)"
3749   c_cv_have_libperl="no"
3750 fi; fi
3751 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3752
3753 if test "x$with_libperl" = "xyes"
3754 then
3755         SAVE_CFLAGS="$CFLAGS"
3756         SAVE_LIBS="$LIBS"
3757         CFLAGS="$CFLAGS $PERL_CFLAGS"
3758         LIBS="$LIBS $PERL_LIBS"
3759
3760         AC_CACHE_CHECK([if perl supports ithreads],
3761                 [c_cv_have_perl_ithreads],
3762                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3763 [[[
3764 #include <EXTERN.h>
3765 #include <perl.h>
3766 #include <XSUB.h>
3767
3768 #if !defined(USE_ITHREADS)
3769 # error "Perl does not support ithreads!"
3770 #endif /* !defined(USE_ITHREADS) */
3771 ]]],
3772 [[[ ]]]
3773                         )],
3774                         [c_cv_have_perl_ithreads="yes"],
3775                         [c_cv_have_perl_ithreads="no"]
3776                 )
3777         )
3778
3779         if test "x$c_cv_have_perl_ithreads" = "xyes"
3780         then
3781                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3782         fi
3783
3784         CFLAGS="$SAVE_CFLAGS"
3785         LIBS="$SAVE_LIBS"
3786 fi
3787
3788 if test "x$with_libperl" = "xyes"
3789 then
3790         SAVE_CFLAGS="$CFLAGS"
3791         SAVE_LIBS="$LIBS"
3792         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3793         # (see issues #41 and #42)
3794         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3795         LIBS="$LIBS $PERL_LIBS"
3796
3797         AC_CACHE_CHECK([for broken Perl_load_module()],
3798                 [c_cv_have_broken_perl_load_module],
3799                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3800 [[[
3801 #define PERL_NO_GET_CONTEXT
3802 #include <EXTERN.h>
3803 #include <perl.h>
3804 #include <XSUB.h>
3805 ]]],
3806 [[[
3807                          dTHX;
3808                          load_module (PERL_LOADMOD_NOIMPORT,
3809                              newSVpv ("Collectd::Plugin::FooBar", 24),
3810                              Nullsv);
3811 ]]]
3812                         )],
3813                         [c_cv_have_broken_perl_load_module="no"],
3814                         [c_cv_have_broken_perl_load_module="yes"]
3815                 )
3816         )
3817
3818         CFLAGS="$SAVE_CFLAGS"
3819         LIBS="$SAVE_LIBS"
3820 fi
3821 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3822                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3823
3824 if test "x$with_libperl" = "xyes"
3825 then
3826         SAVE_CFLAGS="$CFLAGS"
3827         SAVE_LIBS="$LIBS"
3828         CFLAGS="$CFLAGS $PERL_CFLAGS"
3829         LIBS="$LIBS $PERL_LIBS"
3830
3831         AC_CHECK_MEMBER(
3832                 [struct mgvtbl.svt_local],
3833                 [have_struct_mgvtbl_svt_local="yes"],
3834                 [have_struct_mgvtbl_svt_local="no"],
3835                 [
3836 #include <EXTERN.h>
3837 #include <perl.h>
3838 #include <XSUB.h>
3839                 ])
3840
3841         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3842         then
3843                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3844                                   [Define if Perl's struct mgvtbl has member svt_local.])
3845         fi
3846
3847         CFLAGS="$SAVE_CFLAGS"
3848         LIBS="$SAVE_LIBS"
3849 fi
3850 # }}}
3851
3852 # --with-libpq {{{
3853 with_pg_config="pg_config"
3854 with_libpq_includedir=""
3855 with_libpq_libdir=""
3856 with_libpq_cppflags=""
3857 with_libpq_ldflags=""
3858 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3859         [Path to libpq.])],
3860 [
3861         if test "x$withval" = "xno"
3862         then
3863                 with_libpq="no"
3864         else if test "x$withval" = "xyes"
3865         then
3866                 with_libpq="yes"
3867         else
3868                 if test -f "$withval" && test -x "$withval";
3869                 then
3870                         with_pg_config="$withval"
3871                 else if test -x "$withval/bin/pg_config"
3872                 then
3873                         with_pg_config="$withval/bin/pg_config"
3874                 fi; fi
3875                 with_libpq="yes"
3876         fi; fi
3877 ],
3878 [
3879         with_libpq="yes"
3880 ])
3881 if test "x$with_libpq" = "xyes"
3882 then
3883         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3884         pg_config_status=$?
3885
3886         if test $pg_config_status -eq 0
3887         then
3888                 if test -n "$with_libpq_includedir"; then
3889                         for dir in $with_libpq_includedir; do
3890                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3891                         done
3892                 fi
3893         else
3894                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3895         fi
3896
3897         SAVE_CPPFLAGS="$CPPFLAGS"
3898         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3899
3900         AC_CHECK_HEADERS(libpq-fe.h, [],
3901                 [with_libpq="no (libpq-fe.h not found)"], [])
3902
3903         CPPFLAGS="$SAVE_CPPFLAGS"
3904 fi
3905 if test "x$with_libpq" = "xyes"
3906 then
3907         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3908         pg_config_status=$?
3909
3910         if test $pg_config_status -eq 0
3911         then
3912                 if test -n "$with_libpq_libdir"; then
3913                         for dir in $with_libpq_libdir; do
3914                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3915                         done
3916                 fi
3917         else
3918                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3919         fi
3920
3921         SAVE_LDFLAGS="$LDFLAGS"
3922         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3923
3924         AC_CHECK_LIB(pq, PQconnectdb,
3925                 [with_libpq="yes"],
3926                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3927
3928         AC_CHECK_LIB(pq, PQserverVersion,
3929                 [with_libpq="yes"],
3930                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3931
3932         LDFLAGS="$SAVE_LDFLAGS"
3933 fi
3934 if test "x$with_libpq" = "xyes"
3935 then
3936         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3937         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3938         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3939         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3940 fi
3941 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3942 # }}}
3943
3944 # --with-libprotobuf {{{
3945 with_libprotobuf_cppflags=""
3946 with_libprotobuf_ldflags=""
3947 AC_ARG_WITH([libprotobuf], [AS_HELP_STRING([--with-libprotobuf@<:@=PREFIX@:>@], [Path to libprotobuf.])],
3948   [
3949     if test "x$withval" != "xno" && test "x$withval" != "xyes"
3950     then
3951       with_libprotobuf_cppflags="-I$withval/include"
3952       with_libprotobuf_ldflags="-L$withval/lib"
3953       with_libprotobuf="yes"
3954     fi
3955     if test "x$withval" = "xno"
3956     then
3957       with_libprotobuf="no (disabled on command line)"
3958     fi
3959   ],
3960   [withval="yes"]
3961 )
3962 if test "x$withval" = "xyes"
3963 then
3964 PKG_CHECK_MODULES([PROTOBUF], [protobuf],
3965   [with_libprotobuf="yes"],
3966   [with_libprotobuf="no (pkg-config could not find libprotobuf)"]
3967 )
3968 fi
3969
3970 if test "x$withval" != "xno"
3971 then
3972   SAVE_LDFLAGS="$LDFLAGS"
3973   SAVE_LIBS="$LIBS"
3974   LDFLAGS="$with_libprotobuf_ldflags"
3975   LIBS="$PROTOBUF_LIBS $LIBS"
3976   AC_LANG_PUSH([C++])
3977   AC_CHECK_LIB([protobuf], [main],
3978     [
3979       SAVE_CPPFLAGS="$CPPFLAGS"
3980       CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
3981       if test "x$PROTOBUF_LIBS" = "x"
3982       then
3983         PROTOBUF_LIBS="-lprotobuf"
3984       fi
3985       AC_CHECK_HEADERS([google/protobuf/util/time_util.h],
3986         [with_libprotobuf="yes"],
3987         [with_libprotobuf="no (<google/protobuf/util/time_util.h> not found)"]
3988       )
3989       CPPFLAGS="$SAVE_CPPFLAGS"
3990     ],
3991     [with_libprotobuf="no (libprotobuf not found)"]
3992   )
3993   AC_LANG_POP([C++])
3994   LDFLAGS="$SAVE_LDFLAGS"
3995   LIBS="$SAVE_LIBS"
3996 fi
3997 BUILD_WITH_LIBPROTOBUF_CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
3998 BUILD_WITH_LIBPROTOBUF_LDFLAGS="$with_libprotobuf_ldflags"
3999 BUILD_WITH_LIBPROTOBUF_LIBS="$PROTOBUF_LIBS"
4000 AC_SUBST([BUILD_WITH_LIBPROTOBUF_CPPFLAGS])
4001 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LDFLAGS])
4002 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LIBS])
4003 # }}}
4004
4005 # --with-libprotobuf-c {{{
4006 with_libprotobuf_c_cppflags=""
4007 with_libprotobuf_c_ldflags=""
4008 AC_ARG_WITH([libprotobuf-c], [AS_HELP_STRING([--with-libprotobuf-c@<:@=PREFIX@:>@], [Path to libprotobuf-c.])],
4009   [
4010     if test "x$withval" != "xno" && test "x$withval" != "xyes"
4011     then
4012       with_libprotobuf_c_cppflags="-I$withval/include"
4013       with_libprotobuf_c_ldflags="-L$withval/lib"
4014       with_libprotobuf_c="yes"
4015     fi
4016     if test "x$withval" = "xno"
4017     then
4018       with_libprotobuf_c="no (disabled on command line)"
4019     fi
4020   ],
4021   [withval="yes"]
4022 )
4023 if test "x$withval" = "xyes"
4024 then
4025 PKG_CHECK_MODULES([PROTOBUF_C], [libprotobuf-c],
4026   [with_libprotobuf_c="yes"],
4027   [with_libprotobuf_c="no (pkg-config could not find libprotobuf-c)"]
4028 )
4029 fi
4030
4031 if test "x$withval" != "xno"
4032 then
4033   SAVE_LDFLAGS="$LDFLAGS"
4034   SAVE_LIBS="$LIBS"
4035   LDFLAGS="$with_libprotobuf_c_ldflags"
4036   LIBS="$PROTOBUF_C_LIBS $LIBS"
4037   AC_CHECK_LIB([protobuf-c], [protobuf_c_message_pack],
4038     [
4039       SAVE_CPPFLAGS="$CPPFLAGS"
4040       CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4041       if test "x$PROTOBUF_C_LIBS" = "x"
4042       then
4043         PROTOBUF_C_LIBS="-lprotobuf-c"
4044       fi
4045       AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
4046         [
4047           with_libprotobuf_c="yes"
4048           break
4049         ],
4050         [with_libprotobuf_c="no (<protobuf-c.h> not found)"]
4051       )
4052       CPPFLAGS="$SAVE_CPPFLAGS"
4053     ],
4054     [with_libprotobuf_c="no (libprotobuf-c not found)"]
4055   )
4056   LDFLAGS="$SAVE_LDFLAGS"
4057   LIBS="$SAVE_LIBS"
4058 fi
4059 BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4060 BUILD_WITH_LIBPROTOBUF_C_LDFLAGS="$with_libprotobuf_c_ldflags"
4061 BUILD_WITH_LIBPROTOBUF_C_LIBS="$PROTOBUF_C_LIBS"
4062 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS])
4063 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LDFLAGS])
4064 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LIBS])
4065 # }}}
4066
4067 # --with-libpython {{{
4068 AC_ARG_VAR([LIBPYTHON_CPPFLAGS], [Preprocessor flags for libpython])
4069 AC_ARG_VAR([LIBPYTHON_LDFLAGS], [Linker flags for libpython])
4070 AC_ARG_VAR([LIBPYTHON_LIBS], [Libraries for libpython])
4071
4072 AC_ARG_WITH([libpython],
4073   [AS_HELP_STRING([--with-libpython],
4074     [if we should build with libpython @<:@default=yes@:>@])
4075   ],
4076   [with_libpython="$withval"],
4077   [with_libpython="check"]
4078 )
4079 if test "$with_libpython" != "no"; then
4080   if test "$LIBPYTHON_CPPFLAGS" = "" && test "$LIBPYTHON_LDFLAGS" = ""; then
4081     AC_ARG_VAR([PYTHON_CONFIG], [path to python-config])
4082     AC_PATH_PROGS([PYTHON_CONFIG],
4083       [python3-config python2-config python-config]
4084     )
4085     if test "$PYTHON_CONFIG" = ""; then
4086       if test "$with_libpython" = "yes"; then
4087         AC_MSG_ERROR([Unable to find python-config])
4088       fi
4089       with_libpython="no"
4090     fi
4091   fi
4092 fi
4093
4094 if test "$PYTHON_CONFIG" != ""; then
4095   LIBPYTHON_CPPFLAGS="`${PYTHON_CONFIG} --includes`"
4096   if test $? -ne 0; then
4097     with_libpython="no"
4098   fi
4099   LIBPYTHON_LDFLAGS="`${PYTHON_CONFIG} --ldflags`"
4100   if test $? -ne 0; then
4101     with_libpython="no"
4102   fi
4103   LIBPYTHON_LIBS="`${PYTHON_CONFIG} --libs`"
4104   if test $? -ne 0; then
4105     with_libpython="no"
4106   fi
4107 fi
4108
4109 if test "$with_libpython" != "xno"; then
4110   SAVE_CPPFLAGS="$CPPFLAGS"
4111   SAVE_LDFLAGS="$LDFLAGS"
4112   SAVE_LIBS="$LIBS"
4113   CPPFLAGS="$LIBPYTHON_CPPFLAGS $CPPFLAGS"
4114   LDFLAGS="$LIBPYTHON_LDFLAGS $LDFLAGS"
4115   LIBS="$LIBPYTHON_LIBS $LIBS"
4116   AC_CHECK_HEADERS([Python.h],
4117     [
4118       AC_MSG_CHECKING([for libpython])
4119       AC_LINK_IFELSE([AC_LANG_PROGRAM(
4120           [[#include <Python.h>]],
4121           [[Py_Initialize();]])
4122         ],
4123         [with_libpython="yes"],
4124         [with_libpython="no"]
4125       )
4126       AC_MSG_RESULT([$with_libpython])
4127     ],
4128     [with_libpython="no"]
4129   )
4130   CPPFLAGS="$SAVE_CPPFLAGS"
4131   LDFLAGS="$SAVE_LDFLAGS"
4132   LIBS="$SAVE_LIBS"
4133 fi
4134 # }}} --with-libpython
4135
4136 # --with-librabbitmq {{{
4137 with_librabbitmq_cppflags=""
4138 with_librabbitmq_ldflags=""
4139 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
4140 [
4141         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4142         then
4143                 with_librabbitmq_cppflags="-I$withval/include"
4144                 with_librabbitmq_ldflags="-L$withval/lib"
4145                 with_librabbitmq="yes"
4146         else
4147                 with_librabbitmq="$withval"
4148         fi
4149 ],
4150 [
4151         with_librabbitmq="yes"
4152 ])
4153 SAVE_CPPFLAGS="$CPPFLAGS"
4154 SAVE_LDFLAGS="$LDFLAGS"
4155 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4156 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4157 if test "x$with_librabbitmq" = "xyes"
4158 then
4159         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
4160 fi
4161 if test "x$with_librabbitmq" = "xyes"
4162 then
4163         # librabbitmq up to version 0.9.1 provides "library_errno", later
4164         # versions use "library_error". The library does not provide a version
4165         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
4166         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
4167                          [
4168 #if HAVE_STDLIB_H
4169 # include <stdlib.h>
4170 #endif
4171 #if HAVE_STDIO_H
4172 # include <stdio.h>
4173 #endif
4174 #if HAVE_STDINT_H
4175 # include <stdint.h>
4176 #endif
4177 #if HAVE_INTTYPES_H
4178 # include <inttypes.h>
4179 #endif
4180 #include <amqp.h>
4181                          ])
4182 fi
4183 if test "x$with_librabbitmq" = "xyes"
4184 then
4185         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
4186 fi
4187 if test "x$with_librabbitmq" = "xyes"
4188 then
4189         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
4190         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
4191         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
4192         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
4193         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
4194         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
4195         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
4196 fi
4197 CPPFLAGS="$SAVE_CPPFLAGS"
4198 LDFLAGS="$SAVE_LDFLAGS"
4199 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
4200
4201 with_amqp_tcp_socket="no"
4202 if test "x$with_librabbitmq" = "xyes"
4203 then
4204         SAVE_CPPFLAGS="$CPPFLAGS"
4205         SAVE_LDFLAGS="$LDFLAGS"
4206         SAVE_LIBS="$LIBS"
4207         CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4208         LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4209         LIBS="-lrabbitmq"
4210
4211         AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
4212         AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
4213         if test "x$with_amqp_tcp_socket" = "xyes"
4214         then
4215                 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
4216                                 [Define if librabbitmq provides the new TCP socket interface.])
4217         fi
4218
4219         AC_CHECK_DECLS(amqp_socket_close,
4220                                 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
4221                                 [[
4222 #include <amqp.h>
4223 #ifdef HAVE_AMQP_TCP_SOCKET_H
4224 # include <amqp_tcp_socket.h>
4225 #endif
4226 #ifdef HAVE_AMQP_SOCKET_H
4227 # include <amqp_socket.h>
4228 #endif
4229                                 ]])
4230
4231         CPPFLAGS="$SAVE_CPPFLAGS"
4232         LDFLAGS="$SAVE_LDFLAGS"
4233         LIBS="$SAVE_LIBS"
4234 fi
4235 # }}}
4236
4237 # --with-librdkafka {{{
4238 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
4239 [
4240   if test "x$withval" != "xno" && test "x$withval" != "xyes"
4241   then
4242     with_librdkafka_cppflags="-I$withval/include"
4243     with_librdkafka_ldflags="-L$withval/lib"
4244     with_librdkafka_rpath="$withval/lib"
4245     with_librdkafka="yes"
4246   else
4247     with_librdkafka="$withval"
4248   fi
4249 ],
4250 [
4251   with_librdkafka="yes"
4252 ])
4253 SAVE_CPPFLAGS="$CPPFLAGS"
4254 SAVE_LDFLAGS="$LDFLAGS"
4255
4256 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
4257 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
4258
4259 if test "x$with_librdkafka" = "xyes"
4260 then
4261         AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
4262 fi
4263
4264 if test "x$with_librdkafka" = "xyes"
4265 then
4266         AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
4267   AC_CHECK_LIB(rdkafka, rd_kafka_conf_set_log_cb, [with_librdkafka_log_cb="yes"], [with_librdkafka_log_cb="no"])
4268   AC_CHECK_LIB(rdkafka, rd_kafka_set_logger, [with_librdkafka_logger="yes"], [with_librdkafka_logger="no"])
4269 fi
4270 if test "x$with_librdkafka" = "xyes"
4271 then
4272         BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
4273         BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
4274         if test "x$with_librdkafka_rpath" != "x"
4275         then
4276                 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
4277         else
4278                 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
4279         fi
4280         AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
4281         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
4282         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
4283         AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
4284   if test "x$with_librdkafka_log_cb" = "xyes"
4285   then
4286         AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
4287   fi
4288   if test "x$with_librdkafka_logger" = "xyes"
4289   then
4290         AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
4291   fi
4292 fi
4293 CPPFLAGS="$SAVE_CPPFLAGS"
4294 LDFLAGS="$SAVE_LDFLAGS"
4295 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
4296
4297 # }}}
4298
4299 # --with-librouteros {{{
4300 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
4301 [
4302  if test "x$withval" = "xyes"
4303  then
4304          with_librouteros="yes"
4305  else if test "x$withval" = "xno"
4306  then
4307          with_librouteros="no"
4308  else
4309          with_librouteros="yes"
4310          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
4311          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
4312  fi; fi
4313 ],
4314 [with_librouteros="yes"])
4315
4316 SAVE_CPPFLAGS="$CPPFLAGS"
4317 SAVE_LDFLAGS="$LDFLAGS"
4318
4319 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
4320 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
4321
4322 if test "x$with_librouteros" = "xyes"
4323 then
4324         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
4325         then
4326                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
4327         fi
4328         AC_CHECK_HEADERS(routeros_api.h,
4329         [with_librouteros="yes"],
4330         [with_librouteros="no (routeros_api.h not found)"])
4331 fi
4332 if test "x$with_librouteros" = "xyes"
4333 then
4334         if test "x$LIBROUTEROS_LDFLAGS" != "x"
4335         then
4336                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
4337         fi
4338         AC_CHECK_LIB(routeros, ros_interface,
4339         [with_librouteros="yes"],
4340         [with_librouteros="no (symbol 'ros_interface' not found)"])
4341 fi
4342
4343 CPPFLAGS="$SAVE_CPPFLAGS"
4344 LDFLAGS="$SAVE_LDFLAGS"
4345
4346 if test "x$with_librouteros" = "xyes"
4347 then
4348         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
4349         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
4350         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
4351         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
4352 fi
4353 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
4354 # }}}
4355
4356 # --with-librrd {{{
4357 librrd_cflags=""
4358 librrd_ldflags=""
4359 librrd_threadsafe="no"
4360 librrd_rrdc_update="no"
4361 AC_ARG_WITH(librrd,
4362   [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4363   [
4364     if test "x$withval" != "xno" && test "x$withval" != "xyes"
4365     then
4366       librrd_cflags="-I$withval/include"
4367       librrd_ldflags="-L$withval/lib"
4368       with_librrd="yes"
4369     else
4370       with_librrd="$withval"
4371     fi
4372   ],
4373   [with_librrd="yes"]
4374 )
4375
4376 if test "x$with_librrd" = "xyes"
4377 then
4378   SAVE_LDFLAGS="$LDFLAGS"
4379   LDFLAGS="$LDFLAGS $librrd_ldflags"
4380   PKG_CHECK_MODULES([RRD], [librrd >= 1.6.0],
4381     [
4382       AC_CHECK_LIB([rrd], [rrd_update_r],
4383         [librrd_threadsafe="yes"],
4384         [:]
4385       )
4386       AC_CHECK_LIB([rrd], [rrdc_update],
4387         [librrd_rrdc_update="yes"],
4388         [:]
4389       )
4390     ],[:]
4391   )
4392   LDFLAGS="$SAVE_LDFLAGS"
4393
4394   SAVE_CPPFLAGS="$CPPFLAGS"
4395   CPPFLAGS="$CPPFLAGS $RRD_CFLAGS $librrd_cflags"
4396
4397   AC_CHECK_HEADERS([rrd.h],, [with_librrd="no (rrd.h not found)"])
4398
4399   CPPFLAGS="$SAVE_CPPFLAGS"
4400 fi
4401
4402 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4403 then
4404   SAVE_LDFLAGS="$LDFLAGS"
4405   LDFLAGS="$LDFLAGS $librrd_ldflags"
4406
4407   AC_CHECK_LIB([rrd_th], [rrd_update_r],
4408     [
4409       librrd_ldflags="$librrd_ldflags -lrrd_th"
4410       librrd_threadsafe="yes"
4411       AC_CHECK_LIB([rrd_th], [rrdc_update],
4412         [librrd_rrdc_update="yes"],
4413         [:],
4414       )
4415     ],
4416     [:]
4417   )
4418   LDFLAGS="$SAVE_LDFLAGS"
4419 fi
4420
4421 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4422 then
4423   SAVE_LDFLAGS="$LDFLAGS"
4424   LDFLAGS="$LDFLAGS $librrd_ldflags"
4425
4426   AC_CHECK_LIB([rrd], [rrd_update],
4427     [
4428       librrd_ldflags="$librrd_ldflags -lrrd"
4429       AC_CHECK_LIB([rrd], [rrdc_update],
4430         [librrd_rrdc_update="yes"],
4431         [:]
4432       )
4433     ],
4434     [with_librrd="no (symbol 'rrd_update' not found)"]
4435   )
4436   LDFLAGS="$SAVE_LDFLAGS"
4437 fi
4438
4439 if test "x$with_librrd" = "xyes"
4440 then
4441   BUILD_WITH_LIBRRD_CFLAGS="$RRD_CFLAGS $librrd_cflags"
4442   BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4443   BUILD_WITH_LIBRRD_LIBS="$RRD_LIBS"
4444   AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
4445   AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
4446   AC_SUBST(BUILD_WITH_LIBRRD_LIBS)
4447 fi
4448 if test "x$librrd_threadsafe" = "xyes"
4449 then
4450   AC_DEFINE([HAVE_THREADSAFE_LIBRRD], [1],
4451     [Define to 1 if the rrd library is thread-safe]
4452   )
4453 fi
4454 # }}}
4455
4456 # --with-libsensors {{{
4457 with_sensors_cflags=""
4458 with_sensors_ldflags=""
4459 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4460 [
4461         if test "x$withval" = "xno"
4462         then
4463                 with_libsensors="no"
4464         else
4465                 with_libsensors="yes"
4466                 if test "x$withval" != "xyes"
4467                 then
4468                         with_sensors_cflags="-I$withval/include"
4469                         with_sensors_ldflags="-L$withval/lib"
4470                         with_libsensors="yes"
4471                 fi
4472         fi
4473 ],
4474 [
4475         if test "x$ac_system" = "xLinux"
4476         then
4477                 with_libsensors="yes"
4478         else
4479                 with_libsensors="no (Linux only library)"
4480         fi
4481 ])
4482 if test "x$with_libsensors" = "xyes"
4483 then
4484         SAVE_CPPFLAGS="$CPPFLAGS"
4485         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4486
4487         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
4488
4489         CPPFLAGS="$SAVE_CPPFLAGS"
4490 fi
4491 if test "x$with_libsensors" = "xyes"
4492 then
4493         SAVE_CPPFLAGS="$CPPFLAGS"
4494         SAVE_LDFLAGS="$LDFLAGS"
4495         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4496         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4497
4498         AC_CHECK_LIB(sensors, sensors_init,
4499         [
4500                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
4501         ],
4502         [with_libsensors="no (libsensors not found)"])
4503
4504         CPPFLAGS="$SAVE_CPPFLAGS"
4505         LDFLAGS="$SAVE_LDFLAGS"
4506 fi
4507 if test "x$with_libsensors" = "xyes"
4508 then
4509         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
4510         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4511         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
4512         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
4513 fi
4514 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
4515 # }}}
4516
4517 # libsigrok {{{
4518 AC_SUBST([LIBSIGROK_CFLAGS])
4519 AC_SUBST([LIBSIGROK_LIBS])
4520 PKG_CHECK_MODULES([LIBSIGROK], [libsigrok < 0.4],
4521   [with_libsigrok="yes"],
4522   [with_libsigrok="no (pkg-config could not find libsigrok)"]
4523 )
4524 # }}}
4525
4526 # --with-libstatgrab {{{
4527 with_libstatgrab_cflags=""
4528 with_libstatgrab_ldflags=""
4529 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4530 [
4531  if test "x$withval" != "xno" \
4532    && test "x$withval" != "xyes"
4533  then
4534    with_libstatgrab_cflags="-I$withval/include"
4535    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4536    with_libstatgrab="yes"
4537    with_libstatgrab_pkg_config="no"
4538  else
4539    with_libstatgrab="$withval"
4540    with_libstatgrab_pkg_config="yes"
4541  fi
4542  ],
4543 [
4544  with_libstatgrab="yes"
4545  with_libstatgrab_pkg_config="yes"
4546 ])
4547
4548 if test "x$with_libstatgrab" = "xyes" \
4549   && test "x$with_libstatgrab_pkg_config" = "xyes"
4550 then
4551   AC_MSG_CHECKING([pkg-config for libstatgrab])
4552   temp_result="found"
4553   $PKG_CONFIG --exists libstatgrab 2>/dev/null
4554   if test "$?" != "0"
4555   then
4556     with_libstatgrab_pkg_config="no"
4557     with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4558     temp_result="not found"
4559   fi
4560   AC_MSG_RESULT([$temp_result])
4561 fi
4562
4563 if test "x$with_libstatgrab" = "xyes" \
4564   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4565   && test "x$with_libstatgrab_cflags" = "x"
4566 then
4567   AC_MSG_CHECKING([for libstatgrab CFLAGS])
4568   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4569   if test "$?" = "0"
4570   then
4571     with_libstatgrab_cflags="$temp_result"
4572   else
4573     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4574     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4575   fi
4576   AC_MSG_RESULT([$temp_result])
4577 fi
4578
4579 if test "x$with_libstatgrab" = "xyes" \
4580   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4581   && test "x$with_libstatgrab_ldflags" = "x"
4582 then
4583   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4584   temp_result="`$PKG_CONFIG --libs libstatgrab`"
4585   if test "$?" = "0"
4586   then
4587     with_libstatgrab_ldflags="$temp_result"
4588   else
4589     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4590     temp_result="$PKG_CONFIG --libs libstatgrab failed"
4591   fi
4592   AC_MSG_RESULT([$temp_result])
4593 fi
4594
4595 if test "x$with_libstatgrab" = "xyes"
4596 then
4597   SAVE_CPPFLAGS="$CPPFLAGS"
4598   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4599
4600   AC_CHECK_HEADERS(statgrab.h,
4601                    [with_libstatgrab="yes"],
4602                    [with_libstatgrab="no (statgrab.h not found)"])
4603
4604   CPPFLAGS="$SAVE_CPPFLAGS"
4605 fi
4606
4607 if test "x$with_libstatgrab" = "xyes"
4608 then
4609   SAVE_CFLAGS="$CFLAGS"
4610   SAVE_LDFLAGS="$LDFLAGS"
4611
4612   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4613   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4614
4615   AC_CHECK_LIB(statgrab, sg_init,
4616                [with_libstatgrab="yes"],
4617                [with_libstatgrab="no (symbol sg_init not found)"])
4618
4619   CFLAGS="$SAVE_CFLAGS"
4620   LDFLAGS="$SAVE_LDFLAGS"
4621 fi
4622
4623 if test "x$with_libstatgrab" = "xyes"
4624 then
4625   SAVE_CFLAGS="$CFLAGS"
4626   SAVE_LDFLAGS="$LDFLAGS"
4627   SAVE_LIBS="$LIBS"
4628
4629   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4630   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4631   LIBS="-lstatgrab $LIBS"
4632
4633   AC_CACHE_CHECK([if libstatgrab >= 0.90],
4634           [c_cv_have_libstatgrab_0_90],
4635           AC_LINK_IFELSE([AC_LANG_PROGRAM(
4636 [[[
4637 #include <stdio.h>
4638 #include <statgrab.h>
4639 ]]],
4640 [[[
4641       if (sg_init()) return 0;
4642 ]]]
4643     )],
4644     [c_cv_have_libstatgrab_0_90="no"],
4645     [c_cv_have_libstatgrab_0_90="yes"]
4646           )
4647   )
4648
4649   CFLAGS="$SAVE_CFLAGS"
4650   LDFLAGS="$SAVE_LDFLAGS"
4651   LIBS="$SAVE_LIBS"
4652 fi
4653
4654 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
4655 if test "x$with_libstatgrab" = "xyes"
4656 then
4657   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
4658   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4659   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
4660   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
4661   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
4662   if test "x$c_cv_have_libstatgrab_0_90" = "xyes"
4663   then
4664         AC_DEFINE(HAVE_LIBSTATGRAB_0_90, 1, [Define to 1 if libstatgrab version >= 0.90])
4665   fi
4666 fi
4667 # }}}
4668
4669 # --with-libtokyotyrant {{{
4670 with_libtokyotyrant_cppflags=""
4671 with_libtokyotyrant_ldflags=""
4672 with_libtokyotyrant_libs=""
4673 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4674 [
4675   if test "x$withval" = "xno"
4676   then
4677     with_libtokyotyrant="no"
4678   else if test "x$withval" = "xyes"
4679   then
4680     with_libtokyotyrant="yes"
4681   else
4682     with_libtokyotyrant_cppflags="-I$withval/include"
4683     with_libtokyotyrant_ldflags="-L$withval/include"
4684     with_libtokyotyrant_libs="-ltokyotyrant"
4685     with_libtokyotyrant="yes"
4686   fi; fi
4687 ],
4688 [
4689   with_libtokyotyrant="yes"
4690 ])
4691
4692 if test "x$with_libtokyotyrant" = "xyes"
4693 then
4694   if $PKG_CONFIG --exists tokyotyrant
4695   then
4696     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
4697     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
4698     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
4699   fi
4700 fi
4701
4702 SAVE_CPPFLAGS="$CPPFLAGS"
4703 SAVE_LDFLAGS="$LDFLAGS"
4704 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
4705 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
4706
4707 if test "x$with_libtokyotyrant" = "xyes"
4708 then
4709   AC_CHECK_HEADERS(tcrdb.h,
4710   [
4711           AC_DEFINE(HAVE_TCRDB_H, 1,
4712                     [Define to 1 if you have the <tcrdb.h> header file.])
4713   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
4714 fi
4715
4716 if test "x$with_libtokyotyrant" = "xyes"
4717 then
4718   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4719   [
4720           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4721                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4722   ],
4723   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4724   [$with_libtokyotyrant_libs])
4725 fi
4726
4727 CPPFLAGS="$SAVE_CPPFLAGS"
4728 LDFLAGS="$SAVE_LDFLAGS"
4729
4730 if test "x$with_libtokyotyrant" = "xyes"
4731 then
4732   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4733   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4734   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4735   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4736   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4737   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4738 fi
4739 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4740 # }}}
4741
4742 # --with-libudev {{{
4743 with_libudev_cflags=""
4744 with_libudev_ldflags=""
4745 AC_ARG_WITH(libudev, [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
4746 [
4747         if test "x$withval" = "xno"
4748         then
4749                 with_libudev="no"
4750         else
4751                 with_libudev="yes"
4752                 if test "x$withval" != "xyes"
4753                 then
4754                         with_libudev_cflags="-I$withval/include"
4755                         with_libudev_ldflags="-L$withval/lib"
4756                         with_libudev="yes"
4757                 fi
4758         fi
4759 ],
4760 [
4761         if test "x$ac_system" = "xLinux"
4762         then
4763                 with_libudev="yes"
4764         else
4765                 with_libudev="no (Linux only library)"
4766         fi
4767 ])
4768 if test "x$with_libudev" = "xyes"
4769 then
4770         SAVE_CPPFLAGS="$CPPFLAGS"
4771         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4772
4773         AC_CHECK_HEADERS(libudev.h, [], [with_libudev="no (libudev.h not found)"])
4774
4775         CPPFLAGS="$SAVE_CPPFLAGS"
4776 fi
4777 if test "x$with_libudev" = "xyes"
4778 then
4779         SAVE_CPPFLAGS="$CPPFLAGS"
4780         SAVE_LDFLAGS="$LDFLAGS"
4781         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4782         LDFLAGS="$LDFLAGS $with_libudev_ldflags"
4783
4784         AC_CHECK_LIB(udev, udev_new,
4785         [
4786                 AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if you have the udev library (-ludev).])
4787         ],
4788         [with_libudev="no (libudev not found)"])
4789
4790         CPPFLAGS="$SAVE_CPPFLAGS"
4791         LDFLAGS="$SAVE_LDFLAGS"
4792 fi
4793 if test "x$with_libudev" = "xyes"
4794 then
4795         BUILD_WITH_LIBUDEV_CFLAGS="$with_libudev_cflags"
4796         BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
4797         BUILD_WITH_LIBUDEV_LIBS="-ludev"
4798         AC_SUBST(BUILD_WITH_LIBUDEV_CFLAGS)
4799         AC_SUBST(BUILD_WITH_LIBUDEV_LDFLAGS)
4800         AC_SUBST(BUILD_WITH_LIBUDEV_LIBS)
4801 fi
4802 AM_CONDITIONAL(BUILD_WITH_LIBUDEV, test "x$with_libudev" = "xyes")
4803 # }}}
4804
4805 # --with-libupsclient {{{
4806 with_libupsclient_config=""
4807 with_libupsclient_cflags=""
4808 with_libupsclient_libs=""
4809 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4810 [
4811         if test "x$withval" = "xno"
4812         then
4813                 with_libupsclient="no"
4814         else if test "x$withval" = "xyes"
4815         then
4816                 with_libupsclient="use_pkgconfig"
4817         else
4818                 if test -x "$withval"
4819                 then
4820                         with_libupsclient_config="$withval"
4821                         with_libupsclient="use_libupsclient_config"
4822                 else if test -x "$withval/bin/libupsclient-config"
4823                 then
4824                         with_libupsclient_config="$withval/bin/libupsclient-config"
4825                         with_libupsclient="use_libupsclient_config"
4826                 else
4827                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4828                         with_libupsclient_cflags="-I$withval/include"
4829                         with_libupsclient_libs="-L$withval/lib -lupsclient"
4830                         with_libupsclient="yes"
4831                 fi; fi
4832         fi; fi
4833 ],
4834 [with_libupsclient="use_pkgconfig"])
4835
4836 # configure using libupsclient-config
4837 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4838 then
4839         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4840         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4841         if test $? -ne 0
4842         then
4843                 with_libupsclient="no ($with_libupsclient_config failed)"
4844         fi
4845         with_libupsclient_libs="`$with_libupsclient_config --libs`"
4846         if test $? -ne 0
4847         then
4848                 with_libupsclient="no ($with_libupsclient_config failed)"
4849         fi
4850 fi
4851 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4852 then
4853         with_libupsclient="yes"
4854 fi
4855
4856 # configure using pkg-config
4857 if test "x$with_libupsclient" = "xuse_pkgconfig"
4858 then
4859         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4860         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4861         if test $? -ne 0
4862         then
4863                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4864         fi
4865 fi
4866 if test "x$with_libupsclient" = "xuse_pkgconfig"
4867 then
4868         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4869         if test $? -ne 0
4870         then
4871                 with_libupsclient="no ($PKG_CONFIG failed)"
4872         fi
4873         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4874         if test $? -ne 0
4875         then
4876                 with_libupsclient="no ($PKG_CONFIG failed)"
4877         fi
4878 fi
4879 if test "x$with_libupsclient" = "xuse_pkgconfig"
4880 then
4881         with_libupsclient="yes"
4882 fi
4883
4884 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4885 # the actual checks.
4886 if test "x$with_libupsclient" = "xyes"
4887 then
4888         SAVE_CPPFLAGS="$CPPFLAGS"
4889         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4890
4891         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4892
4893         CPPFLAGS="$SAVE_CPPFLAGS"
4894 fi
4895 if test "x$with_libupsclient" = "xyes"
4896 then
4897         SAVE_CPPFLAGS="$CPPFLAGS"
4898         SAVE_LDFLAGS="$LDFLAGS"
4899
4900         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4901         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4902
4903         AC_CHECK_LIB(upsclient, upscli_connect,
4904                      [with_libupsclient="yes"],
4905                      [with_libupsclient="no (symbol upscli_connect not found)"])
4906
4907         CPPFLAGS="$SAVE_CPPFLAGS"
4908         LDFLAGS="$SAVE_LDFLAGS"
4909 fi
4910 if test "x$with_libupsclient" = "xyes"
4911 then
4912         SAVE_CPPFLAGS="$CPPFLAGS"
4913         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4914
4915         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4916 [#include <stdlib.h>
4917 #include <stdio.h>
4918 #include <upsclient.h>])
4919
4920         CPPFLAGS="$SAVE_CPPFLAGS"
4921 fi
4922 if test "x$with_libupsclient" = "xyes"
4923 then
4924         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4925         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4926         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4927         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4928 fi
4929 # }}}
4930
4931 # --with-libxenctrl {{{
4932 with_libxenctrl_cppflags=""
4933 with_libxenctrl_ldflags=""
4934 AC_ARG_WITH(libxenctrl, [AS_HELP_STRING([--with-libxenctrl@<:@=PREFIX@:>@], [Path to libxenctrl.])],
4935 [
4936         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4937         then
4938                 with_libxenctrl_cppflags="-I$withval/include"
4939                 with_libxenctrl_ldflags="-L$withval/lib"
4940                 with_libxenctrl="yes"
4941         else
4942                 with_libxenctrl="$withval"
4943         fi
4944 ],
4945 [
4946         with_libxenctrl="yes"
4947 ])
4948 if test "x$with_libxenctrl" = "xyes"
4949 then
4950         SAVE_CPPFLAGS="$CPPFLAGS"
4951         CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
4952
4953         AC_CHECK_HEADERS(xenctrl.h, [with_libxenctrl="yes"], [with_libxenctrl="no (xenctrl.h not found)"])
4954
4955         CPPFLAGS="$SAVE_CPPFLAGS"
4956 fi
4957 if test "x$with_libxenctrl" = "xyes"
4958 then
4959         SAVE_CPPFLAGS="$CPPFLAGS"
4960         SAVE_LDFLAGS="$LDFLAGS"
4961         CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
4962         LDFLAGS="$LDFLAGS $with_libxenctrl_ldflags"
4963
4964         #Xen versions older than 3.4 has no xc_getcpuinfo()
4965         AC_CHECK_LIB(xenctrl, xc_getcpuinfo, [with_libxenctrl="yes"], [with_libxenctrl="no (symbol 'xc_getcpuinfo' not found)"], [])
4966
4967         CPPFLAGS="$SAVE_CPPFLAGS"
4968         LDFLAGS="$SAVE_LDFLAGS"
4969         LIBXENCTL_CPPFLAGS="$with_libxenctl_cppflags"
4970         LIBXENCTL_LDFLAGS="$with_libxenctl_ldflags"
4971         AC_SUBST(LIBXENCTL_CPPFLAGS)
4972         AC_SUBST(LIBXENCTL_LDFLAGS)
4973 fi
4974 # }}}
4975
4976 # --with-libxmms {{{
4977 with_xmms_config="xmms-config"
4978 with_xmms_cflags=""
4979 with_xmms_libs=""
4980 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4981 [
4982         if test "x$withval" != "xno" \
4983                 && test "x$withval" != "xyes"
4984         then
4985                 if test -f "$withval" && test -x "$withval";
4986                 then
4987                         with_xmms_config="$withval"
4988                 else if test -x "$withval/bin/xmms-config"
4989                 then
4990                         with_xmms_config="$withval/bin/xmms-config"
4991                 fi; fi
4992                 with_libxmms="yes"
4993         else if test "x$withval" = "xno"
4994         then
4995                 with_libxmms="no"
4996         else
4997                 with_libxmms="yes"
4998         fi; fi
4999 ],
5000 [
5001         with_libxmms="yes"
5002 ])
5003 if test "x$with_libxmms" = "xyes"
5004 then
5005         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
5006         xmms_config_status=$?
5007
5008         if test $xmms_config_status -ne 0
5009         then
5010                 with_libxmms="no"
5011         fi
5012 fi
5013 if test "x$with_libxmms" = "xyes"
5014 then
5015         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
5016         xmms_config_status=$?
5017
5018         if test $xmms_config_status -ne 0
5019         then
5020                 with_libxmms="no"
5021         fi
5022 fi
5023 if test "x$with_libxmms" = "xyes"
5024 then
5025         AC_CHECK_LIB(xmms, xmms_remote_get_info,
5026         [
5027                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
5028                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
5029                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
5030                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
5031         ],
5032         [
5033                 with_libxmms="no"
5034         ],
5035         [$with_xmms_libs])
5036 fi
5037 with_libxmms_numeric=0
5038 if test "x$with_libxmms" = "xyes"
5039 then
5040         with_libxmms_numeric=1
5041 fi
5042 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
5043 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
5044 # }}}
5045
5046 # --with-libyajl {{{
5047 with_libyajl_cppflags=""
5048 with_libyajl_ldflags=""
5049 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
5050 [
5051         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5052         then
5053                 with_libyajl_cppflags="-I$withval/include"
5054                 with_libyajl_ldflags="-L$withval/lib"
5055                 with_libyajl="yes"
5056         else
5057                 with_libyajl="$withval"
5058         fi
5059 ],
5060 [
5061         with_libyajl="yes"
5062 ])
5063 if test "x$with_libyajl" = "xyes"
5064 then
5065         SAVE_CPPFLAGS="$CPPFLAGS"
5066         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5067
5068         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
5069         AC_CHECK_HEADERS(yajl/yajl_version.h)
5070
5071         CPPFLAGS="$SAVE_CPPFLAGS"
5072 fi
5073 if test "x$with_libyajl" = "xyes"
5074 then
5075         SAVE_CPPFLAGS="$CPPFLAGS"
5076         SAVE_LDFLAGS="$LDFLAGS"
5077         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5078         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
5079
5080         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
5081
5082         CPPFLAGS="$SAVE_CPPFLAGS"
5083         LDFLAGS="$SAVE_LDFLAGS"
5084 fi
5085 if test "x$with_libyajl" = "xyes"
5086 then
5087         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
5088         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
5089         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
5090         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
5091         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
5092         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
5093         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
5094 fi
5095 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
5096 # }}}
5097
5098 # --with-mic {{{
5099 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
5100 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
5101 with_mic_libs=""
5102 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
5103 [
5104         if test "x$withval" = "xno"
5105         then
5106                 with_mic="no"
5107         else if test "x$withval" = "xyes"
5108         then
5109                 with_mic="yes"
5110         else if test -d "$with_mic/lib"
5111         then
5112                 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
5113                 with_mic_cflags="-I$withval/include"
5114                 with_mic_ldpath="-L$withval/lib/Linux"
5115                 with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"
5116                 with_mic="yes"
5117         fi; fi; fi
5118 ],
5119 [with_mic="yes"])
5120 if test "x$with_mic" = "xyes"
5121 then
5122         SAVE_CPPFLAGS="$CPPFLAGS"
5123         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5124         AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
5125         CPPFLAGS="$SAVE_CPPFLAGS"
5126 fi
5127 if test "x$with_mic" = "xyes"
5128 then
5129         SAVE_CPPFLAGS="$CPPFLAGS"
5130         SAVE_LDFLAGS="$LDFLAGS"
5131
5132         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5133         LDFLAGS="$LDFLAGS $with_mic_ldpath"
5134
5135         AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
5136                         [with_mic_ldpath="$with_mic_ldpath"
5137                         with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"],
5138                         [with_mic="no (symbol MicInitAPI not found)"],[$PTHREAD_LIBS -lscif])
5139
5140         CPPFLAGS="$SAVE_CPPFLAGS"
5141         LDFLAGS="$SAVE_LDFLAGS"
5142 fi
5143
5144 if test "x$with_mic" = "xyes"
5145 then
5146         BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
5147         BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
5148         BUILD_WITH_MIC_LDADD="$with_mic_libs"
5149         AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
5150         AC_SUBST(BUILD_WITH_MIC_LIBPATH)
5151         AC_SUBST(BUILD_WITH_MIC_LDADD)
5152 fi
5153 #}}}
5154
5155 # --with-libvarnish {{{
5156 with_libvarnish_cppflags=""
5157 with_libvarnish_cflags=""
5158 with_libvarnish_libs=""
5159 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
5160 [
5161         if test "x$withval" = "xno"
5162         then
5163                 with_libvarnish="no"
5164         else if test "x$withval" = "xyes"
5165         then
5166                 with_libvarnish="use_pkgconfig"
5167         else if test -d "$with_libvarnish/lib"
5168         then
5169                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
5170                 with_libvarnish_cflags="-I$withval/include"
5171                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
5172                 with_libvarnish="yes"
5173         fi; fi; fi
5174 ],
5175 [with_libvarnish="use_pkgconfig"])
5176
5177 # configure using pkg-config
5178 if test "x$with_libvarnish" = "xuse_pkgconfig"
5179 then
5180         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
5181         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
5182         if test $? -ne 0
5183         then
5184                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
5185         fi
5186 fi
5187 if test "x$with_libvarnish" = "xuse_pkgconfig"
5188 then
5189         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
5190         if test $? -ne 0
5191         then
5192                 with_libvarnish="no ($PKG_CONFIG failed)"
5193         fi
5194         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
5195         if test $? -ne 0
5196         then
5197                 with_libvarnish="no ($PKG_CONFIG failed)"
5198         fi
5199 fi
5200 if test "x$with_libvarnish" = "xuse_pkgconfig"
5201 then
5202         with_libvarnish="yes"
5203 fi
5204
5205 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
5206 # the actual checks.
5207 if test "x$with_libvarnish" = "xyes"
5208 then
5209         SAVE_CPPFLAGS="$CPPFLAGS"
5210
5211         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
5212
5213         AC_CHECK_HEADERS(vapi/vsc.h,
5214                 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
5215                 [AC_CHECK_HEADERS(vsc.h,
5216                         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
5217                         [AC_CHECK_HEADERS(varnishapi.h,
5218                                 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
5219                                 [with_libvarnish="no (found none of the varnish header files)"])])])
5220
5221         CPPFLAGS="$SAVE_CPPFLAGS"
5222 fi
5223 if test "x$with_libvarnish" = "xyes"
5224 then
5225         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
5226         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
5227         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
5228         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
5229 fi
5230 # }}}
5231
5232 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
5233 with_libxml2="no (pkg-config isn't available)"
5234 with_libxml2_cflags=""
5235 with_libxml2_ldflags=""
5236 with_libvirt="no (pkg-config isn't available)"
5237 with_libvirt_cflags=""
5238 with_libvirt_ldflags=""
5239 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
5240 if test "$?" = "0"
5241 then
5242         with_libxml2="yes"
5243 else
5244         with_libxml2="no (pkg-config doesn't know libxml-2.0)"
5245 fi
5246
5247 $PKG_CONFIG --exists libvirt 2>/dev/null
5248 if test "$?" = "0"
5249 then
5250         with_libvirt="yes"
5251 else
5252         with_libvirt="no (pkg-config doesn't know libvirt)"
5253 fi
5254 if test "x$with_libxml2" = "xyes"
5255 then
5256         with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
5257         if test $? -ne 0
5258         then
5259                 with_libxml2="no"
5260         fi
5261         with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
5262         if test $? -ne 0
5263         then
5264                 with_libxml2="no"
5265         fi
5266 fi
5267 if test "x$with_libxml2" = "xyes"
5268 then
5269         SAVE_CPPFLAGS="$CPPFLAGS"
5270         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
5271
5272         AC_CHECK_HEADERS(libxml/parser.h, [],
5273                       [with_libxml2="no (libxml/parser.h not found)"])
5274
5275         CPPFLAGS="$SAVE_CPPFLAGS"
5276 fi
5277 if test "x$with_libxml2" = "xyes"
5278 then
5279         SAVE_CFLAGS="$CFLAGS"
5280         SAVE_LDFLAGS="$LDFLAGS"
5281
5282         CFLAGS="$CFLAGS $with_libxml2_cflags"
5283         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
5284
5285         AC_CHECK_LIB(xml2, xmlXPathEval,
5286                      [with_libxml2="yes"],
5287                      [with_libxml2="no (symbol xmlXPathEval not found)"])
5288
5289         CFLAGS="$SAVE_CFLAGS"
5290         LDFLAGS="$SAVE_LDFLAGS"
5291 fi
5292 dnl Add the right compiler flags and libraries.
5293 if test "x$with_libxml2" = "xyes"; then
5294         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
5295         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
5296         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
5297         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
5298 fi
5299 if test "x$with_libvirt" = "xyes"
5300 then
5301         with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
5302         if test $? -ne 0
5303         then
5304                 with_libvirt="no"
5305         fi
5306         with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
5307         if test $? -ne 0
5308         then
5309                 with_libvirt="no"
5310         fi
5311 fi
5312 if test "x$with_libvirt" = "xyes"
5313 then
5314         SAVE_CPPFLAGS="$CPPFLAGS"
5315         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
5316
5317         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
5318                       [with_libvirt="no (libvirt/libvirt.h not found)"])
5319
5320         CPPFLAGS="$SAVE_CPPFLAGS"
5321 fi
5322 if test "x$with_libvirt" = "xyes"
5323 then
5324         SAVE_CFLAGS="$CFLAGS"
5325         SAVE_LDFLAGS="$LDFLAGS"
5326
5327         CFLAGS="$CFLAGS $with_libvirt_cflags"
5328         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
5329
5330         AC_CHECK_LIB(virt, virDomainBlockStats,
5331                      [with_libvirt="yes"],
5332                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
5333
5334         CFLAGS="$SAVE_CFLAGS"
5335         LDFLAGS="$SAVE_LDFLAGS"
5336 fi
5337 dnl Add the right compiler flags and libraries.
5338 if test "x$with_libvirt" = "xyes"; then
5339         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
5340         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
5341         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
5342         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
5343 fi
5344 # }}}
5345
5346 # $PKG_CONFIG --exists OpenIPMIpthread {{{
5347 with_libopenipmipthread="yes"
5348 with_libopenipmipthread_cflags=""
5349 with_libopenipmipthread_libs=""
5350
5351 if test "x$with_libopenipmipthread" = "xyes"
5352 then
5353         AC_MSG_CHECKING([for libOpenIPMIpthread])
5354         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
5355         if test "$?" != "0"
5356         then
5357                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
5358         fi
5359         AC_MSG_RESULT([$with_libopenipmipthread])
5360 fi
5361
5362 if test "x$with_libopenipmipthread" = "xyes"
5363 then
5364         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
5365         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
5366         if test "$?" = "0"
5367         then
5368                 with_libopenipmipthread_cflags="$temp_result"
5369         else
5370                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
5371                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
5372         fi
5373         AC_MSG_RESULT([$temp_result])
5374 fi
5375
5376 if test "x$with_libopenipmipthread" = "xyes"
5377 then
5378         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
5379         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
5380         if test "$?" = "0"
5381         then
5382                 with_libopenipmipthread_ldflags="$temp_result"
5383         else
5384                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
5385                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
5386         fi
5387         AC_MSG_RESULT([$temp_result])
5388 fi
5389
5390 if test "x$with_libopenipmipthread" = "xyes"
5391 then
5392         SAVE_CPPFLAGS="$CPPFLAGS"
5393         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
5394
5395         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
5396                          [with_libopenipmipthread="yes"],
5397                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
5398 [#include <OpenIPMI/ipmiif.h>
5399 #include <OpenIPMI/ipmi_err.h>
5400 #include <OpenIPMI/ipmi_posix.h>
5401 #include <OpenIPMI/ipmi_conn.h>
5402 ])
5403
5404         CPPFLAGS="$SAVE_CPPFLAGS"
5405 fi
5406
5407 if test "x$with_libopenipmipthread" = "xyes"
5408 then
5409         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
5410         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
5411         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
5412         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
5413 fi
5414 # }}}
5415
5416 # --with-libatasmart {{{
5417 with_libatasmart_cppflags=""
5418 with_libatasmart_ldflags=""
5419 AC_ARG_WITH(libatasmart, [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
5420 [
5421         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5422         then
5423                 with_libatasmart_cppflags="-I$withval/include"
5424                 with_libatasmart_ldflags="-L$withval/lib"
5425                 with_libatasmart="yes"
5426         else
5427                 with_libatasmart="$withval"
5428         fi
5429 ],
5430 [
5431         if test "x$ac_system" = "xLinux"
5432         then
5433                 with_libatasmart="yes"
5434         else
5435                 with_libatasmart="no (Linux only library)"
5436         fi
5437 ])
5438 if test "x$with_libatasmart" = "xyes"
5439 then
5440         SAVE_CPPFLAGS="$CPPFLAGS"
5441         CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5442
5443         AC_CHECK_HEADERS(atasmart.h, [with_libatasmart="yes"], [with_libatasmart="no (atasmart.h not found)"])
5444
5445         CPPFLAGS="$SAVE_CPPFLAGS"
5446 fi
5447 if test "x$with_libatasmart" = "xyes"
5448 then
5449         SAVE_CPPFLAGS="$CPPFLAGS"
5450         SAVE_LDFLAGS="$LDFLAGS"
5451         CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5452         LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
5453
5454         AC_CHECK_LIB(atasmart, sk_disk_open, [with_libatasmart="yes"], [with_libatasmart="no (Symbol 'sk_disk_open' not found)"])
5455
5456         CPPFLAGS="$SAVE_CPPFLAGS"
5457         LDFLAGS="$SAVE_LDFLAGS"
5458 fi
5459 if test "x$with_libatasmart" = "xyes"
5460 then
5461         BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
5462         BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
5463         BUILD_WITH_LIBATASMART_LIBS="-latasmart"
5464         AC_SUBST(BUILD_WITH_LIBATASMART_CPPFLAGS)
5465         AC_SUBST(BUILD_WITH_LIBATASMART_LDFLAGS)
5466         AC_SUBST(BUILD_WITH_LIBATASMART_LIBS)
5467         AC_DEFINE(HAVE_LIBATASMART, 1, [Define if libatasmart is present and usable.])
5468 fi
5469 AM_CONDITIONAL(BUILD_WITH_LIBATASMART, test "x$with_libatasmart" = "xyes")
5470 # }}}
5471
5472 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
5473                 [with_libnotify="yes"],
5474                 [with_libnotify="no (pkg-config doesn't know libnotify)"]
5475 )
5476
5477 PKG_CHECK_MODULES([LIBRIEMANN_CLIENT], [riemann-client >= 1.8.0],
5478  [with_libriemann_client="yes"],
5479  [with_libriemann_client="no (pkg-config doesn't know libriemann-client)"])
5480
5481 # Check for enabled/disabled features
5482 #
5483
5484 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
5485 # ------------------------------------------------------------
5486 dnl
5487 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
5488 dnl
5489 AC_DEFUN(
5490         [AC_COLLECTD],
5491         [
5492         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
5493         m4_if(
5494                 [$2],
5495                 [enable],
5496                 [dnl
5497                 m4_define([EnDis],[disabled])dnl
5498                 m4_define([YesNo],[no])dnl
5499                 ],dnl
5500                 [m4_if(
5501                         [$2],
5502                         [disable],
5503                         [dnl
5504                         m4_define([EnDis],[enabled])dnl
5505                         m4_define([YesNo],[yes])dnl
5506                         ],
5507                         [dnl
5508                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
5509                         ]dnl
5510                 )]dnl
5511         )dnl
5512         m4_if([$3], [feature], [],
5513                 [m4_if(
5514                         [$3], [module], [],
5515                         [dnl
5516                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
5517                         ]dnl
5518                 )]dnl
5519         )dnl
5520         AC_ARG_ENABLE(
5521                 [$1],
5522                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
5523                 [],
5524                 enable_$1='[YesNo]'dnl
5525         )# AC_ARG_ENABLE
5526 if test "x$enable_$1" = "xno"
5527 then
5528         collectd_$1=0
5529 else
5530         if test "x$enable_$1" = "xyes"
5531         then
5532                 collectd_$1=1
5533         else
5534                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
5535                 collectd_$1=1
5536                 enable_$1='yes'
5537         fi
5538 fi
5539         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
5540         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
5541         ]dnl
5542 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
5543
5544 # AC_PLUGIN(name, default, info)
5545 # ------------------------------------------------------------
5546 dnl
5547 AC_DEFUN(
5548   [AC_PLUGIN],
5549   [
5550     enable_plugin="no"
5551     force="no"
5552     AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
5553     [
5554      if test "x$enableval" = "xyes"
5555      then
5556              enable_plugin="yes"
5557      else if test "x$enableval" = "xforce"
5558      then
5559              enable_plugin="yes"
5560              force="yes"
5561      else
5562              enable_plugin="no (disabled on command line)"
5563      fi; fi
5564     ],
5565     [
5566          if test "x$enable_all_plugins" = "xauto"
5567          then
5568              if test "x$2" = "xyes"
5569              then
5570                      enable_plugin="yes"
5571              else
5572                      enable_plugin="$2"
5573              fi
5574          else
5575              enable_plugin="$enable_all_plugins"
5576          fi
5577     ])
5578     if test "x$enable_plugin" = "xyes"
5579     then
5580             if test "x$2" = "xyes" || test "x$force" = "xyes"
5581             then
5582                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
5583                     if test "x$2" != "xyes"
5584                     then
5585                             dependency_warning="yes"
5586                     fi
5587             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
5588                     dependency_error="yes"
5589                     enable_plugin="$2 (dependency error)"
5590             fi
5591     fi
5592     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
5593     enable_$1="$enable_plugin"
5594   ]
5595 )# AC_PLUGIN(name, default, info)
5596
5597 m4_divert_once([HELP_ENABLE], [
5598 collectd features:])
5599 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
5600 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
5601 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
5602 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
5603 AC_COLLECTD([werror],    [disable], [feature], [building with -Werror])
5604
5605 dependency_warning="no"
5606 dependency_error="no"
5607
5608 plugin_ascent="no"
5609 plugin_barometer="no"
5610 plugin_battery="no"
5611 plugin_bind="no"
5612 plugin_ceph="no"
5613 plugin_cgroups="no"
5614 plugin_conntrack="no"
5615 plugin_contextswitch="no"
5616 plugin_cpu="no"
5617 plugin_cpufreq="no"
5618 plugin_cpusleep="no"
5619 plugin_curl_json="no"
5620 plugin_curl_xml="no"
5621 plugin_df="no"
5622 plugin_disk="no"
5623 plugin_drbd="no"
5624 plugin_entropy="no"
5625 plugin_ethstat="no"
5626 plugin_fhcount="no"
5627 plugin_fscache="no"
5628 plugin_gps="no"
5629 plugin_grpc="no"
5630 plugin_interface="no"
5631 plugin_ipmi="no"
5632 plugin_ipvs="no"
5633 plugin_irq="no"
5634 plugin_load="no"
5635 plugin_log_logstash="no"
5636 plugin_memory="no"
5637 plugin_multimeter="no"
5638 plugin_nfs="no"
5639 plugin_numa="no"
5640 plugin_perl="no"
5641 plugin_pinba="no"
5642 plugin_processes="no"
5643 plugin_protocols="no"
5644 plugin_python="no"
5645 plugin_serial="no"
5646 plugin_smart="no"
5647 plugin_swap="no"
5648 plugin_tape="no"
5649 plugin_tcpconns="no"
5650 plugin_ted="no"
5651 plugin_thermal="no"
5652 plugin_turbostat="no"
5653 plugin_uptime="no"
5654 plugin_users="no"
5655 plugin_virt="no"
5656 plugin_vmem="no"
5657 plugin_vserver="no"
5658 plugin_wireless="no"
5659 plugin_xencpu="no"
5660 plugin_zfs_arc="no"
5661 plugin_zone="no"
5662 plugin_zookeeper="no"
5663
5664 # Linux
5665 if test "x$ac_system" = "xLinux"
5666 then
5667         plugin_battery="yes"
5668         plugin_cgroups="yes"
5669         plugin_conntrack="yes"
5670         plugin_contextswitch="yes"
5671         plugin_cpu="yes"
5672         plugin_cpufreq="yes"
5673         plugin_disk="yes"
5674         plugin_drbd="yes"
5675         plugin_entropy="yes"
5676         plugin_fhcount="yes"
5677         plugin_fscache="yes"
5678         plugin_interface="yes"
5679         plugin_ipc="yes"
5680         plugin_irq="yes"
5681         plugin_load="yes"
5682         plugin_lvm="yes"
5683         plugin_memory="yes"
5684         plugin_nfs="yes"
5685         plugin_numa="yes"
5686         plugin_processes="yes"
5687         plugin_protocols="yes"
5688         plugin_serial="yes"
5689         plugin_swap="yes"
5690         plugin_tcpconns="yes"
5691         plugin_thermal="yes"
5692         plugin_uptime="yes"
5693         plugin_vmem="yes"
5694         plugin_vserver="yes"
5695         plugin_wireless="yes"
5696         plugin_zfs_arc="yes"
5697
5698         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
5699         then
5700                 plugin_ipvs="yes"
5701         fi
5702         if test "x$c_cv_have_usable_asm_msrindex_h" = "xyes" && test "x$have_cpuid_h" = "xyes"
5703         then
5704                 plugin_turbostat="yes"
5705         fi
5706         
5707         if test "x$c_cv_have_clock_boottime_monotonic" = "xyes"
5708         then
5709                 plugin_cpusleep="yes"
5710         fi
5711 fi
5712
5713 if test "x$ac_system" = "xOpenBSD"
5714 then
5715         plugin_tcpconns="yes"
5716 fi
5717
5718 if test "x$ac_system" = "xNetBSD"
5719 then
5720         plugin_disk="yes"
5721         plugin_entropy="yes"
5722         plugin_irq="yes"
5723         plugin_processes="yes"
5724 fi
5725
5726 # Mac OS X devices
5727 if test "x$with_libiokit" = "xyes"
5728 then
5729         plugin_battery="yes"
5730         plugin_disk="yes"
5731 fi
5732
5733 # AIX
5734
5735 if test "x$ac_system" = "xAIX"
5736 then
5737         plugin_ipc="yes"
5738         plugin_tcpconns="yes"
5739 fi
5740
5741 # FreeBSD
5742
5743 if test "x$ac_system" = "xFreeBSD"
5744 then
5745         plugin_disk="yes"
5746         plugin_zfs_arc="yes"
5747 fi
5748
5749
5750 if test "x$with_perfstat" = "xyes"
5751 then
5752         plugin_contextswitch="yes"
5753         plugin_cpu="yes"
5754         plugin_disk="yes"
5755         plugin_interface="yes"
5756         plugin_load="yes"
5757         plugin_memory="yes"
5758         plugin_swap="yes"
5759         plugin_uptime="yes"
5760 fi
5761
5762 if test "x$with_procinfo" = "xyes"
5763 then
5764         plugin_processes="yes"
5765 fi
5766
5767 # Solaris
5768 if test "x$with_kstat" = "xyes"
5769 then
5770         plugin_nfs="yes"
5771         plugin_processes="yes"
5772         plugin_uptime="yes"
5773         plugin_zfs_arc="yes"
5774         plugin_zone="yes"
5775 fi
5776
5777 if test "x$with_devinfo$with_kstat" = "xyesyes"
5778 then
5779         plugin_cpu="yes"
5780         plugin_disk="yes"
5781         plugin_interface="yes"
5782         plugin_memory="yes"
5783         plugin_tape="yes"
5784 fi
5785
5786 # libi2c-dev
5787 if test "x$ac_system" = "xLinux"
5788 then
5789 AC_CHECK_DECL(i2c_smbus_read_i2c_block_data,
5790         [with_libi2c="yes"],
5791         [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
5792         [[#include <stdlib.h>
5793         #include <linux/i2c-dev.h>]])
5794 else
5795         with_libi2c="no (Linux only)"
5796 fi
5797
5798 if test "x$with_libi2c" = "xyes"
5799 then
5800         plugin_barometer="yes"
5801 fi
5802
5803
5804 # libstatgrab
5805 if test "x$with_libstatgrab" = "xyes"
5806 then
5807         plugin_cpu="yes"
5808         plugin_disk="yes"
5809         plugin_interface="yes"
5810         plugin_load="yes"
5811         plugin_memory="yes"
5812         plugin_swap="yes"
5813         plugin_users="yes"
5814 fi
5815
5816 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5817 then
5818         plugin_ascent="yes"
5819         if test "x$have_strptime" = "xyes"
5820         then
5821                 plugin_bind="yes"
5822         fi
5823 fi
5824
5825 if test "x$with_libopenipmipthread" = "xyes"
5826 then
5827         plugin_ipmi="yes"
5828 fi
5829
5830 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
5831 then
5832         plugin_curl_json="yes"
5833 fi
5834
5835 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5836 then
5837         plugin_curl_xml="yes"
5838 fi
5839
5840 if test "x$with_libyajl" = "xyes"
5841 then
5842         plugin_ceph="yes"
5843 fi
5844
5845 if test "x$have_processor_info" = "xyes"
5846 then
5847         plugin_cpu="yes"
5848 fi
5849 if test "x$have_sysctl" = "xyes"
5850 then
5851         plugin_cpu="yes"
5852         plugin_memory="yes"
5853         plugin_uptime="yes"
5854         if test "x$ac_system" = "xDarwin"
5855         then
5856                 plugin_swap="yes"
5857         fi
5858 fi
5859 if test "x$have_sysctlbyname" = "xyes"
5860 then
5861         plugin_contextswitch="yes"
5862         plugin_cpu="yes"
5863         plugin_memory="yes"
5864         plugin_tcpconns="yes"
5865 fi
5866
5867 # Df plugin: Check if we know how to determine mount points first.
5868 #if test "x$have_listmntent" = "xyes"; then
5869 #       plugin_df="yes"
5870 #fi
5871 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
5872 then
5873         plugin_df="yes"
5874 fi
5875 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
5876 then
5877         plugin_df="yes"
5878 fi
5879 #if test "x$have_getmntent" = "xseq"
5880 #then
5881 #       plugin_df="yes"
5882 #fi
5883 if test "x$c_cv_have_one_getmntent" = "xyes"
5884 then
5885         plugin_df="yes"
5886 fi
5887
5888 if test "x$c_cv_have_getmntent_r" = "xyes"
5889 then
5890         plugin_df="yes"
5891 fi
5892
5893 # Df plugin: Check if we have either `statfs' or `statvfs' second.
5894 if test "x$plugin_df" = "xyes"
5895 then
5896         plugin_df="no"
5897         if test "x$have_statfs" = "xyes"
5898         then
5899                 plugin_df="yes"
5900         fi
5901         if test "x$have_statvfs" = "xyes"
5902         then
5903                 plugin_df="yes"
5904         fi
5905 fi
5906
5907 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
5908 then
5909         plugin_ethstat="yes"
5910 fi
5911
5912 if test "x$with_libgrpcpp" = "xyes" && test "x$with_libprotobuf" = "xyes" && test "x$have_protoc3" = "xyes" && test "x$GRPC_CPP_PLUGIN" != "x"
5913 then
5914         plugin_grpc="yes"
5915 fi
5916
5917 if test "x$have_getifaddrs" = "xyes"
5918 then
5919         plugin_interface="yes"
5920 fi
5921
5922 if test "x$with_libgps" = "xyes"
5923 then
5924         plugin_gps="yes"
5925 fi
5926
5927 if test "x$have_getloadavg" = "xyes"
5928 then
5929         plugin_load="yes"
5930 fi
5931
5932 if test "x$with_libyajl" = "xyes"
5933 then
5934         plugin_log_logstash="yes"
5935 fi
5936
5937 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
5938 then
5939         plugin_perl="yes"
5940 fi
5941
5942 if test "x$have_protoc_c" = "xyes" && test "x$with_libprotobuf_c" = "xyes"
5943 then
5944         plugin_pinba="yes"
5945 fi
5946
5947 # Mac OS X memory interface
5948 if test "x$have_host_statistics" = "xyes"
5949 then
5950         plugin_memory="yes"
5951 fi
5952
5953 if test "x$have_termios_h" = "xyes"
5954 then
5955         if test "x$ac_system" != "xAIX"
5956         then
5957                 plugin_multimeter="yes"
5958         fi
5959         plugin_ted="yes"
5960 fi
5961
5962 if test "x$have_thread_info" = "xyes"
5963 then
5964         plugin_processes="yes"
5965 fi
5966
5967 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
5968 then
5969         plugin_processes="yes"
5970 fi
5971
5972 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"
5973 then
5974         plugin_processes="yes"
5975 fi
5976
5977 if test "x$with_libpython" != "xno"
5978 then
5979         plugin_python="yes"
5980 fi
5981
5982 if test "x$with_libatasmart" = "xyes" && test "x$with_libudev" = "xyes"
5983 then
5984         plugin_smart="yes"
5985 fi
5986
5987 if test "x$with_kvm_getswapinfo" = "xyes"
5988 then
5989         plugin_swap="yes"
5990 fi
5991
5992 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
5993 then
5994         plugin_swap="yes"
5995 fi
5996
5997 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_three_args" = "xyes"
5998 then
5999         plugin_swap="yes"
6000 fi
6001
6002 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
6003 then
6004         plugin_tcpconns="yes"
6005 fi
6006
6007 if test "x$have_getutent" = "xyes"
6008 then
6009         plugin_users="yes"
6010 fi
6011 if test "x$have_getutxent" = "xyes"
6012 then
6013         plugin_users="yes"
6014 fi
6015
6016 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
6017 then
6018         plugin_virt="yes"
6019 fi
6020
6021 if test "x$with_libxenctrl" = "xyes"
6022 then
6023   plugin_xencpu="yes"
6024 fi
6025
6026 m4_divert_once([HELP_ENABLE], [
6027 collectd plugins:])
6028
6029 AC_ARG_ENABLE([all-plugins],
6030                 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
6031                 [
6032                  if test "x$enableval" = "xyes"
6033                  then
6034                          enable_all_plugins="yes"
6035                  else if test "x$enableval" = "xauto"
6036                  then
6037                          enable_all_plugins="auto"
6038                  else
6039                          enable_all_plugins="no"
6040                  fi; fi
6041                 ],
6042                 [enable_all_plugins="auto"])
6043
6044 m4_divert_once([HELP_ENABLE], [])
6045
6046 AC_PLUGIN([aggregation],         [yes],                     [Aggregation plugin])
6047 AC_PLUGIN([amqp],                [$with_librabbitmq],       [AMQP output plugin])
6048 AC_PLUGIN([apache],              [$with_libcurl],           [Apache httpd statistics])
6049 AC_PLUGIN([apcups],              [yes],                     [Statistics of UPSes by APC])
6050 AC_PLUGIN([apple_sensors],       [$with_libiokit],          [Apple hardware sensors])
6051 AC_PLUGIN([aquaero],             [$with_libaquaero5],       [Aquaero hardware sensors])
6052 AC_PLUGIN([ascent],              [$plugin_ascent],          [AscentEmu player statistics])
6053 AC_PLUGIN([barometer],           [$plugin_barometer],       [Barometer sensor on I2C])
6054 AC_PLUGIN([battery],             [$plugin_battery],         [Battery statistics])
6055 AC_PLUGIN([bind],                [$plugin_bind],            [ISC Bind nameserver statistics])
6056 AC_PLUGIN([ceph],                [$plugin_ceph],            [Ceph daemon statistics])
6057 AC_PLUGIN([cgroups],             [$plugin_cgroups],         [CGroups CPU usage accounting])
6058 AC_PLUGIN([chrony],              [yes],                     [Chrony statistics])
6059 AC_PLUGIN([conntrack],           [$plugin_conntrack],       [nf_conntrack statistics])
6060 AC_PLUGIN([contextswitch],       [$plugin_contextswitch],   [context switch statistics])
6061 AC_PLUGIN([cpu],                 [$plugin_cpu],             [CPU usage statistics])
6062 AC_PLUGIN([cpufreq],             [$plugin_cpufreq],         [CPU frequency statistics])
6063 AC_PLUGIN([cpusleep],            [$plugin_cpusleep],        [CPU sleep statistics])
6064 AC_PLUGIN([csv],                 [yes],                     [CSV output plugin])
6065 AC_PLUGIN([curl],                [$with_libcurl],           [CURL generic web statistics])
6066 AC_PLUGIN([curl_json],           [$plugin_curl_json],       [CouchDB statistics])
6067 AC_PLUGIN([curl_xml],            [$plugin_curl_xml],        [CURL generic xml statistics])
6068 AC_PLUGIN([dbi],                 [$with_libdbi],            [General database statistics])
6069 AC_PLUGIN([df],                  [$plugin_df],              [Filesystem usage statistics])
6070 AC_PLUGIN([disk],                [$plugin_disk],            [Disk usage statistics])
6071 AC_PLUGIN([dns],                 [$with_libpcap],           [DNS traffic analysis])
6072 AC_PLUGIN([drbd],                [$plugin_drbd],            [DRBD statistics])
6073 AC_PLUGIN([email],               [yes],                     [EMail statistics])
6074 AC_PLUGIN([entropy],             [$plugin_entropy],         [Entropy statistics])
6075 AC_PLUGIN([ethstat],             [$plugin_ethstat],         [Stats from NIC driver])
6076 AC_PLUGIN([exec],                [yes],                     [Execution of external programs])
6077 AC_PLUGIN([fhcount],             [$plugin_fhcount],         [File handles statistics])
6078 AC_PLUGIN([filecount],           [yes],                     [Count files in directories])
6079 AC_PLUGIN([fscache],             [$plugin_fscache],         [fscache statistics])
6080 AC_PLUGIN([gmond],               [$with_libganglia],        [Ganglia plugin])
6081 AC_PLUGIN([gps],                 [$plugin_gps],             [GPS plugin])
6082 AC_PLUGIN([grpc],                [$plugin_grpc],            [gRPC plugin])
6083 AC_PLUGIN([hddtemp],             [yes],                     [Query hddtempd])
6084 AC_PLUGIN([interface],           [$plugin_interface],       [Interface traffic statistics])
6085 AC_PLUGIN([ipc],                 [$plugin_ipc],             [IPC statistics])
6086 AC_PLUGIN([ipmi],                [$plugin_ipmi],            [IPMI sensor statistics])
6087 AC_PLUGIN([iptables],            [$with_libiptc],           [IPTables rule counters])
6088 AC_PLUGIN([ipvs],                [$plugin_ipvs],            [IPVS connection statistics])
6089 AC_PLUGIN([irq],                 [$plugin_irq],             [IRQ statistics])
6090 AC_PLUGIN([java],                [$with_java],              [Embed the Java Virtual Machine])
6091 AC_PLUGIN([load],                [$plugin_load],            [System load])
6092 AC_PLUGIN([log_logstash],        [$plugin_log_logstash],    [Logstash json_event compatible logging])
6093 AC_PLUGIN([logfile],             [yes],                     [File logging plugin])
6094 AC_PLUGIN([lpar],                [$with_perfstat],          [AIX logical partitions statistics])
6095 AC_PLUGIN([lvm],                 [$with_liblvm2app],        [LVM statistics])
6096 AC_PLUGIN([madwifi],             [$have_linux_wireless_h],  [Madwifi wireless statistics])
6097 AC_PLUGIN([match_empty_counter], [yes],                     [The empty counter match])
6098 AC_PLUGIN([match_hashed],        [yes],                     [The hashed match])
6099 AC_PLUGIN([match_regex],         [yes],                     [The regex match])
6100 AC_PLUGIN([match_timediff],      [yes],                     [The timediff match])
6101 AC_PLUGIN([match_value],         [yes],                     [The value match])
6102 AC_PLUGIN([mbmon],               [yes],                     [Query mbmond])
6103 AC_PLUGIN([md],                  [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
6104 AC_PLUGIN([memcachec],           [$with_libmemcached],      [memcachec statistics])
6105 AC_PLUGIN([memcached],           [yes],                     [memcached statistics])
6106 AC_PLUGIN([memory],              [$plugin_memory],          [Memory usage])
6107 AC_PLUGIN([mic],                 [$with_mic],               [Intel Many Integrated Core stats])
6108 AC_PLUGIN([modbus],              [$with_libmodbus],         [Modbus plugin])
6109 AC_PLUGIN([mqtt],                [$with_libmosquitto],      [MQTT output plugin])
6110 AC_PLUGIN([multimeter],          [$plugin_multimeter],      [Read multimeter values])
6111 AC_PLUGIN([mysql],               [$with_libmysql],          [MySQL statistics])
6112 AC_PLUGIN([netapp],              [$with_libnetapp],         [NetApp plugin])
6113 AC_PLUGIN([netlink],             [$with_libmnl],            [Enhanced Linux network statistics])
6114 AC_PLUGIN([network],             [yes],                     [Network communication plugin])
6115 AC_PLUGIN([nfs],                 [$plugin_nfs],             [NFS statistics])
6116 AC_PLUGIN([nginx],               [$with_libcurl],           [nginx statistics])
6117 AC_PLUGIN([notify_desktop],      [$with_libnotify],         [Desktop notifications])
6118 AC_PLUGIN([notify_email],        [$with_libesmtp],          [Email notifier])
6119 AC_PLUGIN([notify_nagios],       [yes],                     [Nagios notification plugin])
6120 AC_PLUGIN([ntpd],                [yes],                     [NTPd statistics])
6121 AC_PLUGIN([numa],                [$plugin_numa],            [NUMA virtual memory statistics])
6122 AC_PLUGIN([nut],                 [$with_libupsclient],      [Network UPS tools statistics])
6123 AC_PLUGIN([olsrd],               [yes],                     [olsrd statistics])
6124 AC_PLUGIN([onewire],             [$with_libowcapi],         [OneWire sensor statistics])
6125 AC_PLUGIN([openldap],            [$with_libldap],           [OpenLDAP statistics])
6126 AC_PLUGIN([openvpn],             [yes],                     [OpenVPN client statistics])
6127 AC_PLUGIN([oracle],              [$with_oracle],            [Oracle plugin])
6128 AC_PLUGIN([perl],                [$plugin_perl],            [Embed a Perl interpreter])
6129 AC_PLUGIN([pf],                  [$have_net_pfvar_h],       [BSD packet filter (PF) statistics])
6130 # FIXME: Check for libevent, too.
6131 AC_PLUGIN([pinba],               [$plugin_pinba],           [Pinba statistics])
6132 AC_PLUGIN([ping],                [$with_liboping],          [Network latency statistics])
6133 AC_PLUGIN([postgresql],          [$with_libpq],             [PostgreSQL database statistics])
6134 AC_PLUGIN([powerdns],            [yes],                     [PowerDNS statistics])
6135 AC_PLUGIN([processes],           [$plugin_processes],       [Process statistics])
6136 AC_PLUGIN([protocols],           [$plugin_protocols],       [Protocol (IP, TCP, ...) statistics])
6137 AC_PLUGIN([python],              [$plugin_python],          [Embed a Python interpreter])
6138 AC_PLUGIN([redis],               [$with_libhiredis],        [Redis plugin])
6139 AC_PLUGIN([routeros],            [$with_librouteros],       [RouterOS plugin])
6140 AC_PLUGIN([rrdcached],           [$librrd_rrdc_update],     [RRDTool output plugin])
6141 AC_PLUGIN([rrdtool],             [$with_librrd],            [RRDTool output plugin])
6142 AC_PLUGIN([sensors],             [$with_libsensors],        [lm_sensors statistics])
6143 AC_PLUGIN([serial],              [$plugin_serial],          [serial port traffic])
6144 AC_PLUGIN([sigrok],              [$with_libsigrok],         [sigrok acquisition sources])
6145 AC_PLUGIN([smart],               [$plugin_smart],           [SMART statistics])
6146 AC_PLUGIN([snmp],                [$with_libnetsnmp],        [SNMP querying plugin])
6147 AC_PLUGIN([statsd],              [yes],                     [StatsD plugin])
6148 AC_PLUGIN([swap],                [$plugin_swap],            [Swap usage statistics])
6149 AC_PLUGIN([syslog],              [$have_syslog],            [Syslog logging plugin])
6150 AC_PLUGIN([table],               [yes],                     [Parsing of tabular data])
6151 AC_PLUGIN([tail],                [yes],                     [Parsing of logfiles])
6152 AC_PLUGIN([tail_csv],            [yes],                     [Parsing of CSV files])
6153 AC_PLUGIN([tape],                [$plugin_tape],            [Tape drive statistics])
6154 AC_PLUGIN([target_notification], [yes],                     [The notification target])
6155 AC_PLUGIN([target_replace],      [yes],                     [The replace target])
6156 AC_PLUGIN([target_scale],        [yes],                     [The scale target])
6157 AC_PLUGIN([target_set],          [yes],                     [The set target])
6158 AC_PLUGIN([target_v5upgrade],    [yes],                     [The v5upgrade target])
6159 AC_PLUGIN([tcpconns],            [$plugin_tcpconns],        [TCP connection statistics])
6160 AC_PLUGIN([teamspeak2],          [yes],                     [TeamSpeak2 server statistics])
6161 AC_PLUGIN([ted],                 [$plugin_ted],             [Read The Energy Detective values])
6162 AC_PLUGIN([thermal],             [$plugin_thermal],         [Linux ACPI thermal zone statistics])
6163 AC_PLUGIN([threshold],           [yes],                     [Threshold checking plugin])
6164 AC_PLUGIN([tokyotyrant],         [$with_libtokyotyrant],    [TokyoTyrant database statistics])
6165 AC_PLUGIN([turbostat],           [$plugin_turbostat],       [Advanced statistic on Intel cpu states])
6166 AC_PLUGIN([unixsock],            [yes],                     [Unixsock communication plugin])
6167 AC_PLUGIN([uptime],              [$plugin_uptime],          [Uptime statistics])
6168 AC_PLUGIN([users],               [$plugin_users],           [User statistics])
6169 AC_PLUGIN([uuid],                [yes],                     [UUID as hostname plugin])
6170 AC_PLUGIN([varnish],             [$with_libvarnish],        [Varnish cache statistics])
6171 AC_PLUGIN([virt],                [$plugin_virt],            [Virtual machine statistics])
6172 AC_PLUGIN([vmem],                [$plugin_vmem],            [Virtual memory statistics])
6173 AC_PLUGIN([vserver],             [$plugin_vserver],         [Linux VServer statistics])
6174 AC_PLUGIN([wireless],            [$plugin_wireless],        [Wireless statistics])
6175 AC_PLUGIN([write_graphite],      [yes],                     [Graphite / Carbon output plugin])
6176 AC_PLUGIN([write_http],          [$with_libcurl],           [HTTP output plugin])
6177 AC_PLUGIN([write_kafka],         [$with_librdkafka],        [Kafka output plugin])
6178 AC_PLUGIN([write_log],           [yes],                     [Log output plugin])
6179 AC_PLUGIN([write_mongodb],       [$with_libmongoc],         [MongoDB output plugin])
6180 AC_PLUGIN([write_redis],         [$with_libhiredis],        [Redis output plugin])
6181 AC_PLUGIN([write_riemann],       [$with_libriemann_client], [Riemann output plugin])
6182 AC_PLUGIN([write_sensu],         [yes],                     [Sensu output plugin])
6183 AC_PLUGIN([write_tsdb],          [yes],                     [TSDB output plugin])
6184 AC_PLUGIN([xencpu],              [$plugin_xencpu],          [Xen Host CPU usage])
6185 AC_PLUGIN([xmms],                [$with_libxmms],           [XMMS statistics])
6186 AC_PLUGIN([zfs_arc],             [$plugin_zfs_arc],         [ZFS ARC statistics])
6187 AC_PLUGIN([zone],                [$plugin_zone],            [Solaris container statistics])
6188 AC_PLUGIN([zookeeper],           [yes],                     [Zookeeper statistics])
6189
6190 dnl Default configuration file
6191 # Load either syslog or logfile
6192 LOAD_PLUGIN_SYSLOG=""
6193 LOAD_PLUGIN_LOGFILE=""
6194 LOAD_PLUGIN_LOG_LOGSTASH=""
6195
6196 AC_MSG_CHECKING([which default log plugin to load])
6197 default_log_plugin="none"
6198 if test "x$enable_syslog" = "xyes"
6199 then
6200         default_log_plugin="syslog"
6201 else
6202         LOAD_PLUGIN_SYSLOG="##"
6203 fi
6204
6205 if test "x$enable_logfile" = "xyes"
6206 then
6207         if test "x$default_log_plugin" = "xnone"
6208         then
6209                 default_log_plugin="logfile"
6210         else
6211                 LOAD_PLUGIN_LOGFILE="#"
6212         fi
6213 else
6214         LOAD_PLUGIN_LOGFILE="##"
6215 fi
6216
6217 if test "x$enable_log_logstash" = "xyes"
6218 then
6219   LOAD_PLUGIN_LOG_LOGSTASH="#"
6220 else
6221   LOAD_PLUGIN_LOG_LOGSTASH="##"
6222 fi
6223
6224
6225 AC_MSG_RESULT([$default_log_plugin])
6226
6227 AC_SUBST(LOAD_PLUGIN_SYSLOG)
6228 AC_SUBST(LOAD_PLUGIN_LOGFILE)
6229 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
6230
6231 DEFAULT_LOG_LEVEL="info"
6232 if test "x$enable_debug" = "xyes"
6233 then
6234         DEFAULT_LOG_LEVEL="debug"
6235 fi
6236 AC_SUBST(DEFAULT_LOG_LEVEL)
6237
6238 # Load only one of rrdtool, network, csv in the default config.
6239 LOAD_PLUGIN_RRDTOOL=""
6240 LOAD_PLUGIN_NETWORK=""
6241 LOAD_PLUGIN_CSV=""
6242
6243 AC_MSG_CHECKING([which default write plugin to load])
6244 default_write_plugin="none"
6245 if test "x$enable_rrdtool" = "xyes"
6246 then
6247         default_write_plugin="rrdtool"
6248 else
6249         LOAD_PLUGIN_RRDTOOL="##"
6250 fi
6251
6252 if test "x$enable_network" = "xyes"
6253 then
6254         if test "x$default_write_plugin" = "xnone"
6255         then
6256                 default_write_plugin="network"
6257         else
6258                 LOAD_PLUGIN_NETWORK="#"
6259         fi
6260 else
6261         LOAD_PLUGIN_NETWORK="##"
6262 fi
6263
6264 if test "x$enable_csv" = "xyes"
6265 then
6266         if test "x$default_write_plugin" = "xnone"
6267         then
6268                 default_write_plugin="csv"
6269         else
6270                 LOAD_PLUGIN_CSV="#"
6271         fi
6272 else
6273         LOAD_PLUGIN_CSV="##"
6274 fi
6275 AC_MSG_RESULT([$default_write_plugin])
6276
6277 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
6278 AC_SUBST(LOAD_PLUGIN_NETWORK)
6279 AC_SUBST(LOAD_PLUGIN_CSV)
6280
6281 dnl ip_vs.h
6282 if test "x$ac_system" = "xLinux" \
6283         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
6284 then
6285         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
6286 fi
6287
6288 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
6289 then
6290         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
6291 fi
6292
6293 dnl Perl bindings
6294 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
6295 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
6296 [
6297         if test "x$withval" != "xno" && test "x$withval" != "xyes"
6298         then
6299                 PERL_BINDINGS_OPTIONS="$withval"
6300                 with_perl_bindings="yes"
6301         else
6302                 with_perl_bindings="$withval"
6303         fi
6304 ],
6305 [
6306         if test -n "$perl_interpreter"
6307         then
6308                 with_perl_bindings="yes"
6309         else
6310                 with_perl_bindings="no (no perl interpreter found)"
6311         fi
6312 ])
6313 if test "x$with_perl_bindings" = "xyes"
6314 then
6315         PERL_BINDINGS="perl"
6316 else
6317         PERL_BINDINGS=""
6318 fi
6319 AC_SUBST(PERL_BINDINGS)
6320 AC_SUBST(PERL_BINDINGS_OPTIONS)
6321
6322 dnl libcollectdclient
6323 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
6324 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
6325 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
6326
6327 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
6328
6329 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
6330
6331 AC_SUBST(LCC_VERSION_MAJOR)
6332 AC_SUBST(LCC_VERSION_MINOR)
6333 AC_SUBST(LCC_VERSION_PATCH)
6334 AC_SUBST(LCC_VERSION_EXTRA)
6335 AC_SUBST(LCC_VERSION_STRING)
6336
6337 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
6338
6339 AM_CFLAGS="-Wall"
6340 AM_CXXFLAGS="-Wall"
6341 if test "x$enable_werror" != "xno"
6342 then
6343         AM_CFLAGS="$AM_CFLAGS -Werror"
6344         AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
6345 fi
6346 AC_SUBST([AM_CFLAGS])
6347 AC_SUBST([AM_CXXFLAGS])
6348
6349 AC_CONFIG_FILES([Makefile proto/Makefile src/Makefile src/daemon/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile])
6350 AC_OUTPUT
6351
6352 if test "x$with_librrd" = "xyes" \
6353         && test "x$librrd_threadsafe" != "xyes"
6354 then
6355         with_librrd="yes (warning: librrd is not thread-safe)"
6356 fi
6357
6358 if test "x$with_libperl" = "xyes"
6359 then
6360         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
6361 else
6362         enable_perl="no (needs libperl)"
6363 fi
6364
6365 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
6366 then
6367         enable_perl="no (libperl doesn't support ithreads)"
6368 fi
6369
6370 if test "x$with_perl_bindings" = "xyes" \
6371         && test "x$PERL_BINDINGS_OPTIONS" != "x"
6372 then
6373         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
6374 fi
6375
6376 AC_MSG_RESULT()
6377 AC_MSG_RESULT([Configuration:])
6378 AC_MSG_RESULT([  Build:])
6379 AC_MSG_RESULT([    Platform  . . . . . . $ac_system])
6380 AC_MSG_RESULT([    CC  . . . . . . . . . $CC])
6381 AC_MSG_RESULT([    CFLAGS  . . . . . . . $AM_CFLAGS $CFLAGS])
6382 AC_MSG_RESULT([    CXXFLAGS  . . . . . . $AM_CXXFLAGS $CXXFLAGS])
6383 AC_MSG_RESULT([    CPP . . . . . . . . . $CPP])
6384 AC_MSG_RESULT([    CPPFLAGS  . . . . . . $CPPFLAGS])
6385 AC_MSG_RESULT([    GRPC_CPP_PLUGIN . . . $GRPC_CPP_PLUGIN])
6386 AC_MSG_RESULT([    LD  . . . . . . . . . $LD])
6387 AC_MSG_RESULT([    LDFLAGS . . . . . . . $LDFLAGS])
6388 AC_MSG_RESULT([    PROTOC  . . . . . . . $PROTOC])
6389 AC_MSG_RESULT([    YACC  . . . . . . . . $YACC])
6390 AC_MSG_RESULT([    YFLAGS  . . . . . . . $YFLAGS])
6391 AC_MSG_RESULT()
6392 AC_MSG_RESULT([  Libraries:])
6393 AC_MSG_RESULT([    intel mic . . . . . . $with_mic])
6394 AC_MSG_RESULT([    libaquaero5 . . . . . $with_libaquaero5])
6395 AC_MSG_RESULT([    libatasmart . . . . . $with_libatasmart])
6396 AC_MSG_RESULT([    libcurl . . . . . . . $with_libcurl])
6397 AC_MSG_RESULT([    libdbi  . . . . . . . $with_libdbi])
6398 AC_MSG_RESULT([    libesmtp  . . . . . . $with_libesmtp])
6399 AC_MSG_RESULT([    libganglia  . . . . . $with_libganglia])
6400 AC_MSG_RESULT([    libgcrypt . . . . . . $with_libgcrypt])
6401 AC_MSG_RESULT([    libgps  . . . . . . . $with_libgps])
6402 AC_MSG_RESULT([    libgrpc++ . . . . . . $with_libgrpcpp])
6403 AC_MSG_RESULT([    libhal  . . . . . . . $with_libhal])
6404 AC_MSG_RESULT([    libhiredis  . . . . . $with_libhiredis])
6405 AC_MSG_RESULT([    libi2c-dev  . . . . . $with_libi2c])
6406 AC_MSG_RESULT([    libiokit  . . . . . . $with_libiokit])
6407 AC_MSG_RESULT([    libiptc . . . . . . . $with_libiptc])
6408 AC_MSG_RESULT([    libjvm  . . . . . . . $with_java])
6409 AC_MSG_RESULT([    libkstat  . . . . . . $with_kstat])
6410 AC_MSG_RESULT([    libkvm  . . . . . . . $with_libkvm])
6411 AC_MSG_RESULT([    libldap . . . . . . . $with_libldap])
6412 AC_MSG_RESULT([    liblvm2app  . . . . . $with_liblvm2app])
6413 AC_MSG_RESULT([    libmemcached  . . . . $with_libmemcached])
6414 AC_MSG_RESULT([    libmnl  . . . . . . . $with_libmnl])
6415 AC_MSG_RESULT([    libmodbus . . . . . . $with_libmodbus])
6416 AC_MSG_RESULT([    libmongoc . . . . . . $with_libmongoc])
6417 AC_MSG_RESULT([    libmosquitto  . . . . $with_libmosquitto])
6418 AC_MSG_RESULT([    libmysql  . . . . . . $with_libmysql])
6419 AC_MSG_RESULT([    libnetapp . . . . . . $with_libnetapp])
6420 AC_MSG_RESULT([    libnetsnmp  . . . . . $with_libnetsnmp])
6421 AC_MSG_RESULT([    libnotify . . . . . . $with_libnotify])
6422 AC_MSG_RESULT([    liboconfig  . . . . . $with_liboconfig])
6423 AC_MSG_RESULT([    libopenipmi . . . . . $with_libopenipmipthread])
6424 AC_MSG_RESULT([    liboping  . . . . . . $with_liboping])
6425 AC_MSG_RESULT([    libowcapi . . . . . . $with_libowcapi])
6426 AC_MSG_RESULT([    libpcap . . . . . . . $with_libpcap])
6427 AC_MSG_RESULT([    libperfstat . . . . . $with_perfstat])
6428 AC_MSG_RESULT([    libperl . . . . . . . $with_libperl])
6429 AC_MSG_RESULT([    libpq . . . . . . . . $with_libpq])
6430 AC_MSG_RESULT([    libprotobuf . . . . . $with_libprotobuf])
6431 AC_MSG_RESULT([    libprotobuf-c . . . . $with_libprotobuf_c])
6432 AC_MSG_RESULT([    libpython . . . . . . $with_libpython])
6433 AC_MSG_RESULT([    librabbitmq . . . . . $with_librabbitmq])
6434 AC_MSG_RESULT([    libriemann-client . . $with_libriemann_client])
6435 AC_MSG_RESULT([    librdkafka  . . . . . $with_librdkafka])
6436 AC_MSG_RESULT([    librouteros . . . . . $with_librouteros])
6437 AC_MSG_RESULT([    librrd  . . . . . . . $with_librrd])
6438 AC_MSG_RESULT([    libsensors  . . . . . $with_libsensors])
6439 AC_MSG_RESULT([    libsigrok   . . . . . $with_libsigrok])
6440 AC_MSG_RESULT([    libstatgrab . . . . . $with_libstatgrab])
6441 AC_MSG_RESULT([    libtokyotyrant  . . . $with_libtokyotyrant])
6442 AC_MSG_RESULT([    libudev . . . . . . . $with_libudev])
6443 AC_MSG_RESULT([    libupsclient  . . . . $with_libupsclient])
6444 AC_MSG_RESULT([    libvarnish  . . . . . $with_libvarnish])
6445 AC_MSG_RESULT([    libvirt . . . . . . . $with_libvirt])
6446 AC_MSG_RESULT([    libxenctrl  . . . . . $with_libxenctrl])
6447 AC_MSG_RESULT([    libxml2 . . . . . . . $with_libxml2])
6448 AC_MSG_RESULT([    libxmms . . . . . . . $with_libxmms])
6449 AC_MSG_RESULT([    libyajl . . . . . . . $with_libyajl])
6450 AC_MSG_RESULT([    oracle  . . . . . . . $with_oracle])
6451 AC_MSG_RESULT([    protobuf-c  . . . . . $have_protoc_c])
6452 AC_MSG_RESULT([    protoc 3  . . . . . . $have_protoc3])
6453 AC_MSG_RESULT()
6454 AC_MSG_RESULT([  Features:])
6455 AC_MSG_RESULT([    daemon mode . . . . . $enable_daemon])
6456 AC_MSG_RESULT([    debug . . . . . . . . $enable_debug])
6457 AC_MSG_RESULT()
6458 AC_MSG_RESULT([  Bindings:])
6459 AC_MSG_RESULT([    perl  . . . . . . . . $with_perl_bindings])
6460 AC_MSG_RESULT()
6461 AC_MSG_RESULT([  Modules:])
6462 AC_MSG_RESULT([    aggregation . . . . . $enable_aggregation])
6463 AC_MSG_RESULT([    amqp    . . . . . . . $enable_amqp])
6464 AC_MSG_RESULT([    apache  . . . . . . . $enable_apache])
6465 AC_MSG_RESULT([    apcups  . . . . . . . $enable_apcups])
6466 AC_MSG_RESULT([    apple_sensors . . . . $enable_apple_sensors])
6467 AC_MSG_RESULT([    aquaero . . . . . . . $enable_aquaero])
6468 AC_MSG_RESULT([    ascent  . . . . . . . $enable_ascent])
6469 AC_MSG_RESULT([    barometer . . . . . . $enable_barometer])
6470 AC_MSG_RESULT([    battery . . . . . . . $enable_battery])
6471 AC_MSG_RESULT([    bind  . . . . . . . . $enable_bind])
6472 AC_MSG_RESULT([    ceph  . . . . . . . . $enable_ceph])
6473 AC_MSG_RESULT([    cgroups . . . . . . . $enable_cgroups])
6474 AC_MSG_RESULT([    chrony. . . . . . . . $enable_chrony])
6475 AC_MSG_RESULT([    conntrack . . . . . . $enable_conntrack])
6476 AC_MSG_RESULT([    contextswitch . . . . $enable_contextswitch])
6477 AC_MSG_RESULT([    cpu . . . . . . . . . $enable_cpu])
6478 AC_MSG_RESULT([    cpufreq . . . . . . . $enable_cpufreq])
6479 AC_MSG_RESULT([    cpusleep  . . . . . . $enable_cpusleep])
6480 AC_MSG_RESULT([    csv . . . . . . . . . $enable_csv])
6481 AC_MSG_RESULT([    curl  . . . . . . . . $enable_curl])
6482 AC_MSG_RESULT([    curl_json . . . . . . $enable_curl_json])
6483 AC_MSG_RESULT([    curl_xml  . . . . . . $enable_curl_xml])
6484 AC_MSG_RESULT([    dbi . . . . . . . . . $enable_dbi])
6485 AC_MSG_RESULT([    df  . . . . . . . . . $enable_df])
6486 AC_MSG_RESULT([    disk  . . . . . . . . $enable_disk])
6487 AC_MSG_RESULT([    dns . . . . . . . . . $enable_dns])
6488 AC_MSG_RESULT([    drbd  . . . . . . . . $enable_drbd])
6489 AC_MSG_RESULT([    email . . . . . . . . $enable_email])
6490 AC_MSG_RESULT([    entropy . . . . . . . $enable_entropy])
6491 AC_MSG_RESULT([    ethstat . . . . . . . $enable_ethstat])
6492 AC_MSG_RESULT([    exec  . . . . . . . . $enable_exec])
6493 AC_MSG_RESULT([    fhcount . . . . . . . $enable_fhcount])
6494 AC_MSG_RESULT([    filecount . . . . . . $enable_filecount])
6495 AC_MSG_RESULT([    fscache . . . . . . . $enable_fscache])
6496 AC_MSG_RESULT([    gmond . . . . . . . . $enable_gmond])
6497 AC_MSG_RESULT([    gps . . . . . . . . . $enable_gps])
6498 AC_MSG_RESULT([    grpc  . . . . . . . . $enable_grpc])
6499 AC_MSG_RESULT([    hddtemp . . . . . . . $enable_hddtemp])
6500 AC_MSG_RESULT([    interface . . . . . . $enable_interface])
6501 AC_MSG_RESULT([    ipc . . . . . . . . . $enable_ipc])
6502 AC_MSG_RESULT([    ipmi  . . . . . . . . $enable_ipmi])
6503 AC_MSG_RESULT([    iptables  . . . . . . $enable_iptables])
6504 AC_MSG_RESULT([    ipvs  . . . . . . . . $enable_ipvs])
6505 AC_MSG_RESULT([    irq . . . . . . . . . $enable_irq])
6506 AC_MSG_RESULT([    java  . . . . . . . . $enable_java])
6507 AC_MSG_RESULT([    load  . . . . . . . . $enable_load])
6508 AC_MSG_RESULT([    logfile . . . . . . . $enable_logfile])
6509 AC_MSG_RESULT([    log_logstash  . . . . $enable_log_logstash])
6510 AC_MSG_RESULT([    lpar  . . . . . . . . $enable_lpar])
6511 AC_MSG_RESULT([    lvm . . . . . . . . . $enable_lvm])
6512 AC_MSG_RESULT([    madwifi . . . . . . . $enable_madwifi])
6513 AC_MSG_RESULT([    match_empty_counter . $enable_match_empty_counter])
6514 AC_MSG_RESULT([    match_hashed  . . . . $enable_match_hashed])
6515 AC_MSG_RESULT([    match_regex . . . . . $enable_match_regex])
6516 AC_MSG_RESULT([    match_timediff  . . . $enable_match_timediff])
6517 AC_MSG_RESULT([    match_value . . . . . $enable_match_value])
6518 AC_MSG_RESULT([    mbmon . . . . . . . . $enable_mbmon])
6519 AC_MSG_RESULT([    md  . . . . . . . . . $enable_md])
6520 AC_MSG_RESULT([    memcachec . . . . . . $enable_memcachec])
6521 AC_MSG_RESULT([    memcached . . . . . . $enable_memcached])
6522 AC_MSG_RESULT([    memory  . . . . . . . $enable_memory])
6523 AC_MSG_RESULT([    mic . . . . . . . . . $enable_mic])
6524 AC_MSG_RESULT([    modbus  . . . . . . . $enable_modbus])
6525 AC_MSG_RESULT([    mqtt  . . . . . . . . $enable_mqtt])
6526 AC_MSG_RESULT([    multimeter  . . . . . $enable_multimeter])
6527 AC_MSG_RESULT([    mysql . . . . . . . . $enable_mysql])
6528 AC_MSG_RESULT([    netapp  . . . . . . . $enable_netapp])
6529 AC_MSG_RESULT([    netlink . . . . . . . $enable_netlink])
6530 AC_MSG_RESULT([    network . . . . . . . $enable_network])
6531 AC_MSG_RESULT([    nfs . . . . . . . . . $enable_nfs])
6532 AC_MSG_RESULT([    nginx . . . . . . . . $enable_nginx])
6533 AC_MSG_RESULT([    notify_desktop  . . . $enable_notify_desktop])
6534 AC_MSG_RESULT([    notify_email  . . . . $enable_notify_email])
6535 AC_MSG_RESULT([    notify_nagios . . . . $enable_notify_nagios])
6536 AC_MSG_RESULT([    ntpd  . . . . . . . . $enable_ntpd])
6537 AC_MSG_RESULT([    numa  . . . . . . . . $enable_numa])
6538 AC_MSG_RESULT([    nut . . . . . . . . . $enable_nut])
6539 AC_MSG_RESULT([    olsrd . . . . . . . . $enable_olsrd])
6540 AC_MSG_RESULT([    onewire . . . . . . . $enable_onewire])
6541 AC_MSG_RESULT([    openldap  . . . . . . $enable_openldap])
6542 AC_MSG_RESULT([    openvpn . . . . . . . $enable_openvpn])
6543 AC_MSG_RESULT([    oracle  . . . . . . . $enable_oracle])
6544 AC_MSG_RESULT([    perl  . . . . . . . . $enable_perl])
6545 AC_MSG_RESULT([    pf  . . . . . . . . . $enable_pf])
6546 AC_MSG_RESULT([    pinba . . . . . . . . $enable_pinba])
6547 AC_MSG_RESULT([    ping  . . . . . . . . $enable_ping])
6548 AC_MSG_RESULT([    postgresql  . . . . . $enable_postgresql])
6549 AC_MSG_RESULT([    powerdns  . . . . . . $enable_powerdns])
6550 AC_MSG_RESULT([    processes . . . . . . $enable_processes])
6551 AC_MSG_RESULT([    protocols . . . . . . $enable_protocols])
6552 AC_MSG_RESULT([    python  . . . . . . . $enable_python])
6553 AC_MSG_RESULT([    redis . . . . . . . . $enable_redis])
6554 AC_MSG_RESULT([    routeros  . . . . . . $enable_routeros])
6555 AC_MSG_RESULT([    rrdcached . . . . . . $enable_rrdcached])
6556 AC_MSG_RESULT([    rrdtool . . . . . . . $enable_rrdtool])
6557 AC_MSG_RESULT([    sensors . . . . . . . $enable_sensors])
6558 AC_MSG_RESULT([    serial  . . . . . . . $enable_serial])
6559 AC_MSG_RESULT([    sigrok  . . . . . . . $enable_sigrok])
6560 AC_MSG_RESULT([    smart . . . . . . . . $enable_smart])
6561 AC_MSG_RESULT([    snmp  . . . . . . . . $enable_snmp])
6562 AC_MSG_RESULT([    statsd  . . . . . . . $enable_statsd])
6563 AC_MSG_RESULT([    swap  . . . . . . . . $enable_swap])
6564 AC_MSG_RESULT([    syslog  . . . . . . . $enable_syslog])
6565 AC_MSG_RESULT([    table . . . . . . . . $enable_table])
6566 AC_MSG_RESULT([    tail_csv  . . . . . . $enable_tail_csv])
6567 AC_MSG_RESULT([    tail  . . . . . . . . $enable_tail])
6568 AC_MSG_RESULT([    tape  . . . . . . . . $enable_tape])
6569 AC_MSG_RESULT([    target_notification . $enable_target_notification])
6570 AC_MSG_RESULT([    target_replace  . . . $enable_target_replace])
6571 AC_MSG_RESULT([    target_scale  . . . . $enable_target_scale])
6572 AC_MSG_RESULT([    target_set  . . . . . $enable_target_set])
6573 AC_MSG_RESULT([    target_v5upgrade  . . $enable_target_v5upgrade])
6574 AC_MSG_RESULT([    tcpconns  . . . . . . $enable_tcpconns])
6575 AC_MSG_RESULT([    teamspeak2  . . . . . $enable_teamspeak2])
6576 AC_MSG_RESULT([    ted . . . . . . . . . $enable_ted])
6577 AC_MSG_RESULT([    thermal . . . . . . . $enable_thermal])
6578 AC_MSG_RESULT([    threshold . . . . . . $enable_threshold])
6579 AC_MSG_RESULT([    tokyotyrant . . . . . $enable_tokyotyrant])
6580 AC_MSG_RESULT([    turbostat . . . . . . $enable_turbostat])
6581 AC_MSG_RESULT([    unixsock  . . . . . . $enable_unixsock])
6582 AC_MSG_RESULT([    uptime  . . . . . . . $enable_uptime])
6583 AC_MSG_RESULT([    users . . . . . . . . $enable_users])
6584 AC_MSG_RESULT([    uuid  . . . . . . . . $enable_uuid])
6585 AC_MSG_RESULT([    varnish . . . . . . . $enable_varnish])
6586 AC_MSG_RESULT([    virt  . . . . . . . . $enable_virt])
6587 AC_MSG_RESULT([    vmem  . . . . . . . . $enable_vmem])
6588 AC_MSG_RESULT([    vserver . . . . . . . $enable_vserver])
6589 AC_MSG_RESULT([    wireless  . . . . . . $enable_wireless])
6590 AC_MSG_RESULT([    write_graphite  . . . $enable_write_graphite])
6591 AC_MSG_RESULT([    write_http  . . . . . $enable_write_http])
6592 AC_MSG_RESULT([    write_kafka . . . . . $enable_write_kafka])
6593 AC_MSG_RESULT([    write_log . . . . . . $enable_write_log])
6594 AC_MSG_RESULT([    write_mongodb . . . . $enable_write_mongodb])
6595 AC_MSG_RESULT([    write_redis . . . . . $enable_write_redis])
6596 AC_MSG_RESULT([    write_riemann . . . . $enable_write_riemann])
6597 AC_MSG_RESULT([    write_sensu . . . . . $enable_write_sensu])
6598 AC_MSG_RESULT([    write_tsdb  . . . . . $enable_write_tsdb])
6599 AC_MSG_RESULT([    xencpu  . . . . . . . $enable_xencpu])
6600 AC_MSG_RESULT([    xmms  . . . . . . . . $enable_xmms])
6601 AC_MSG_RESULT([    zfs_arc . . . . . . . $enable_zfs_arc])
6602 AC_MSG_RESULT([    zone  . . . . . . . . $enable_zone])
6603 AC_MSG_RESULT([    zookeeper . . . . . . $enable_zookeeper])
6604 AC_MSG_RESULT()
6605
6606 if test "x$dependency_error" = "xyes"; then
6607         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6608 fi
6609
6610 if test "x$dependency_warning" = "xyes"; then
6611         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6612 fi
6613
6614 # vim: set fdm=marker :