Build system: set CPPFLAGS when checking for <grpc++/grpc++.h>
[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="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
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_CPPFLAGS="$CPPFLAGS"
2390   SAVE_LDFLAGS="$LDFLAGS"
2391   SAVE_LIBS="$LIBS"
2392   CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS $CPPFLAGS"
2393   LDFLAGS="$with_libgrpcpp_ldflags"
2394   if test "x$GRPCPP_LIBS" = "x"
2395   then
2396     LIBS="-lgrpc++"
2397   else
2398     LIBS="$GRPCPP_LIBS"
2399   fi
2400   AC_LINK_IFELSE(
2401     [AC_LANG_PROGRAM(
2402       [[#include <grpc++/grpc++.h>]],
2403       [[grpc::ServerBuilder sb;]]
2404     )],
2405     [
2406       with_libgrpcpp="yes"
2407       if test "x$GRPCPP_LIBS" = "x"
2408       then
2409         GRPCPP_LIBS="-lgrpc++"
2410       fi
2411     ],
2412     [with_libgrpcpp="no (libgrpc++ not found)"]
2413   )
2414   CPPFLAGS="$SAVE_CPPFLAGS"
2415   LDFLAGS="$SAVE_LDFLAGS"
2416   LIBS="$SAVE_LIBS"
2417   AC_LANG_POP(C++)
2418 fi
2419 BUILD_WITH_LIBGRPCPP_CPPFLAGS="-std=c++11 $with_libgrpcpp_cppflags $GRPCPP_CFLAGS"
2420 BUILD_WITH_LIBGRPCPP_LDFLAGS="$with_libgrpcpp_ldflags"
2421 BUILD_WITH_LIBGRPCPP_LIBS="$GRPCPP_LIBS"
2422 AC_SUBST([BUILD_WITH_LIBGRPCPP_CPPFLAGS])
2423 AC_SUBST([BUILD_WITH_LIBGRPCPP_LDFLAGS])
2424 AC_SUBST([BUILD_WITH_LIBGRPCPP_LIBS])
2425 # }}}
2426
2427 # --with-libiptc {{{
2428 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2429 [
2430         if test "x$withval" = "xyes"
2431         then
2432                 with_libiptc="pkgconfig"
2433         else if test "x$withval" = "xno"
2434         then
2435                 with_libiptc="no"
2436         else
2437                 with_libiptc="yes"
2438                 with_libiptc_cflags="-I$withval/include"
2439                 with_libiptc_libs="-L$withval/lib"
2440         fi; fi
2441 ],
2442 [
2443         if test "x$ac_system" = "xLinux"
2444         then
2445                 with_libiptc="pkgconfig"
2446         else
2447                 with_libiptc="no (Linux only)"
2448         fi
2449 ])
2450
2451 if test "x$with_libiptc" = "xpkgconfig"
2452 then
2453         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2454         if test $? -ne 0
2455         then
2456                 with_libiptc="no (pkg-config doesn't know libiptc)"
2457         fi
2458 fi
2459 if test "x$with_libiptc" = "xpkgconfig"
2460 then
2461         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2462         if test $? -ne 0
2463         then
2464                 with_libiptc="no ($PKG_CONFIG failed)"
2465         fi
2466         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2467         if test $? -ne 0
2468         then
2469                 with_libiptc="no ($PKG_CONFIG failed)"
2470         fi
2471 fi
2472
2473 SAVE_CPPFLAGS="$CPPFLAGS"
2474 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2475
2476 # check whether the header file for libiptc is available.
2477 if test "x$with_libiptc" = "xpkgconfig"
2478 then
2479         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2480                         [with_libiptc="no (header file missing)"])
2481 fi
2482 # If the header file is available, check for the required type declaractions.
2483 # They may be missing in old versions of libiptc. In that case, they will be
2484 # declared in the iptables plugin.
2485 if test "x$with_libiptc" = "xpkgconfig"
2486 then
2487         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2488 fi
2489 # Check for the iptc_init symbol in the library.
2490 # This could be in iptc or ip4tc
2491 if test "x$with_libiptc" = "xpkgconfig"
2492 then
2493         SAVE_LIBS="$LIBS"
2494         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2495                         [with_libiptc="pkgconfig"],
2496                         [with_libiptc="no"],
2497                         [$with_libiptc_libs])
2498         LIBS="$SAVE_LIBS"
2499 fi
2500 if test "x$with_libiptc" = "xpkgconfig"
2501 then
2502         with_libiptc="yes"
2503 fi
2504
2505 CPPFLAGS="$SAVE_CPPFLAGS"
2506
2507 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2508 if test "x$with_libiptc" = "xyes"
2509 then
2510         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2511         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2512         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2513         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2514 fi
2515 # }}}
2516
2517 # --with-java {{{
2518 with_java_home="$JAVA_HOME"
2519 if test "x$with_java_home" = "x"
2520 then
2521         with_java_home="/usr/lib/jvm"
2522 fi
2523 JAVAC="$JAVAC"
2524 JAR="$JAR"
2525 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2526 [
2527         if test "x$withval" = "xno"
2528         then
2529                 with_java="no"
2530         else if test "x$withval" = "xyes"
2531         then
2532                 with_java="yes"
2533         else
2534                 with_java_home="$withval"
2535                 with_java="yes"
2536         fi; fi
2537 ],
2538 [with_java="yes"])
2539 if test "x$with_java" = "xyes"
2540 then
2541         if test -d "$with_java_home"
2542         then
2543                 AC_MSG_CHECKING([for jni.h])
2544                 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2545                 if test "x$TMPVAR" != "x"
2546                 then
2547                         AC_MSG_RESULT([found in $TMPVAR])
2548                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2549                 else
2550                         AC_MSG_RESULT([not found])
2551                 fi
2552
2553                 AC_MSG_CHECKING([for jni_md.h])
2554                 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2555                 if test "x$TMPVAR" != "x"
2556                 then
2557                         AC_MSG_RESULT([found in $TMPVAR])
2558                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2559                 else
2560                         AC_MSG_RESULT([not found])
2561                 fi
2562
2563                 AC_MSG_CHECKING([for libjvm.so])
2564                 TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2565                 if test "x$TMPVAR" != "x"
2566                 then
2567                         AC_MSG_RESULT([found in $TMPVAR])
2568                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2569                 else
2570                         AC_MSG_RESULT([not found])
2571                 fi
2572
2573                 if test "x$JAVAC" = "x"
2574                 then
2575                         AC_MSG_CHECKING([for javac])
2576                         TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2577                         if test "x$TMPVAR" != "x"
2578                         then
2579                                 JAVAC="$TMPVAR"
2580                                 AC_MSG_RESULT([$JAVAC])
2581                         else
2582                                 AC_MSG_RESULT([not found])
2583                         fi
2584                 fi
2585                 if test "x$JAR" = "x"
2586                 then
2587                         AC_MSG_CHECKING([for jar])
2588                         TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2589                         if test "x$TMPVAR" != "x"
2590                         then
2591                                 JAR="$TMPVAR"
2592                                 AC_MSG_RESULT([$JAR])
2593                         else
2594                                 AC_MSG_RESULT([not found])
2595                         fi
2596                 fi
2597         else if test "x$with_java_home" != "x"
2598         then
2599                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2600         fi; fi
2601 fi
2602
2603 if test "x$JAVA_CPPFLAGS" != "x"
2604 then
2605         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2606 fi
2607 if test "x$JAVA_CFLAGS" != "x"
2608 then
2609         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2610 fi
2611 if test "x$JAVA_LDFLAGS" != "x"
2612 then
2613         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2614 fi
2615 if test "x$JAVA_LIBS" != "x"
2616 then
2617         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2618 fi
2619 if test "x$JAVAC" = "x"
2620 then
2621         with_javac_path="$PATH"
2622         if test "x$with_java_home" != "x"
2623         then
2624                 with_javac_path="$with_java_home:with_javac_path"
2625                 if test -d "$with_java_home/bin"
2626                 then
2627                         with_javac_path="$with_java_home/bin:with_javac_path"
2628                 fi
2629         fi
2630
2631         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2632 fi
2633 if test "x$JAVAC" = "x"
2634 then
2635         with_java="no (javac not found)"
2636 fi
2637 if test "x$JAR" = "x"
2638 then
2639         with_jar_path="$PATH"
2640         if test "x$with_java_home" != "x"
2641         then
2642                 with_jar_path="$with_java_home:$with_jar_path"
2643                 if test -d "$with_java_home/bin"
2644                 then
2645                         with_jar_path="$with_java_home/bin:$with_jar_path"
2646                 fi
2647         fi
2648
2649         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2650 fi
2651 if test "x$JAR" = "x"
2652 then
2653         with_java="no (jar not found)"
2654 fi
2655
2656 SAVE_CPPFLAGS="$CPPFLAGS"
2657 SAVE_CFLAGS="$CFLAGS"
2658 SAVE_LDFLAGS="$LDFLAGS"
2659 SAVE_LIBS="$LIBS"
2660 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2661 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2662 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2663 LIBS="$LIBS $JAVA_LIBS"
2664
2665 if test "x$with_java" = "xyes"
2666 then
2667         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2668 fi
2669 if test "x$with_java" = "xyes"
2670 then
2671         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2672         [with_java="yes"],
2673         [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
2674         [$JAVA_LIBS $PTHREAD_LIBS])
2675 fi
2676 if test "x$with_java" = "xyes"
2677 then
2678         JAVA_LIBS="$JAVA_LIBS -ljvm"
2679         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2680 fi
2681
2682 CPPFLAGS="$SAVE_CPPFLAGS"
2683 CFLAGS="$SAVE_CFLAGS"
2684 LDFLAGS="$SAVE_LDFLAGS"
2685 LIBS="$SAVE_LIBS"
2686
2687 AC_SUBST(JAVA_CPPFLAGS)
2688 AC_SUBST(JAVA_CFLAGS)
2689 AC_SUBST(JAVA_LDFLAGS)
2690 AC_SUBST(JAVA_LIBS)
2691 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2692 # }}}
2693
2694 # --with-libldap {{{
2695 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2696 [
2697  if test "x$withval" = "xyes"
2698  then
2699          with_libldap="yes"
2700  else if test "x$withval" = "xno"
2701  then
2702          with_libldap="no"
2703  else
2704          with_libldap="yes"
2705          LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2706          LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2707  fi; fi
2708 ],
2709 [with_libldap="yes"])
2710
2711 SAVE_CPPFLAGS="$CPPFLAGS"
2712 SAVE_LDFLAGS="$LDFLAGS"
2713
2714 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2715 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2716
2717 if test "x$with_libldap" = "xyes"
2718 then
2719         if test "x$LIBLDAP_CPPFLAGS" != "x"
2720         then
2721                 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2722         fi
2723         AC_CHECK_HEADERS(ldap.h,
2724         [with_libldap="yes"],
2725         [with_libldap="no ('ldap.h' not found)"])
2726 fi
2727 if test "x$with_libldap" = "xyes"
2728 then
2729         if test "x$LIBLDAP_LDFLAGS" != "x"
2730         then
2731                 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2732         fi
2733         AC_CHECK_LIB(ldap, ldap_initialize,
2734         [with_libldap="yes"],
2735         [with_libldap="no (symbol 'ldap_initialize' not found)"])
2736
2737 fi
2738
2739 CPPFLAGS="$SAVE_CPPFLAGS"
2740 LDFLAGS="$SAVE_LDFLAGS"
2741
2742 if test "x$with_libldap" = "xyes"
2743 then
2744         BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2745         BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2746         AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2747         AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2748 fi
2749 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2750 # }}}
2751
2752 # --with-liblvm2app {{{
2753 with_liblvm2app_cppflags=""
2754 with_liblvm2app_ldflags=""
2755 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2756 [
2757         if test "x$withval" = "xno"
2758         then
2759                 with_liblvm2app="no"
2760         else
2761                 with_liblvm2app="yes"
2762                 if test "x$withval" != "xyes"
2763                 then
2764                         with_liblvm2app_cppflags="-I$withval/include"
2765                         with_liblvm2app_ldflags="-L$withval/lib"
2766                 fi
2767         fi
2768 ],
2769 [
2770         if test "x$ac_system" = "xLinux"
2771         then
2772                 with_liblvm2app="yes"
2773         else
2774                 with_liblvm2app="no (Linux only library)"
2775         fi
2776 ])
2777 if test "x$with_liblvm2app" = "xyes"
2778 then
2779         SAVE_CPPFLAGS="$CPPFLAGS"
2780         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2781
2782         AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2783
2784         CPPFLAGS="$SAVE_CPPFLAGS"
2785 fi
2786
2787 if test "x$with_liblvm2app" = "xyes"
2788 then
2789         SAVE_CPPFLAGS="$CPPFLAGS"
2790         SAVE_LDFLAGS="$LDFLAGS"
2791         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2792         LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2793
2794         AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
2795
2796         CPPFLAGS="$SAVE_CPPFLAGS"
2797         LDFLAGS="$SAVE_LDFLAGS"
2798 fi
2799 if test "x$with_liblvm2app" = "xyes"
2800 then
2801         BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2802         BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2803         BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2804         AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2805         AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2806         AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2807         AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2808 fi
2809 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2810 # }}}
2811
2812 # --with-libmemcached {{{
2813 with_libmemcached_cppflags=""
2814 with_libmemcached_ldflags=""
2815 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2816 [
2817         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2818         then
2819                 with_libmemcached_cppflags="-I$withval/include"
2820                 with_libmemcached_ldflags="-L$withval/lib"
2821                 with_libmemcached="yes"
2822         else
2823                 with_libmemcached="$withval"
2824         fi
2825 ],
2826 [
2827         with_libmemcached="yes"
2828 ])
2829 if test "x$with_libmemcached" = "xyes"
2830 then
2831         SAVE_CPPFLAGS="$CPPFLAGS"
2832         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2833
2834         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2835
2836         CPPFLAGS="$SAVE_CPPFLAGS"
2837 fi
2838 if test "x$with_libmemcached" = "xyes"
2839 then
2840         SAVE_CPPFLAGS="$CPPFLAGS"
2841         SAVE_LDFLAGS="$LDFLAGS"
2842         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2843         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2844
2845         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2846
2847         CPPFLAGS="$SAVE_CPPFLAGS"
2848         LDFLAGS="$SAVE_LDFLAGS"
2849 fi
2850 if test "x$with_libmemcached" = "xyes"
2851 then
2852         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2853         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2854         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2855         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2856         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2857         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2858         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2859 fi
2860 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2861 # }}}
2862
2863 # --with-libmodbus {{{
2864 with_libmodbus_config=""
2865 with_libmodbus_cflags=""
2866 with_libmodbus_libs=""
2867 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2868 [
2869         if test "x$withval" = "xno"
2870         then
2871                 with_libmodbus="no"
2872         else if test "x$withval" = "xyes"
2873         then
2874                 with_libmodbus="use_pkgconfig"
2875         else if test -d "$with_libmodbus/lib"
2876         then
2877                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2878                 with_libmodbus_cflags="-I$withval/include"
2879                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2880                 with_libmodbus="yes"
2881         fi; fi; fi
2882 ],
2883 [with_libmodbus="use_pkgconfig"])
2884
2885 # configure using pkg-config
2886 if test "x$with_libmodbus" = "xuse_pkgconfig"
2887 then
2888         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2889         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2890         if test $? -ne 0
2891         then
2892                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2893         fi
2894 fi
2895 if test "x$with_libmodbus" = "xuse_pkgconfig"
2896 then
2897         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2898         if test $? -ne 0
2899         then
2900                 with_libmodbus="no ($PKG_CONFIG failed)"
2901         fi
2902         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2903         if test $? -ne 0
2904         then
2905                 with_libmodbus="no ($PKG_CONFIG failed)"
2906         fi
2907 fi
2908 if test "x$with_libmodbus" = "xuse_pkgconfig"
2909 then
2910         with_libmodbus="yes"
2911 fi
2912
2913 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2914 # the actual checks.
2915 if test "x$with_libmodbus" = "xyes"
2916 then
2917         SAVE_CPPFLAGS="$CPPFLAGS"
2918         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2919
2920         AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
2921
2922         CPPFLAGS="$SAVE_CPPFLAGS"
2923 fi
2924 if test "x$with_libmodbus" = "xyes"
2925 then
2926         SAVE_CPPFLAGS="$CPPFLAGS"
2927         SAVE_LDFLAGS="$LDFLAGS"
2928
2929         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2930         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2931
2932         AC_CHECK_LIB(modbus, modbus_connect,
2933                      [with_libmodbus="yes"],
2934                      [with_libmodbus="no (symbol modbus_connect not found)"])
2935
2936         CPPFLAGS="$SAVE_CPPFLAGS"
2937         LDFLAGS="$SAVE_LDFLAGS"
2938 fi
2939 if test "x$with_libmodbus" = "xyes"
2940 then
2941         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2942         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2943         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2944         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2945 fi
2946 # }}}
2947
2948 # --with-libmongoc {{{
2949 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2950 [
2951  if test "x$withval" = "xyes"
2952  then
2953          with_libmongoc="yes"
2954  else if test "x$withval" = "xno"
2955  then
2956          with_libmongoc="no"
2957  else
2958          with_libmongoc="yes"
2959          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2960          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2961  fi; fi
2962 ],
2963 [with_libmongoc="yes"])
2964
2965 SAVE_CPPFLAGS="$CPPFLAGS"
2966 SAVE_LDFLAGS="$LDFLAGS"
2967
2968 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2969 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2970
2971 if test "x$with_libmongoc" = "xyes"
2972 then
2973         if test "x$LIBMONGOC_CPPFLAGS" != "x"
2974         then
2975                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2976         fi
2977         AC_CHECK_HEADERS(mongo.h,
2978         [with_libmongoc="yes"],
2979         [with_libmongoc="no ('mongo.h' not found)"],
2980 [#if HAVE_STDINT_H
2981 # define MONGO_HAVE_STDINT 1
2982 #else
2983 # define MONGO_USE_LONG_LONG_INT 1
2984 #endif
2985 ])
2986 fi
2987 if test "x$with_libmongoc" = "xyes"
2988 then
2989         if test "x$LIBMONGOC_LDFLAGS" != "x"
2990         then
2991                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2992         fi
2993         AC_CHECK_LIB(mongoc, mongo_run_command,
2994         [with_libmongoc="yes"],
2995         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2996 fi
2997
2998 CPPFLAGS="$SAVE_CPPFLAGS"
2999 LDFLAGS="$SAVE_LDFLAGS"
3000
3001 if test "x$with_libmongoc" = "xyes"
3002 then
3003         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
3004         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
3005         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
3006         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
3007 fi
3008 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
3009 # }}}
3010
3011 # --with-libmosquitto {{{
3012 with_libmosquitto_cppflags=""
3013 with_libmosquitto_ldflags=""
3014 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
3015 [
3016         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3017         then
3018                 with_libmosquitto_cppflags="-I$withval/include"
3019                 with_libmosquitto_ldflags="-L$withval/lib"
3020                 with_libmosquitto="yes"
3021         else
3022                 with_libmosquitto="$withval"
3023         fi
3024 ],
3025 [
3026         with_libmosquitto="yes"
3027 ])
3028 if test "x$with_libmosquitto" = "xyes"
3029 then
3030         SAVE_CPPFLAGS="$CPPFLAGS"
3031         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3032
3033         AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
3034
3035         CPPFLAGS="$SAVE_CPPFLAGS"
3036 fi
3037 if test "x$with_libmosquitto" = "xyes"
3038 then
3039         SAVE_LDFLAGS="$LDFLAGS"
3040         SAVE_CPPFLAGS="$CPPFLAGS"
3041         LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
3042         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3043
3044         AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
3045
3046         LDFLAGS="$SAVE_LDFLAGS"
3047         CPPFLAGS="$SAVE_CPPFLAGS"
3048 fi
3049 if test "x$with_libmosquitto" = "xyes"
3050 then
3051         BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
3052         BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
3053         BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
3054         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
3055         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LDFLAGS)
3056         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
3057 fi
3058 # }}}
3059
3060 # --with-libmysql {{{
3061 with_mysql_config="mysql_config"
3062 with_mysql_cflags=""
3063 with_mysql_libs=""
3064 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
3065 [
3066         if test "x$withval" = "xno"
3067         then
3068                 with_libmysql="no"
3069         else if test "x$withval" = "xyes"
3070         then
3071                 with_libmysql="yes"
3072         else
3073                 if test -f "$withval" && test -x "$withval";
3074                 then
3075                         with_mysql_config="$withval"
3076                 else if test -x "$withval/bin/mysql_config"
3077                 then
3078                         with_mysql_config="$withval/bin/mysql_config"
3079                 fi; fi
3080                 with_libmysql="yes"
3081         fi; fi
3082 ],
3083 [
3084         with_libmysql="yes"
3085 ])
3086 if test "x$with_libmysql" = "xyes"
3087 then
3088         with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
3089         mysql_config_status=$?
3090
3091         if test $mysql_config_status -ne 0
3092         then
3093                 with_libmysql="no ($with_mysql_config failed)"
3094         else
3095                 SAVE_CPPFLAGS="$CPPFLAGS"
3096                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3097
3098                 have_mysql_h="no"
3099                 have_mysql_mysql_h="no"
3100                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
3101
3102                 if test "x$have_mysql_h" = "xno"
3103                 then
3104                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
3105                 fi
3106
3107                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
3108                 then
3109                         with_libmysql="no (mysql.h not found)"
3110                 fi
3111
3112                 CPPFLAGS="$SAVE_CPPFLAGS"
3113         fi
3114 fi
3115 if test "x$with_libmysql" = "xyes"
3116 then
3117         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
3118         mysql_config_status=$?
3119
3120         if test $mysql_config_status -ne 0
3121         then
3122                 with_libmysql="no ($with_mysql_config failed)"
3123         else
3124                 SAVE_CPPFLAGS="$CPPFLAGS"
3125                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3126                 SAVE_LIBS="$LIBS"
3127                 LIBS="$with_mysql_libs"
3128                 AC_SEARCH_LIBS([mysql_get_server_version],
3129                  [],
3130                  [with_libmysql="yes"],
3131                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
3132                  [])
3133                 CPPFLAGS="$SAVE_CPPFLAGS"
3134                 LIBS="$SAVE_LIBS"
3135         fi
3136 fi
3137 if test "x$with_libmysql" = "xyes"
3138 then
3139         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
3140         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
3141         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
3142         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
3143 fi
3144 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
3145 # }}}
3146
3147 # --with-libmnl {{{
3148 with_libmnl_cflags=""
3149 with_libmnl_libs=""
3150 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
3151 [
3152  echo "libmnl: withval = $withval"
3153  if test "x$withval" = "xyes"
3154  then
3155          with_libmnl="yes"
3156  else if test "x$withval" = "xno"
3157  then
3158          with_libmnl="no"
3159  else
3160          if test -d "$withval/include"
3161          then
3162                  with_libmnl_cflags="-I$withval/include"
3163                  with_libmnl_libs="-L$withval/lib -lmnl"
3164                  with_libmnl="yes"
3165          else
3166                  AC_MSG_ERROR("no such directory: $withval/include")
3167          fi
3168  fi; fi
3169 ],
3170 [
3171  if test "x$ac_system" = "xLinux"
3172  then
3173          with_libmnl="yes"
3174  else
3175          with_libmnl="no (Linux only library)"
3176  fi
3177 ])
3178 if test "x$with_libmnl" = "xyes"
3179 then
3180         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
3181           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
3182           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
3183         fi
3184
3185         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
3186         [
3187          with_libmnl="yes"
3188          break
3189         ], [],
3190 [#include <stdio.h>
3191 #include <sys/types.h>
3192 #include <asm/types.h>
3193 #include <sys/socket.h>
3194 #include <linux/netlink.h>
3195 #include <linux/rtnetlink.h>])
3196         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
3197 [#include <stdio.h>
3198 #include <sys/types.h>
3199 #include <asm/types.h>
3200 #include <sys/socket.h>])
3201
3202         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3203 [[
3204 #include <stdio.h>
3205 #include <sys/types.h>
3206 #include <asm/types.h>
3207 #include <sys/socket.h>
3208 #include <linux/netlink.h>
3209 #include <linux/rtnetlink.h>
3210 ]],
3211 [[
3212 int retval = TCA_STATS2;
3213 return (retval);
3214 ]]
3215         )],
3216         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
3217
3218         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3219 [[
3220 #include <stdio.h>
3221 #include <sys/types.h>
3222 #include <asm/types.h>
3223 #include <sys/socket.h>
3224 #include <linux/netlink.h>
3225 #include <linux/rtnetlink.h>
3226 ]],
3227 [[
3228 int retval = TCA_STATS;
3229 return (retval);
3230 ]]
3231         )],
3232         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
3233 fi
3234 if test "x$with_libmnl" = "xyes"
3235 then
3236         AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3237         [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3238         [],
3239         [
3240         #include <linux/if_link.h>
3241         ])
3242 fi
3243 if test "x$with_libmnl" = "xyes"
3244 then
3245         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
3246                      [with_libmnl="yes"],
3247                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3248                      [$with_libmnl_libs])
3249 fi
3250 if test "x$with_libmnl" = "xyes"
3251 then
3252         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
3253         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3254         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3255         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
3256         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
3257 fi
3258 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
3259 # }}}
3260
3261 # --with-libnetapp {{{
3262 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3263 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
3264 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
3265 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
3266 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
3267 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
3268 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3269 [
3270  if test -d "$withval"
3271  then
3272          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3273          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3274          with_libnetapp="yes"
3275  else
3276          with_libnetapp="$withval"
3277  fi
3278 ],
3279 [
3280  with_libnetapp="yes"
3281 ])
3282
3283 SAVE_CPPFLAGS="$CPPFLAGS"
3284 SAVE_LDFLAGS="$LDFLAGS"
3285 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3286 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3287
3288 if test "x$with_libnetapp" = "xyes"
3289 then
3290         if test "x$LIBNETAPP_CPPFLAGS" != "x"
3291         then
3292                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
3293         fi
3294         AC_CHECK_HEADERS(netapp_api.h,
3295                 [with_libnetapp="yes"],
3296                 [with_libnetapp="no (netapp_api.h not found)"])
3297 fi
3298
3299 if test "x$with_libnetapp" = "xyes"
3300 then
3301         if test "x$LIBNETAPP_LDFLAGS" != "x"
3302         then
3303                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
3304         fi
3305
3306         if test "x$LIBNETAPP_LIBS" = "x"
3307         then
3308                 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3309         fi
3310         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
3311
3312         AC_CHECK_LIB(netapp, na_server_invoke_elem,
3313                 [with_libnetapp="yes"],
3314                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3315                 [$LIBNETAPP_LIBS])
3316         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3317 fi
3318
3319 CPPFLAGS="$SAVE_CPPFLAGS"
3320 LDFLAGS="$SAVE_LDFLAGS"
3321
3322 if test "x$with_libnetapp" = "xyes"
3323 then
3324         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
3325 fi
3326
3327 AC_SUBST(LIBNETAPP_CPPFLAGS)
3328 AC_SUBST(LIBNETAPP_LDFLAGS)
3329 AC_SUBST(LIBNETAPP_LIBS)
3330 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
3331 # }}}
3332
3333 # --with-libnetsnmp {{{
3334 with_snmp_config="net-snmp-config"
3335 with_snmp_cflags=""
3336 with_snmp_libs=""
3337 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3338 [
3339         if test "x$withval" = "xno"
3340         then
3341                 with_libnetsnmp="no"
3342         else if test "x$withval" = "xyes"
3343         then
3344                 with_libnetsnmp="yes"
3345         else
3346                 if test -x "$withval"
3347                 then
3348                         with_snmp_config="$withval"
3349                         with_libnetsnmp="yes"
3350                 else
3351                         with_snmp_config="$withval/bin/net-snmp-config"
3352                         with_libnetsnmp="yes"
3353                 fi
3354         fi; fi
3355 ],
3356 [with_libnetsnmp="yes"])
3357 if test "x$with_libnetsnmp" = "xyes"
3358 then
3359         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
3360         snmp_config_status=$?
3361
3362         if test $snmp_config_status -ne 0
3363         then
3364                 with_libnetsnmp="no ($with_snmp_config failed)"
3365         else
3366                 SAVE_CPPFLAGS="$CPPFLAGS"
3367                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
3368
3369                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3370
3371                 CPPFLAGS="$SAVE_CPPFLAGS"
3372         fi
3373 fi
3374 if test "x$with_libnetsnmp" = "xyes"
3375 then
3376         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
3377         snmp_config_status=$?
3378
3379         if test $snmp_config_status -ne 0
3380         then
3381                 with_libnetsnmp="no ($with_snmp_config failed)"
3382         else
3383                 AC_CHECK_LIB(netsnmp, init_snmp,
3384                 [with_libnetsnmp="yes"],
3385                 [with_libnetsnmp="no (libnetsnmp not found)"],
3386                 [$with_snmp_libs])
3387         fi
3388 fi
3389 if test "x$with_libnetsnmp" = "xyes"
3390 then
3391         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
3392         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
3393         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
3394         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
3395 fi
3396 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
3397 # }}}
3398
3399 # --with-liboconfig {{{
3400 with_own_liboconfig="no"
3401 liboconfig_LDFLAGS="$LDFLAGS"
3402 liboconfig_CPPFLAGS="$CPPFLAGS"
3403 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3404 [
3405         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3406         then
3407                 if test -d "$withval/lib"
3408                 then
3409                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3410                 fi
3411                 if test -d "$withval/include"
3412                 then
3413                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3414                 fi
3415         fi
3416         if test "x$withval" = "xno"
3417         then
3418                 AC_MSG_ERROR("liboconfig is required")
3419         fi
3420 ],
3421 [
3422         with_liboconfig="yes"
3423 ])
3424
3425 save_LDFLAGS="$LDFLAGS"
3426 save_CPPFLAGS="$CPPFLAGS"
3427 LDFLAGS="$liboconfig_LDFLAGS"
3428 CPPFLAGS="$liboconfig_CPPFLAGS"
3429 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
3430 [
3431         with_liboconfig="yes"
3432         with_own_liboconfig="no"
3433 ],
3434 [
3435         with_liboconfig="yes"
3436         with_own_liboconfig="yes"
3437         LDFLAGS="$save_LDFLAGS"
3438         CPPFLAGS="$save_CPPFLAGS"
3439 ])
3440
3441 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3442 if test "x$with_own_liboconfig" = "xyes"
3443 then
3444         with_liboconfig="yes (shipped version)"
3445 fi
3446 # }}}
3447
3448 # --with-liboping {{{
3449 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3450 [
3451  if test "x$withval" = "xyes"
3452  then
3453          with_liboping="yes"
3454  else if test "x$withval" = "xno"
3455  then
3456          with_liboping="no"
3457  else
3458          with_liboping="yes"
3459          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3460          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3461  fi; fi
3462 ],
3463 [with_liboping="yes"])
3464
3465 SAVE_CPPFLAGS="$CPPFLAGS"
3466 SAVE_LDFLAGS="$LDFLAGS"
3467
3468 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3469 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3470
3471 if test "x$with_liboping" = "xyes"
3472 then
3473         if test "x$LIBOPING_CPPFLAGS" != "x"
3474         then
3475                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3476         fi
3477         AC_CHECK_HEADERS(oping.h,
3478         [with_liboping="yes"],
3479         [with_liboping="no (oping.h not found)"])
3480 fi
3481 if test "x$with_liboping" = "xyes"
3482 then
3483         if test "x$LIBOPING_LDFLAGS" != "x"
3484         then
3485                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3486         fi
3487         AC_CHECK_LIB(oping, ping_construct,
3488         [with_liboping="yes"],
3489         [with_liboping="no (symbol 'ping_construct' not found)"])
3490 fi
3491
3492 CPPFLAGS="$SAVE_CPPFLAGS"
3493 LDFLAGS="$SAVE_LDFLAGS"
3494
3495 if test "x$with_liboping" = "xyes"
3496 then
3497         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3498         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3499         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3500         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3501 fi
3502 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3503 # }}}
3504
3505 # --with-oracle {{{
3506 with_oracle_cppflags=""
3507 with_oracle_libs=""
3508 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3509 [
3510         if test "x$withval" = "xyes"
3511         then
3512                 if test "x$ORACLE_HOME" = "x"
3513                 then
3514                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3515                 fi
3516                 with_oracle="yes"
3517         else if test "x$withval" = "xno"
3518         then
3519                 with_oracle="no"
3520         else
3521                 with_oracle="yes"
3522                 ORACLE_HOME="$withval"
3523         fi; fi
3524 ],
3525 [
3526         if test "x$ORACLE_HOME" = "x"
3527         then
3528                 with_oracle="no (ORACLE_HOME is not set)"
3529         else
3530                 with_oracle="yes"
3531         fi
3532 ])
3533 if test "x$ORACLE_HOME" != "x"
3534 then
3535         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3536
3537         if test -e "$ORACLE_HOME/lib/ldflags"
3538         then
3539                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3540         fi
3541         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3542         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3543 fi
3544 if test "x$with_oracle" = "xyes"
3545 then
3546         SAVE_CPPFLAGS="$CPPFLAGS"
3547         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3548
3549         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3550
3551         CPPFLAGS="$SAVE_CPPFLAGS"
3552 fi
3553 if test "x$with_oracle" = "xyes"
3554 then
3555         SAVE_CPPFLAGS="$CPPFLAGS"
3556         SAVE_LIBS="$LIBS"
3557         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3558         LIBS="$LIBS $with_oracle_libs"
3559
3560         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3561
3562         CPPFLAGS="$SAVE_CPPFLAGS"
3563         LIBS="$SAVE_LIBS"
3564 fi
3565 if test "x$with_oracle" = "xyes"
3566 then
3567         BUILD_WITH_ORACLE_CPPFLAGS="$with_oracle_cppflags"
3568         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3569         AC_SUBST(BUILD_WITH_ORACLE_CPPFLAGS)
3570         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3571 fi
3572 # }}}
3573
3574 # --with-libowcapi {{{
3575 with_libowcapi_cppflags=""
3576 with_libowcapi_ldflags=""
3577 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3578 [
3579         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3580         then
3581                 with_libowcapi_cppflags="-I$withval/include"
3582                 with_libowcapi_ldflags="-L$withval/lib"
3583                 with_libowcapi="yes"
3584         else
3585                 with_libowcapi="$withval"
3586         fi
3587 ],
3588 [
3589         with_libowcapi="yes"
3590 ])
3591 if test "x$with_libowcapi" = "xyes"
3592 then
3593         SAVE_CPPFLAGS="$CPPFLAGS"
3594         CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
3595
3596         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3597
3598         CPPFLAGS="$SAVE_CPPFLAGS"
3599 fi
3600 if test "x$with_libowcapi" = "xyes"
3601 then
3602         SAVE_LDFLAGS="$LDFLAGS"
3603         SAVE_CPPFLAGS="$CPPFLAGS"
3604         LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
3605         CPPFLAGS="$with_libowcapi_cppflags"
3606
3607         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3608
3609         LDFLAGS="$SAVE_LDFLAGS"
3610         CPPFLAGS="$SAVE_CPPFLAGS"
3611 fi
3612 if test "x$with_libowcapi" = "xyes"
3613 then
3614         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3615         BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
3616         BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
3617         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3618         AC_SUBST(BUILD_WITH_LIBOWCAPI_LDFLAGS)
3619         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3620 fi
3621 # }}}
3622
3623 # --with-libpcap {{{
3624 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3625 [
3626         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3627         then
3628                 LDFLAGS="$LDFLAGS -L$withval/lib"
3629                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3630                 with_libpcap="yes"
3631         else
3632                 with_libpcap="$withval"
3633         fi
3634 ],
3635 [
3636         with_libpcap="yes"
3637 ])
3638 if test "x$with_libpcap" = "xyes"
3639 then
3640         AC_CHECK_LIB(pcap, pcap_open_live,
3641         [
3642                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3643         ], [with_libpcap="no (libpcap not found)"])
3644 fi
3645 if test "x$with_libpcap" = "xyes"
3646 then
3647         AC_CHECK_HEADERS(pcap.h,,
3648                          [with_libpcap="no (pcap.h not found)"])
3649 fi
3650 if test "x$with_libpcap" = "xyes"
3651 then
3652         AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3653                        [c_cv_libpcap_have_pcap_error_iface_not_up],
3654                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3655 [[[
3656 #include <pcap.h>
3657 ]]],
3658 [[[
3659   int val = PCAP_ERROR_IFACE_NOT_UP;
3660   return(val);
3661 ]]]
3662                        )],
3663                        [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3664                        [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3665 fi
3666 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3667 then
3668                 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3669 fi
3670 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3671 # }}}
3672
3673 # --with-libperl {{{
3674 perl_interpreter="perl"
3675 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3676 [
3677         if test -f "$withval" && test -x "$withval"
3678         then
3679                 perl_interpreter="$withval"
3680                 with_libperl="yes"
3681         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3682         then
3683                 LDFLAGS="$LDFLAGS -L$withval/lib"
3684                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3685                 perl_interpreter="$withval/bin/perl"
3686                 with_libperl="yes"
3687         else
3688                 with_libperl="$withval"
3689         fi; fi
3690 ],
3691 [
3692         with_libperl="yes"
3693 ])
3694
3695 AC_MSG_CHECKING([for perl])
3696 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3697 if test -x "$perl_interpreter"
3698 then
3699         AC_MSG_RESULT([yes ($perl_interpreter)])
3700 else
3701         perl_interpreter=""
3702         AC_MSG_RESULT([no])
3703 fi
3704
3705 AC_SUBST(PERL, "$perl_interpreter")
3706
3707 if test "x$with_libperl" = "xyes" \
3708         && test -n "$perl_interpreter"
3709 then
3710   SAVE_CFLAGS="$CFLAGS"
3711   SAVE_LIBS="$LIBS"
3712 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3713   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e perl_inc`
3714   PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3715   CFLAGS="$CFLAGS $PERL_CFLAGS"
3716   LIBS="$LIBS $PERL_LIBS"
3717
3718   AC_CACHE_CHECK([for libperl],
3719     [c_cv_have_libperl],
3720     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3721 [[[
3722 #define PERL_NO_GET_CONTEXT
3723 #include <EXTERN.h>
3724 #include <perl.h>
3725 #include <XSUB.h>
3726 ]]],
3727 [[[
3728        dTHX;
3729        load_module (PERL_LOADMOD_NOIMPORT,
3730                          newSVpv ("Collectd::Plugin::FooBar", 24),
3731                          Nullsv);
3732 ]]]
3733       )],
3734       [c_cv_have_libperl="yes"],
3735       [c_cv_have_libperl="no"]
3736     )
3737   )
3738
3739   if test "x$c_cv_have_libperl" = "xyes"
3740   then
3741           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3742           AC_SUBST(PERL_CFLAGS)
3743           AC_SUBST(PERL_LIBS)
3744   else
3745           with_libperl="no"
3746   fi
3747
3748   CFLAGS="$SAVE_CFLAGS"
3749   LIBS="$SAVE_LIBS"
3750 else if test -z "$perl_interpreter"; then
3751   with_libperl="no (no perl interpreter found)"
3752   c_cv_have_libperl="no"
3753 fi; fi
3754 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3755
3756 if test "x$with_libperl" = "xyes"
3757 then
3758         SAVE_CFLAGS="$CFLAGS"
3759         SAVE_LIBS="$LIBS"
3760         CFLAGS="$CFLAGS $PERL_CFLAGS"
3761         LIBS="$LIBS $PERL_LIBS"
3762
3763         AC_CACHE_CHECK([if perl supports ithreads],
3764                 [c_cv_have_perl_ithreads],
3765                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3766 [[[
3767 #include <EXTERN.h>
3768 #include <perl.h>
3769 #include <XSUB.h>
3770
3771 #if !defined(USE_ITHREADS)
3772 # error "Perl does not support ithreads!"
3773 #endif /* !defined(USE_ITHREADS) */
3774 ]]],
3775 [[[ ]]]
3776                         )],
3777                         [c_cv_have_perl_ithreads="yes"],
3778                         [c_cv_have_perl_ithreads="no"]
3779                 )
3780         )
3781
3782         if test "x$c_cv_have_perl_ithreads" = "xyes"
3783         then
3784                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3785         fi
3786
3787         CFLAGS="$SAVE_CFLAGS"
3788         LIBS="$SAVE_LIBS"
3789 fi
3790
3791 if test "x$with_libperl" = "xyes"
3792 then
3793         SAVE_CFLAGS="$CFLAGS"
3794         SAVE_LIBS="$LIBS"
3795         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3796         # (see issues #41 and #42)
3797         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3798         LIBS="$LIBS $PERL_LIBS"
3799
3800         AC_CACHE_CHECK([for broken Perl_load_module()],
3801                 [c_cv_have_broken_perl_load_module],
3802                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3803 [[[
3804 #define PERL_NO_GET_CONTEXT
3805 #include <EXTERN.h>
3806 #include <perl.h>
3807 #include <XSUB.h>
3808 ]]],
3809 [[[
3810                          dTHX;
3811                          load_module (PERL_LOADMOD_NOIMPORT,
3812                              newSVpv ("Collectd::Plugin::FooBar", 24),
3813                              Nullsv);
3814 ]]]
3815                         )],
3816                         [c_cv_have_broken_perl_load_module="no"],
3817                         [c_cv_have_broken_perl_load_module="yes"]
3818                 )
3819         )
3820
3821         CFLAGS="$SAVE_CFLAGS"
3822         LIBS="$SAVE_LIBS"
3823 fi
3824 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3825                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3826
3827 if test "x$with_libperl" = "xyes"
3828 then
3829         SAVE_CFLAGS="$CFLAGS"
3830         SAVE_LIBS="$LIBS"
3831         CFLAGS="$CFLAGS $PERL_CFLAGS"
3832         LIBS="$LIBS $PERL_LIBS"
3833
3834         AC_CHECK_MEMBER(
3835                 [struct mgvtbl.svt_local],
3836                 [have_struct_mgvtbl_svt_local="yes"],
3837                 [have_struct_mgvtbl_svt_local="no"],
3838                 [
3839 #include <EXTERN.h>
3840 #include <perl.h>
3841 #include <XSUB.h>
3842                 ])
3843
3844         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3845         then
3846                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3847                                   [Define if Perl's struct mgvtbl has member svt_local.])
3848         fi
3849
3850         CFLAGS="$SAVE_CFLAGS"
3851         LIBS="$SAVE_LIBS"
3852 fi
3853 # }}}
3854
3855 # --with-libpq {{{
3856 with_pg_config="pg_config"
3857 with_libpq_includedir=""
3858 with_libpq_libdir=""
3859 with_libpq_cppflags=""
3860 with_libpq_ldflags=""
3861 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3862         [Path to libpq.])],
3863 [
3864         if test "x$withval" = "xno"
3865         then
3866                 with_libpq="no"
3867         else if test "x$withval" = "xyes"
3868         then
3869                 with_libpq="yes"
3870         else
3871                 if test -f "$withval" && test -x "$withval";
3872                 then
3873                         with_pg_config="$withval"
3874                 else if test -x "$withval/bin/pg_config"
3875                 then
3876                         with_pg_config="$withval/bin/pg_config"
3877                 fi; fi
3878                 with_libpq="yes"
3879         fi; fi
3880 ],
3881 [
3882         with_libpq="yes"
3883 ])
3884 if test "x$with_libpq" = "xyes"
3885 then
3886         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3887         pg_config_status=$?
3888
3889         if test $pg_config_status -eq 0
3890         then
3891                 if test -n "$with_libpq_includedir"; then
3892                         for dir in $with_libpq_includedir; do
3893                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3894                         done
3895                 fi
3896         else
3897                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3898         fi
3899
3900         SAVE_CPPFLAGS="$CPPFLAGS"
3901         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3902
3903         AC_CHECK_HEADERS(libpq-fe.h, [],
3904                 [with_libpq="no (libpq-fe.h not found)"], [])
3905
3906         CPPFLAGS="$SAVE_CPPFLAGS"
3907 fi
3908 if test "x$with_libpq" = "xyes"
3909 then
3910         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3911         pg_config_status=$?
3912
3913         if test $pg_config_status -eq 0
3914         then
3915                 if test -n "$with_libpq_libdir"; then
3916                         for dir in $with_libpq_libdir; do
3917                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3918                         done
3919                 fi
3920         else
3921                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3922         fi
3923
3924         SAVE_LDFLAGS="$LDFLAGS"
3925         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3926
3927         AC_CHECK_LIB(pq, PQconnectdb,
3928                 [with_libpq="yes"],
3929                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3930
3931         AC_CHECK_LIB(pq, PQserverVersion,
3932                 [with_libpq="yes"],
3933                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3934
3935         LDFLAGS="$SAVE_LDFLAGS"
3936 fi
3937 if test "x$with_libpq" = "xyes"
3938 then
3939         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3940         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3941         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3942         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3943 fi
3944 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3945 # }}}
3946
3947 # --with-libprotobuf {{{
3948 with_libprotobuf_cppflags=""
3949 with_libprotobuf_ldflags=""
3950 AC_ARG_WITH([libprotobuf], [AS_HELP_STRING([--with-libprotobuf@<:@=PREFIX@:>@], [Path to libprotobuf.])],
3951   [
3952     if test "x$withval" != "xno" && test "x$withval" != "xyes"
3953     then
3954       with_libprotobuf_cppflags="-I$withval/include"
3955       with_libprotobuf_ldflags="-L$withval/lib"
3956       with_libprotobuf="yes"
3957     fi
3958     if test "x$withval" = "xno"
3959     then
3960       with_libprotobuf="no (disabled on command line)"
3961     fi
3962   ],
3963   [withval="yes"]
3964 )
3965 if test "x$withval" = "xyes"
3966 then
3967 PKG_CHECK_MODULES([PROTOBUF], [protobuf],
3968   [with_libprotobuf="yes"],
3969   [with_libprotobuf="no (pkg-config could not find libprotobuf)"]
3970 )
3971 fi
3972
3973 if test "x$withval" != "xno"
3974 then
3975   SAVE_LDFLAGS="$LDFLAGS"
3976   SAVE_LIBS="$LIBS"
3977   LDFLAGS="$with_libprotobuf_ldflags"
3978   LIBS="$PROTOBUF_LIBS $LIBS"
3979   AC_LANG_PUSH([C++])
3980   AC_CHECK_LIB([protobuf], [main],
3981     [
3982       SAVE_CPPFLAGS="$CPPFLAGS"
3983       CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
3984       if test "x$PROTOBUF_LIBS" = "x"
3985       then
3986         PROTOBUF_LIBS="-lprotobuf"
3987       fi
3988       AC_CHECK_HEADERS([google/protobuf/util/time_util.h],
3989         [with_libprotobuf="yes"],
3990         [with_libprotobuf="no (<google/protobuf/util/time_util.h> not found)"]
3991       )
3992       CPPFLAGS="$SAVE_CPPFLAGS"
3993     ],
3994     [with_libprotobuf="no (libprotobuf not found)"]
3995   )
3996   AC_LANG_POP([C++])
3997   LDFLAGS="$SAVE_LDFLAGS"
3998   LIBS="$SAVE_LIBS"
3999 fi
4000 BUILD_WITH_LIBPROTOBUF_CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4001 BUILD_WITH_LIBPROTOBUF_LDFLAGS="$with_libprotobuf_ldflags"
4002 BUILD_WITH_LIBPROTOBUF_LIBS="$PROTOBUF_LIBS"
4003 AC_SUBST([BUILD_WITH_LIBPROTOBUF_CPPFLAGS])
4004 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LDFLAGS])
4005 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LIBS])
4006 # }}}
4007
4008 # --with-libprotobuf-c {{{
4009 with_libprotobuf_c_cppflags=""
4010 with_libprotobuf_c_ldflags=""
4011 AC_ARG_WITH([libprotobuf-c], [AS_HELP_STRING([--with-libprotobuf-c@<:@=PREFIX@:>@], [Path to libprotobuf-c.])],
4012   [
4013     if test "x$withval" != "xno" && test "x$withval" != "xyes"
4014     then
4015       with_libprotobuf_c_cppflags="-I$withval/include"
4016       with_libprotobuf_c_ldflags="-L$withval/lib"
4017       with_libprotobuf_c="yes"
4018     fi
4019     if test "x$withval" = "xno"
4020     then
4021       with_libprotobuf_c="no (disabled on command line)"
4022     fi
4023   ],
4024   [withval="yes"]
4025 )
4026 if test "x$withval" = "xyes"
4027 then
4028 PKG_CHECK_MODULES([PROTOBUF_C], [libprotobuf-c],
4029   [with_libprotobuf_c="yes"],
4030   [with_libprotobuf_c="no (pkg-config could not find libprotobuf-c)"]
4031 )
4032 fi
4033
4034 if test "x$withval" != "xno"
4035 then
4036   SAVE_LDFLAGS="$LDFLAGS"
4037   SAVE_LIBS="$LIBS"
4038   LDFLAGS="$with_libprotobuf_c_ldflags"
4039   LIBS="$PROTOBUF_C_LIBS $LIBS"
4040   AC_CHECK_LIB([protobuf-c], [protobuf_c_message_pack],
4041     [
4042       SAVE_CPPFLAGS="$CPPFLAGS"
4043       CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4044       if test "x$PROTOBUF_C_LIBS" = "x"
4045       then
4046         PROTOBUF_C_LIBS="-lprotobuf-c"
4047       fi
4048       AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
4049         [
4050           with_libprotobuf_c="yes"
4051           break
4052         ],
4053         [with_libprotobuf_c="no (<protobuf-c.h> not found)"]
4054       )
4055       CPPFLAGS="$SAVE_CPPFLAGS"
4056     ],
4057     [with_libprotobuf_c="no (libprotobuf-c not found)"]
4058   )
4059   LDFLAGS="$SAVE_LDFLAGS"
4060   LIBS="$SAVE_LIBS"
4061 fi
4062 BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4063 BUILD_WITH_LIBPROTOBUF_C_LDFLAGS="$with_libprotobuf_c_ldflags"
4064 BUILD_WITH_LIBPROTOBUF_C_LIBS="$PROTOBUF_C_LIBS"
4065 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS])
4066 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LDFLAGS])
4067 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LIBS])
4068 # }}}
4069
4070 # --with-libpython {{{
4071 AC_ARG_VAR([LIBPYTHON_CPPFLAGS], [Preprocessor flags for libpython])
4072 AC_ARG_VAR([LIBPYTHON_LDFLAGS], [Linker flags for libpython])
4073 AC_ARG_VAR([LIBPYTHON_LIBS], [Libraries for libpython])
4074
4075 AC_ARG_WITH([libpython],
4076   [AS_HELP_STRING([--with-libpython],
4077     [if we should build with libpython @<:@default=yes@:>@])
4078   ],
4079   [with_libpython="$withval"],
4080   [with_libpython="check"]
4081 )
4082 if test "$with_libpython" != "no"; then
4083   if test "$LIBPYTHON_CPPFLAGS" = "" && test "$LIBPYTHON_LDFLAGS" = ""; then
4084     AC_ARG_VAR([PYTHON_CONFIG], [path to python-config])
4085     AC_PATH_PROGS([PYTHON_CONFIG],
4086       [python3-config python2-config python-config]
4087     )
4088     if test "$PYTHON_CONFIG" = ""; then
4089       if test "$with_libpython" = "yes"; then
4090         AC_MSG_ERROR([Unable to find python-config])
4091       fi
4092       with_libpython="no"
4093     fi
4094   fi
4095 fi
4096
4097 if test "$PYTHON_CONFIG" != ""; then
4098   LIBPYTHON_CPPFLAGS="`${PYTHON_CONFIG} --includes`"
4099   if test $? -ne 0; then
4100     with_libpython="no"
4101   fi
4102   LIBPYTHON_LDFLAGS="`${PYTHON_CONFIG} --ldflags`"
4103   if test $? -ne 0; then
4104     with_libpython="no"
4105   fi
4106   LIBPYTHON_LIBS="`${PYTHON_CONFIG} --libs`"
4107   if test $? -ne 0; then
4108     with_libpython="no"
4109   fi
4110 fi
4111
4112 if test "$with_libpython" != "xno"; then
4113   SAVE_CPPFLAGS="$CPPFLAGS"
4114   SAVE_LDFLAGS="$LDFLAGS"
4115   SAVE_LIBS="$LIBS"
4116   CPPFLAGS="$LIBPYTHON_CPPFLAGS $CPPFLAGS"
4117   LDFLAGS="$LIBPYTHON_LDFLAGS $LDFLAGS"
4118   LIBS="$LIBPYTHON_LIBS $LIBS"
4119   AC_CHECK_HEADERS([Python.h],
4120     [
4121       AC_MSG_CHECKING([for libpython])
4122       AC_LINK_IFELSE([AC_LANG_PROGRAM(
4123           [[#include <Python.h>]],
4124           [[Py_Initialize();]])
4125         ],
4126         [with_libpython="yes"],
4127         [with_libpython="no"]
4128       )
4129       AC_MSG_RESULT([$with_libpython])
4130     ],
4131     [with_libpython="no"]
4132   )
4133   CPPFLAGS="$SAVE_CPPFLAGS"
4134   LDFLAGS="$SAVE_LDFLAGS"
4135   LIBS="$SAVE_LIBS"
4136 fi
4137 # }}} --with-libpython
4138
4139 # --with-librabbitmq {{{
4140 with_librabbitmq_cppflags=""
4141 with_librabbitmq_ldflags=""
4142 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
4143 [
4144         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4145         then
4146                 with_librabbitmq_cppflags="-I$withval/include"
4147                 with_librabbitmq_ldflags="-L$withval/lib"
4148                 with_librabbitmq="yes"
4149         else
4150                 with_librabbitmq="$withval"
4151         fi
4152 ],
4153 [
4154         with_librabbitmq="yes"
4155 ])
4156 SAVE_CPPFLAGS="$CPPFLAGS"
4157 SAVE_LDFLAGS="$LDFLAGS"
4158 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4159 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4160 if test "x$with_librabbitmq" = "xyes"
4161 then
4162         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
4163 fi
4164 if test "x$with_librabbitmq" = "xyes"
4165 then
4166         # librabbitmq up to version 0.9.1 provides "library_errno", later
4167         # versions use "library_error". The library does not provide a version
4168         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
4169         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
4170                          [
4171 #if HAVE_STDLIB_H
4172 # include <stdlib.h>
4173 #endif
4174 #if HAVE_STDIO_H
4175 # include <stdio.h>
4176 #endif
4177 #if HAVE_STDINT_H
4178 # include <stdint.h>
4179 #endif
4180 #if HAVE_INTTYPES_H
4181 # include <inttypes.h>
4182 #endif
4183 #include <amqp.h>
4184                          ])
4185 fi
4186 if test "x$with_librabbitmq" = "xyes"
4187 then
4188         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
4189 fi
4190 if test "x$with_librabbitmq" = "xyes"
4191 then
4192         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
4193         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
4194         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
4195         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
4196         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
4197         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
4198         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
4199 fi
4200 CPPFLAGS="$SAVE_CPPFLAGS"
4201 LDFLAGS="$SAVE_LDFLAGS"
4202 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
4203
4204 with_amqp_tcp_socket="no"
4205 if test "x$with_librabbitmq" = "xyes"
4206 then
4207         SAVE_CPPFLAGS="$CPPFLAGS"
4208         SAVE_LDFLAGS="$LDFLAGS"
4209         SAVE_LIBS="$LIBS"
4210         CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4211         LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4212         LIBS="-lrabbitmq"
4213
4214         AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
4215         AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
4216         if test "x$with_amqp_tcp_socket" = "xyes"
4217         then
4218                 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
4219                                 [Define if librabbitmq provides the new TCP socket interface.])
4220         fi
4221
4222         AC_CHECK_DECLS(amqp_socket_close,
4223                                 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
4224                                 [[
4225 #include <amqp.h>
4226 #ifdef HAVE_AMQP_TCP_SOCKET_H
4227 # include <amqp_tcp_socket.h>
4228 #endif
4229 #ifdef HAVE_AMQP_SOCKET_H
4230 # include <amqp_socket.h>
4231 #endif
4232                                 ]])
4233
4234         CPPFLAGS="$SAVE_CPPFLAGS"
4235         LDFLAGS="$SAVE_LDFLAGS"
4236         LIBS="$SAVE_LIBS"
4237 fi
4238 # }}}
4239
4240 # --with-librdkafka {{{
4241 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
4242 [
4243   if test "x$withval" != "xno" && test "x$withval" != "xyes"
4244   then
4245     with_librdkafka_cppflags="-I$withval/include"
4246     with_librdkafka_ldflags="-L$withval/lib"
4247     with_librdkafka_rpath="$withval/lib"
4248     with_librdkafka="yes"
4249   else
4250     with_librdkafka="$withval"
4251   fi
4252 ],
4253 [
4254   with_librdkafka="yes"
4255 ])
4256 SAVE_CPPFLAGS="$CPPFLAGS"
4257 SAVE_LDFLAGS="$LDFLAGS"
4258
4259 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
4260 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
4261
4262 if test "x$with_librdkafka" = "xyes"
4263 then
4264         AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
4265 fi
4266
4267 if test "x$with_librdkafka" = "xyes"
4268 then
4269         AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
4270   AC_CHECK_LIB(rdkafka, rd_kafka_conf_set_log_cb, [with_librdkafka_log_cb="yes"], [with_librdkafka_log_cb="no"])
4271   AC_CHECK_LIB(rdkafka, rd_kafka_set_logger, [with_librdkafka_logger="yes"], [with_librdkafka_logger="no"])
4272 fi
4273 if test "x$with_librdkafka" = "xyes"
4274 then
4275         BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
4276         BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
4277         if test "x$with_librdkafka_rpath" != "x"
4278         then
4279                 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
4280         else
4281                 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
4282         fi
4283         AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
4284         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
4285         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
4286         AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
4287   if test "x$with_librdkafka_log_cb" = "xyes"
4288   then
4289         AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
4290   fi
4291   if test "x$with_librdkafka_logger" = "xyes"
4292   then
4293         AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
4294   fi
4295 fi
4296 CPPFLAGS="$SAVE_CPPFLAGS"
4297 LDFLAGS="$SAVE_LDFLAGS"
4298 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
4299
4300 # }}}
4301
4302 # --with-librouteros {{{
4303 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
4304 [
4305  if test "x$withval" = "xyes"
4306  then
4307          with_librouteros="yes"
4308  else if test "x$withval" = "xno"
4309  then
4310          with_librouteros="no"
4311  else
4312          with_librouteros="yes"
4313          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
4314          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
4315  fi; fi
4316 ],
4317 [with_librouteros="yes"])
4318
4319 SAVE_CPPFLAGS="$CPPFLAGS"
4320 SAVE_LDFLAGS="$LDFLAGS"
4321
4322 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
4323 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
4324
4325 if test "x$with_librouteros" = "xyes"
4326 then
4327         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
4328         then
4329                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
4330         fi
4331         AC_CHECK_HEADERS(routeros_api.h,
4332         [with_librouteros="yes"],
4333         [with_librouteros="no (routeros_api.h not found)"])
4334 fi
4335 if test "x$with_librouteros" = "xyes"
4336 then
4337         if test "x$LIBROUTEROS_LDFLAGS" != "x"
4338         then
4339                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
4340         fi
4341         AC_CHECK_LIB(routeros, ros_interface,
4342         [with_librouteros="yes"],
4343         [with_librouteros="no (symbol 'ros_interface' not found)"])
4344 fi
4345
4346 CPPFLAGS="$SAVE_CPPFLAGS"
4347 LDFLAGS="$SAVE_LDFLAGS"
4348
4349 if test "x$with_librouteros" = "xyes"
4350 then
4351         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
4352         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
4353         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
4354         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
4355 fi
4356 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
4357 # }}}
4358
4359 # --with-librrd {{{
4360 librrd_cflags=""
4361 librrd_ldflags=""
4362 librrd_threadsafe="no"
4363 librrd_rrdc_update="no"
4364 AC_ARG_WITH(librrd,
4365   [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4366   [
4367     if test "x$withval" != "xno" && test "x$withval" != "xyes"
4368     then
4369       librrd_cflags="-I$withval/include"
4370       librrd_ldflags="-L$withval/lib"
4371       with_librrd="yes"
4372     else
4373       with_librrd="$withval"
4374     fi
4375   ],
4376   [with_librrd="yes"]
4377 )
4378
4379 if test "x$with_librrd" = "xyes"
4380 then
4381   SAVE_LDFLAGS="$LDFLAGS"
4382   LDFLAGS="$LDFLAGS $librrd_ldflags"
4383   PKG_CHECK_MODULES([RRD], [librrd >= 1.6.0],
4384     [
4385       AC_CHECK_LIB([rrd], [rrd_update_r],
4386         [librrd_threadsafe="yes"],
4387         [:]
4388       )
4389       AC_CHECK_LIB([rrd], [rrdc_update],
4390         [librrd_rrdc_update="yes"],
4391         [:]
4392       )
4393     ],[:]
4394   )
4395   LDFLAGS="$SAVE_LDFLAGS"
4396
4397   SAVE_CPPFLAGS="$CPPFLAGS"
4398   CPPFLAGS="$CPPFLAGS $RRD_CFLAGS $librrd_cflags"
4399
4400   AC_CHECK_HEADERS([rrd.h],, [with_librrd="no (rrd.h not found)"])
4401
4402   CPPFLAGS="$SAVE_CPPFLAGS"
4403 fi
4404
4405 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4406 then
4407   SAVE_LDFLAGS="$LDFLAGS"
4408   LDFLAGS="$LDFLAGS $librrd_ldflags"
4409
4410   AC_CHECK_LIB([rrd_th], [rrd_update_r],
4411     [
4412       librrd_ldflags="$librrd_ldflags -lrrd_th"
4413       librrd_threadsafe="yes"
4414       AC_CHECK_LIB([rrd_th], [rrdc_update],
4415         [librrd_rrdc_update="yes"],
4416         [:],
4417       )
4418     ],
4419     [:]
4420   )
4421   LDFLAGS="$SAVE_LDFLAGS"
4422 fi
4423
4424 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4425 then
4426   SAVE_LDFLAGS="$LDFLAGS"
4427   LDFLAGS="$LDFLAGS $librrd_ldflags"
4428
4429   AC_CHECK_LIB([rrd], [rrd_update],
4430     [
4431       librrd_ldflags="$librrd_ldflags -lrrd"
4432       AC_CHECK_LIB([rrd], [rrdc_update],
4433         [librrd_rrdc_update="yes"],
4434         [:]
4435       )
4436     ],
4437     [with_librrd="no (symbol 'rrd_update' not found)"]
4438   )
4439   LDFLAGS="$SAVE_LDFLAGS"
4440 fi
4441
4442 if test "x$with_librrd" = "xyes"
4443 then
4444   BUILD_WITH_LIBRRD_CFLAGS="$RRD_CFLAGS $librrd_cflags"
4445   BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4446   BUILD_WITH_LIBRRD_LIBS="$RRD_LIBS"
4447   AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
4448   AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
4449   AC_SUBST(BUILD_WITH_LIBRRD_LIBS)
4450 fi
4451 if test "x$librrd_threadsafe" = "xyes"
4452 then
4453   AC_DEFINE([HAVE_THREADSAFE_LIBRRD], [1],
4454     [Define to 1 if the rrd library is thread-safe]
4455   )
4456 fi
4457 # }}}
4458
4459 # --with-libsensors {{{
4460 with_sensors_cflags=""
4461 with_sensors_ldflags=""
4462 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4463 [
4464         if test "x$withval" = "xno"
4465         then
4466                 with_libsensors="no"
4467         else
4468                 with_libsensors="yes"
4469                 if test "x$withval" != "xyes"
4470                 then
4471                         with_sensors_cflags="-I$withval/include"
4472                         with_sensors_ldflags="-L$withval/lib"
4473                         with_libsensors="yes"
4474                 fi
4475         fi
4476 ],
4477 [
4478         if test "x$ac_system" = "xLinux"
4479         then
4480                 with_libsensors="yes"
4481         else
4482                 with_libsensors="no (Linux only library)"
4483         fi
4484 ])
4485 if test "x$with_libsensors" = "xyes"
4486 then
4487         SAVE_CPPFLAGS="$CPPFLAGS"
4488         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4489
4490         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
4491
4492         CPPFLAGS="$SAVE_CPPFLAGS"
4493 fi
4494 if test "x$with_libsensors" = "xyes"
4495 then
4496         SAVE_CPPFLAGS="$CPPFLAGS"
4497         SAVE_LDFLAGS="$LDFLAGS"
4498         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4499         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4500
4501         AC_CHECK_LIB(sensors, sensors_init,
4502         [
4503                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
4504         ],
4505         [with_libsensors="no (libsensors not found)"])
4506
4507         CPPFLAGS="$SAVE_CPPFLAGS"
4508         LDFLAGS="$SAVE_LDFLAGS"
4509 fi
4510 if test "x$with_libsensors" = "xyes"
4511 then
4512         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
4513         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4514         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
4515         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
4516 fi
4517 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
4518 # }}}
4519
4520 # libsigrok {{{
4521 AC_SUBST([LIBSIGROK_CFLAGS])
4522 AC_SUBST([LIBSIGROK_LIBS])
4523 PKG_CHECK_MODULES([LIBSIGROK], [libsigrok < 0.4],
4524   [with_libsigrok="yes"],
4525   [with_libsigrok="no (pkg-config could not find libsigrok)"]
4526 )
4527 # }}}
4528
4529 # --with-libstatgrab {{{
4530 with_libstatgrab_cflags=""
4531 with_libstatgrab_ldflags=""
4532 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4533 [
4534  if test "x$withval" != "xno" \
4535    && test "x$withval" != "xyes"
4536  then
4537    with_libstatgrab_cflags="-I$withval/include"
4538    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4539    with_libstatgrab="yes"
4540    with_libstatgrab_pkg_config="no"
4541  else
4542    with_libstatgrab="$withval"
4543    with_libstatgrab_pkg_config="yes"
4544  fi
4545  ],
4546 [
4547  with_libstatgrab="yes"
4548  with_libstatgrab_pkg_config="yes"
4549 ])
4550
4551 if test "x$with_libstatgrab" = "xyes" \
4552   && test "x$with_libstatgrab_pkg_config" = "xyes"
4553 then
4554   AC_MSG_CHECKING([pkg-config for libstatgrab])
4555   temp_result="found"
4556   $PKG_CONFIG --exists libstatgrab 2>/dev/null
4557   if test "$?" != "0"
4558   then
4559     with_libstatgrab_pkg_config="no"
4560     with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4561     temp_result="not found"
4562   fi
4563   AC_MSG_RESULT([$temp_result])
4564 fi
4565
4566 if test "x$with_libstatgrab" = "xyes" \
4567   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4568   && test "x$with_libstatgrab_cflags" = "x"
4569 then
4570   AC_MSG_CHECKING([for libstatgrab CFLAGS])
4571   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4572   if test "$?" = "0"
4573   then
4574     with_libstatgrab_cflags="$temp_result"
4575   else
4576     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4577     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4578   fi
4579   AC_MSG_RESULT([$temp_result])
4580 fi
4581
4582 if test "x$with_libstatgrab" = "xyes" \
4583   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4584   && test "x$with_libstatgrab_ldflags" = "x"
4585 then
4586   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4587   temp_result="`$PKG_CONFIG --libs libstatgrab`"
4588   if test "$?" = "0"
4589   then
4590     with_libstatgrab_ldflags="$temp_result"
4591   else
4592     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4593     temp_result="$PKG_CONFIG --libs libstatgrab failed"
4594   fi
4595   AC_MSG_RESULT([$temp_result])
4596 fi
4597
4598 if test "x$with_libstatgrab" = "xyes"
4599 then
4600   SAVE_CPPFLAGS="$CPPFLAGS"
4601   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4602
4603   AC_CHECK_HEADERS(statgrab.h,
4604                    [with_libstatgrab="yes"],
4605                    [with_libstatgrab="no (statgrab.h not found)"])
4606
4607   CPPFLAGS="$SAVE_CPPFLAGS"
4608 fi
4609
4610 if test "x$with_libstatgrab" = "xyes"
4611 then
4612   SAVE_CFLAGS="$CFLAGS"
4613   SAVE_LDFLAGS="$LDFLAGS"
4614
4615   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4616   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4617
4618   AC_CHECK_LIB(statgrab, sg_init,
4619                [with_libstatgrab="yes"],
4620                [with_libstatgrab="no (symbol sg_init not found)"])
4621
4622   CFLAGS="$SAVE_CFLAGS"
4623   LDFLAGS="$SAVE_LDFLAGS"
4624 fi
4625
4626 if test "x$with_libstatgrab" = "xyes"
4627 then
4628   SAVE_CFLAGS="$CFLAGS"
4629   SAVE_LDFLAGS="$LDFLAGS"
4630   SAVE_LIBS="$LIBS"
4631
4632   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4633   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4634   LIBS="-lstatgrab $LIBS"
4635
4636   AC_CACHE_CHECK([if libstatgrab >= 0.90],
4637           [c_cv_have_libstatgrab_0_90],
4638           AC_LINK_IFELSE([AC_LANG_PROGRAM(
4639 [[[
4640 #include <stdio.h>
4641 #include <statgrab.h>
4642 ]]],
4643 [[[
4644       if (sg_init()) return 0;
4645 ]]]
4646     )],
4647     [c_cv_have_libstatgrab_0_90="no"],
4648     [c_cv_have_libstatgrab_0_90="yes"]
4649           )
4650   )
4651
4652   CFLAGS="$SAVE_CFLAGS"
4653   LDFLAGS="$SAVE_LDFLAGS"
4654   LIBS="$SAVE_LIBS"
4655 fi
4656
4657 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
4658 if test "x$with_libstatgrab" = "xyes"
4659 then
4660   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
4661   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4662   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
4663   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
4664   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
4665   if test "x$c_cv_have_libstatgrab_0_90" = "xyes"
4666   then
4667         AC_DEFINE(HAVE_LIBSTATGRAB_0_90, 1, [Define to 1 if libstatgrab version >= 0.90])
4668   fi
4669 fi
4670 # }}}
4671
4672 # --with-libtokyotyrant {{{
4673 with_libtokyotyrant_cppflags=""
4674 with_libtokyotyrant_ldflags=""
4675 with_libtokyotyrant_libs=""
4676 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4677 [
4678   if test "x$withval" = "xno"
4679   then
4680     with_libtokyotyrant="no"
4681   else if test "x$withval" = "xyes"
4682   then
4683     with_libtokyotyrant="yes"
4684   else
4685     with_libtokyotyrant_cppflags="-I$withval/include"
4686     with_libtokyotyrant_ldflags="-L$withval/include"
4687     with_libtokyotyrant_libs="-ltokyotyrant"
4688     with_libtokyotyrant="yes"
4689   fi; fi
4690 ],
4691 [
4692   with_libtokyotyrant="yes"
4693 ])
4694
4695 if test "x$with_libtokyotyrant" = "xyes"
4696 then
4697   if $PKG_CONFIG --exists tokyotyrant
4698   then
4699     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
4700     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
4701     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
4702   fi
4703 fi
4704
4705 SAVE_CPPFLAGS="$CPPFLAGS"
4706 SAVE_LDFLAGS="$LDFLAGS"
4707 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
4708 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
4709
4710 if test "x$with_libtokyotyrant" = "xyes"
4711 then
4712   AC_CHECK_HEADERS(tcrdb.h,
4713   [
4714           AC_DEFINE(HAVE_TCRDB_H, 1,
4715                     [Define to 1 if you have the <tcrdb.h> header file.])
4716   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
4717 fi
4718
4719 if test "x$with_libtokyotyrant" = "xyes"
4720 then
4721   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4722   [
4723           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4724                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4725   ],
4726   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4727   [$with_libtokyotyrant_libs])
4728 fi
4729
4730 CPPFLAGS="$SAVE_CPPFLAGS"
4731 LDFLAGS="$SAVE_LDFLAGS"
4732
4733 if test "x$with_libtokyotyrant" = "xyes"
4734 then
4735   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4736   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4737   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4738   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4739   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4740   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4741 fi
4742 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4743 # }}}
4744
4745 # --with-libudev {{{
4746 with_libudev_cflags=""
4747 with_libudev_ldflags=""
4748 AC_ARG_WITH(libudev, [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
4749 [
4750         if test "x$withval" = "xno"
4751         then
4752                 with_libudev="no"
4753         else
4754                 with_libudev="yes"
4755                 if test "x$withval" != "xyes"
4756                 then
4757                         with_libudev_cflags="-I$withval/include"
4758                         with_libudev_ldflags="-L$withval/lib"
4759                         with_libudev="yes"
4760                 fi
4761         fi
4762 ],
4763 [
4764         if test "x$ac_system" = "xLinux"
4765         then
4766                 with_libudev="yes"
4767         else
4768                 with_libudev="no (Linux only library)"
4769         fi
4770 ])
4771 if test "x$with_libudev" = "xyes"
4772 then
4773         SAVE_CPPFLAGS="$CPPFLAGS"
4774         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4775
4776         AC_CHECK_HEADERS(libudev.h, [], [with_libudev="no (libudev.h not found)"])
4777
4778         CPPFLAGS="$SAVE_CPPFLAGS"
4779 fi
4780 if test "x$with_libudev" = "xyes"
4781 then
4782         SAVE_CPPFLAGS="$CPPFLAGS"
4783         SAVE_LDFLAGS="$LDFLAGS"
4784         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4785         LDFLAGS="$LDFLAGS $with_libudev_ldflags"
4786
4787         AC_CHECK_LIB(udev, udev_new,
4788         [
4789                 AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if you have the udev library (-ludev).])
4790         ],
4791         [with_libudev="no (libudev not found)"])
4792
4793         CPPFLAGS="$SAVE_CPPFLAGS"
4794         LDFLAGS="$SAVE_LDFLAGS"
4795 fi
4796 if test "x$with_libudev" = "xyes"
4797 then
4798         BUILD_WITH_LIBUDEV_CFLAGS="$with_libudev_cflags"
4799         BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
4800         BUILD_WITH_LIBUDEV_LIBS="-ludev"
4801         AC_SUBST(BUILD_WITH_LIBUDEV_CFLAGS)
4802         AC_SUBST(BUILD_WITH_LIBUDEV_LDFLAGS)
4803         AC_SUBST(BUILD_WITH_LIBUDEV_LIBS)
4804 fi
4805 AM_CONDITIONAL(BUILD_WITH_LIBUDEV, test "x$with_libudev" = "xyes")
4806 # }}}
4807
4808 # --with-libupsclient {{{
4809 with_libupsclient_config=""
4810 with_libupsclient_cflags=""
4811 with_libupsclient_libs=""
4812 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4813 [
4814         if test "x$withval" = "xno"
4815         then
4816                 with_libupsclient="no"
4817         else if test "x$withval" = "xyes"
4818         then
4819                 with_libupsclient="use_pkgconfig"
4820         else
4821                 if test -x "$withval"
4822                 then
4823                         with_libupsclient_config="$withval"
4824                         with_libupsclient="use_libupsclient_config"
4825                 else if test -x "$withval/bin/libupsclient-config"
4826                 then
4827                         with_libupsclient_config="$withval/bin/libupsclient-config"
4828                         with_libupsclient="use_libupsclient_config"
4829                 else
4830                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4831                         with_libupsclient_cflags="-I$withval/include"
4832                         with_libupsclient_libs="-L$withval/lib -lupsclient"
4833                         with_libupsclient="yes"
4834                 fi; fi
4835         fi; fi
4836 ],
4837 [with_libupsclient="use_pkgconfig"])
4838
4839 # configure using libupsclient-config
4840 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4841 then
4842         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4843         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4844         if test $? -ne 0
4845         then
4846                 with_libupsclient="no ($with_libupsclient_config failed)"
4847         fi
4848         with_libupsclient_libs="`$with_libupsclient_config --libs`"
4849         if test $? -ne 0
4850         then
4851                 with_libupsclient="no ($with_libupsclient_config failed)"
4852         fi
4853 fi
4854 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4855 then
4856         with_libupsclient="yes"
4857 fi
4858
4859 # configure using pkg-config
4860 if test "x$with_libupsclient" = "xuse_pkgconfig"
4861 then
4862         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4863         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4864         if test $? -ne 0
4865         then
4866                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4867         fi
4868 fi
4869 if test "x$with_libupsclient" = "xuse_pkgconfig"
4870 then
4871         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4872         if test $? -ne 0
4873         then
4874                 with_libupsclient="no ($PKG_CONFIG failed)"
4875         fi
4876         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4877         if test $? -ne 0
4878         then
4879                 with_libupsclient="no ($PKG_CONFIG failed)"
4880         fi
4881 fi
4882 if test "x$with_libupsclient" = "xuse_pkgconfig"
4883 then
4884         with_libupsclient="yes"
4885 fi
4886
4887 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4888 # the actual checks.
4889 if test "x$with_libupsclient" = "xyes"
4890 then
4891         SAVE_CPPFLAGS="$CPPFLAGS"
4892         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4893
4894         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4895
4896         CPPFLAGS="$SAVE_CPPFLAGS"
4897 fi
4898 if test "x$with_libupsclient" = "xyes"
4899 then
4900         SAVE_CPPFLAGS="$CPPFLAGS"
4901         SAVE_LDFLAGS="$LDFLAGS"
4902
4903         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4904         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4905
4906         AC_CHECK_LIB(upsclient, upscli_connect,
4907                      [with_libupsclient="yes"],
4908                      [with_libupsclient="no (symbol upscli_connect not found)"])
4909
4910         CPPFLAGS="$SAVE_CPPFLAGS"
4911         LDFLAGS="$SAVE_LDFLAGS"
4912 fi
4913 if test "x$with_libupsclient" = "xyes"
4914 then
4915         SAVE_CPPFLAGS="$CPPFLAGS"
4916         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4917
4918         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4919 [#include <stdlib.h>
4920 #include <stdio.h>
4921 #include <upsclient.h>])
4922
4923         CPPFLAGS="$SAVE_CPPFLAGS"
4924 fi
4925 if test "x$with_libupsclient" = "xyes"
4926 then
4927         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4928         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4929         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4930         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4931 fi
4932 # }}}
4933
4934 # --with-libxenctrl {{{
4935 with_libxenctrl_cppflags=""
4936 with_libxenctrl_ldflags=""
4937 AC_ARG_WITH(libxenctrl, [AS_HELP_STRING([--with-libxenctrl@<:@=PREFIX@:>@], [Path to libxenctrl.])],
4938 [
4939         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4940         then
4941                 with_libxenctrl_cppflags="-I$withval/include"
4942                 with_libxenctrl_ldflags="-L$withval/lib"
4943                 with_libxenctrl="yes"
4944         else
4945                 with_libxenctrl="$withval"
4946         fi
4947 ],
4948 [
4949         with_libxenctrl="yes"
4950 ])
4951 if test "x$with_libxenctrl" = "xyes"
4952 then
4953         SAVE_CPPFLAGS="$CPPFLAGS"
4954         CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
4955
4956         AC_CHECK_HEADERS(xenctrl.h, [with_libxenctrl="yes"], [with_libxenctrl="no (xenctrl.h not found)"])
4957
4958         CPPFLAGS="$SAVE_CPPFLAGS"
4959 fi
4960 if test "x$with_libxenctrl" = "xyes"
4961 then
4962         SAVE_CPPFLAGS="$CPPFLAGS"
4963         SAVE_LDFLAGS="$LDFLAGS"
4964         CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
4965         LDFLAGS="$LDFLAGS $with_libxenctrl_ldflags"
4966
4967         #Xen versions older than 3.4 has no xc_getcpuinfo()
4968         AC_CHECK_LIB(xenctrl, xc_getcpuinfo, [with_libxenctrl="yes"], [with_libxenctrl="no (symbol 'xc_getcpuinfo' not found)"], [])
4969
4970         CPPFLAGS="$SAVE_CPPFLAGS"
4971         LDFLAGS="$SAVE_LDFLAGS"
4972         LIBXENCTL_CPPFLAGS="$with_libxenctl_cppflags"
4973         LIBXENCTL_LDFLAGS="$with_libxenctl_ldflags"
4974         AC_SUBST(LIBXENCTL_CPPFLAGS)
4975         AC_SUBST(LIBXENCTL_LDFLAGS)
4976 fi
4977 # }}}
4978
4979 # --with-libxmms {{{
4980 with_xmms_config="xmms-config"
4981 with_xmms_cflags=""
4982 with_xmms_libs=""
4983 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4984 [
4985         if test "x$withval" != "xno" \
4986                 && test "x$withval" != "xyes"
4987         then
4988                 if test -f "$withval" && test -x "$withval";
4989                 then
4990                         with_xmms_config="$withval"
4991                 else if test -x "$withval/bin/xmms-config"
4992                 then
4993                         with_xmms_config="$withval/bin/xmms-config"
4994                 fi; fi
4995                 with_libxmms="yes"
4996         else if test "x$withval" = "xno"
4997         then
4998                 with_libxmms="no"
4999         else
5000                 with_libxmms="yes"
5001         fi; fi
5002 ],
5003 [
5004         with_libxmms="yes"
5005 ])
5006 if test "x$with_libxmms" = "xyes"
5007 then
5008         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
5009         xmms_config_status=$?
5010
5011         if test $xmms_config_status -ne 0
5012         then
5013                 with_libxmms="no"
5014         fi
5015 fi
5016 if test "x$with_libxmms" = "xyes"
5017 then
5018         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
5019         xmms_config_status=$?
5020
5021         if test $xmms_config_status -ne 0
5022         then
5023                 with_libxmms="no"
5024         fi
5025 fi
5026 if test "x$with_libxmms" = "xyes"
5027 then
5028         AC_CHECK_LIB(xmms, xmms_remote_get_info,
5029         [
5030                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
5031                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
5032                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
5033                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
5034         ],
5035         [
5036                 with_libxmms="no"
5037         ],
5038         [$with_xmms_libs])
5039 fi
5040 with_libxmms_numeric=0
5041 if test "x$with_libxmms" = "xyes"
5042 then
5043         with_libxmms_numeric=1
5044 fi
5045 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
5046 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
5047 # }}}
5048
5049 # --with-libyajl {{{
5050 with_libyajl_cppflags=""
5051 with_libyajl_ldflags=""
5052 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
5053 [
5054         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5055         then
5056                 with_libyajl_cppflags="-I$withval/include"
5057                 with_libyajl_ldflags="-L$withval/lib"
5058                 with_libyajl="yes"
5059         else
5060                 with_libyajl="$withval"
5061         fi
5062 ],
5063 [
5064         with_libyajl="yes"
5065 ])
5066 if test "x$with_libyajl" = "xyes"
5067 then
5068         SAVE_CPPFLAGS="$CPPFLAGS"
5069         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5070
5071         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
5072         AC_CHECK_HEADERS(yajl/yajl_version.h)
5073
5074         CPPFLAGS="$SAVE_CPPFLAGS"
5075 fi
5076 if test "x$with_libyajl" = "xyes"
5077 then
5078         SAVE_CPPFLAGS="$CPPFLAGS"
5079         SAVE_LDFLAGS="$LDFLAGS"
5080         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5081         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
5082
5083         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
5084
5085         CPPFLAGS="$SAVE_CPPFLAGS"
5086         LDFLAGS="$SAVE_LDFLAGS"
5087 fi
5088 if test "x$with_libyajl" = "xyes"
5089 then
5090         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
5091         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
5092         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
5093         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
5094         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
5095         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
5096         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
5097 fi
5098 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
5099 # }}}
5100
5101 # --with-mic {{{
5102 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
5103 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
5104 with_mic_libs=""
5105 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
5106 [
5107         if test "x$withval" = "xno"
5108         then
5109                 with_mic="no"
5110         else if test "x$withval" = "xyes"
5111         then
5112                 with_mic="yes"
5113         else if test -d "$with_mic/lib"
5114         then
5115                 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
5116                 with_mic_cflags="-I$withval/include"
5117                 with_mic_ldpath="-L$withval/lib/Linux"
5118                 with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"
5119                 with_mic="yes"
5120         fi; fi; fi
5121 ],
5122 [with_mic="yes"])
5123 if test "x$with_mic" = "xyes"
5124 then
5125         SAVE_CPPFLAGS="$CPPFLAGS"
5126         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5127         AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
5128         CPPFLAGS="$SAVE_CPPFLAGS"
5129 fi
5130 if test "x$with_mic" = "xyes"
5131 then
5132         SAVE_CPPFLAGS="$CPPFLAGS"
5133         SAVE_LDFLAGS="$LDFLAGS"
5134
5135         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5136         LDFLAGS="$LDFLAGS $with_mic_ldpath"
5137
5138         AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
5139                         [with_mic_ldpath="$with_mic_ldpath"
5140                         with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"],
5141                         [with_mic="no (symbol MicInitAPI not found)"],[$PTHREAD_LIBS -lscif])
5142
5143         CPPFLAGS="$SAVE_CPPFLAGS"
5144         LDFLAGS="$SAVE_LDFLAGS"
5145 fi
5146
5147 if test "x$with_mic" = "xyes"
5148 then
5149         BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
5150         BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
5151         BUILD_WITH_MIC_LDADD="$with_mic_libs"
5152         AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
5153         AC_SUBST(BUILD_WITH_MIC_LIBPATH)
5154         AC_SUBST(BUILD_WITH_MIC_LDADD)
5155 fi
5156 #}}}
5157
5158 # --with-libvarnish {{{
5159 with_libvarnish_cppflags=""
5160 with_libvarnish_cflags=""
5161 with_libvarnish_libs=""
5162 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
5163 [
5164         if test "x$withval" = "xno"
5165         then
5166                 with_libvarnish="no"
5167         else if test "x$withval" = "xyes"
5168         then
5169                 with_libvarnish="use_pkgconfig"
5170         else if test -d "$with_libvarnish/lib"
5171         then
5172                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
5173                 with_libvarnish_cflags="-I$withval/include"
5174                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
5175                 with_libvarnish="yes"
5176         fi; fi; fi
5177 ],
5178 [with_libvarnish="use_pkgconfig"])
5179
5180 # configure using pkg-config
5181 if test "x$with_libvarnish" = "xuse_pkgconfig"
5182 then
5183         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
5184         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
5185         if test $? -ne 0
5186         then
5187                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
5188         fi
5189 fi
5190 if test "x$with_libvarnish" = "xuse_pkgconfig"
5191 then
5192         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
5193         if test $? -ne 0
5194         then
5195                 with_libvarnish="no ($PKG_CONFIG failed)"
5196         fi
5197         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
5198         if test $? -ne 0
5199         then
5200                 with_libvarnish="no ($PKG_CONFIG failed)"
5201         fi
5202 fi
5203 if test "x$with_libvarnish" = "xuse_pkgconfig"
5204 then
5205         with_libvarnish="yes"
5206 fi
5207
5208 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
5209 # the actual checks.
5210 if test "x$with_libvarnish" = "xyes"
5211 then
5212         SAVE_CPPFLAGS="$CPPFLAGS"
5213
5214         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
5215
5216         AC_CHECK_HEADERS(vapi/vsc.h,
5217                 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
5218                 [AC_CHECK_HEADERS(vsc.h,
5219                         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
5220                         [AC_CHECK_HEADERS(varnishapi.h,
5221                                 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
5222                                 [with_libvarnish="no (found none of the varnish header files)"])])])
5223
5224         CPPFLAGS="$SAVE_CPPFLAGS"
5225 fi
5226 if test "x$with_libvarnish" = "xyes"
5227 then
5228         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
5229         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
5230         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
5231         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
5232 fi
5233 # }}}
5234
5235 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
5236 with_libxml2="no (pkg-config isn't available)"
5237 with_libxml2_cflags=""
5238 with_libxml2_ldflags=""
5239 with_libvirt="no (pkg-config isn't available)"
5240 with_libvirt_cflags=""
5241 with_libvirt_ldflags=""
5242 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
5243 if test "$?" = "0"
5244 then
5245         with_libxml2="yes"
5246 else
5247         with_libxml2="no (pkg-config doesn't know libxml-2.0)"
5248 fi
5249
5250 $PKG_CONFIG --exists libvirt 2>/dev/null
5251 if test "$?" = "0"
5252 then
5253         with_libvirt="yes"
5254 else
5255         with_libvirt="no (pkg-config doesn't know libvirt)"
5256 fi
5257 if test "x$with_libxml2" = "xyes"
5258 then
5259         with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
5260         if test $? -ne 0
5261         then
5262                 with_libxml2="no"
5263         fi
5264         with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
5265         if test $? -ne 0
5266         then
5267                 with_libxml2="no"
5268         fi
5269 fi
5270 if test "x$with_libxml2" = "xyes"
5271 then
5272         SAVE_CPPFLAGS="$CPPFLAGS"
5273         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
5274
5275         AC_CHECK_HEADERS(libxml/parser.h, [],
5276                       [with_libxml2="no (libxml/parser.h not found)"])
5277
5278         CPPFLAGS="$SAVE_CPPFLAGS"
5279 fi
5280 if test "x$with_libxml2" = "xyes"
5281 then
5282         SAVE_CFLAGS="$CFLAGS"
5283         SAVE_LDFLAGS="$LDFLAGS"
5284
5285         CFLAGS="$CFLAGS $with_libxml2_cflags"
5286         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
5287
5288         AC_CHECK_LIB(xml2, xmlXPathEval,
5289                      [with_libxml2="yes"],
5290                      [with_libxml2="no (symbol xmlXPathEval not found)"])
5291
5292         CFLAGS="$SAVE_CFLAGS"
5293         LDFLAGS="$SAVE_LDFLAGS"
5294 fi
5295 dnl Add the right compiler flags and libraries.
5296 if test "x$with_libxml2" = "xyes"; then
5297         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
5298         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
5299         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
5300         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
5301 fi
5302 if test "x$with_libvirt" = "xyes"
5303 then
5304         with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
5305         if test $? -ne 0
5306         then
5307                 with_libvirt="no"
5308         fi
5309         with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
5310         if test $? -ne 0
5311         then
5312                 with_libvirt="no"
5313         fi
5314 fi
5315 if test "x$with_libvirt" = "xyes"
5316 then
5317         SAVE_CPPFLAGS="$CPPFLAGS"
5318         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
5319
5320         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
5321                       [with_libvirt="no (libvirt/libvirt.h not found)"])
5322
5323         CPPFLAGS="$SAVE_CPPFLAGS"
5324 fi
5325 if test "x$with_libvirt" = "xyes"
5326 then
5327         SAVE_CFLAGS="$CFLAGS"
5328         SAVE_LDFLAGS="$LDFLAGS"
5329
5330         CFLAGS="$CFLAGS $with_libvirt_cflags"
5331         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
5332
5333         AC_CHECK_LIB(virt, virDomainBlockStats,
5334                      [with_libvirt="yes"],
5335                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
5336
5337         CFLAGS="$SAVE_CFLAGS"
5338         LDFLAGS="$SAVE_LDFLAGS"
5339 fi
5340 dnl Add the right compiler flags and libraries.
5341 if test "x$with_libvirt" = "xyes"; then
5342         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
5343         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
5344         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
5345         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
5346 fi
5347 # }}}
5348
5349 # $PKG_CONFIG --exists OpenIPMIpthread {{{
5350 with_libopenipmipthread="yes"
5351 with_libopenipmipthread_cflags=""
5352 with_libopenipmipthread_libs=""
5353
5354 if test "x$with_libopenipmipthread" = "xyes"
5355 then
5356         AC_MSG_CHECKING([for libOpenIPMIpthread])
5357         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
5358         if test "$?" != "0"
5359         then
5360                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
5361         fi
5362         AC_MSG_RESULT([$with_libopenipmipthread])
5363 fi
5364
5365 if test "x$with_libopenipmipthread" = "xyes"
5366 then
5367         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
5368         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
5369         if test "$?" = "0"
5370         then
5371                 with_libopenipmipthread_cflags="$temp_result"
5372         else
5373                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
5374                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
5375         fi
5376         AC_MSG_RESULT([$temp_result])
5377 fi
5378
5379 if test "x$with_libopenipmipthread" = "xyes"
5380 then
5381         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
5382         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
5383         if test "$?" = "0"
5384         then
5385                 with_libopenipmipthread_ldflags="$temp_result"
5386         else
5387                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
5388                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
5389         fi
5390         AC_MSG_RESULT([$temp_result])
5391 fi
5392
5393 if test "x$with_libopenipmipthread" = "xyes"
5394 then
5395         SAVE_CPPFLAGS="$CPPFLAGS"
5396         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
5397
5398         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
5399                          [with_libopenipmipthread="yes"],
5400                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
5401 [#include <OpenIPMI/ipmiif.h>
5402 #include <OpenIPMI/ipmi_err.h>
5403 #include <OpenIPMI/ipmi_posix.h>
5404 #include <OpenIPMI/ipmi_conn.h>
5405 ])
5406
5407         CPPFLAGS="$SAVE_CPPFLAGS"
5408 fi
5409
5410 if test "x$with_libopenipmipthread" = "xyes"
5411 then
5412         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
5413         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
5414         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
5415         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
5416 fi
5417 # }}}
5418
5419 # --with-libatasmart {{{
5420 with_libatasmart_cppflags=""
5421 with_libatasmart_ldflags=""
5422 AC_ARG_WITH(libatasmart, [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
5423 [
5424         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5425         then
5426                 with_libatasmart_cppflags="-I$withval/include"
5427                 with_libatasmart_ldflags="-L$withval/lib"
5428                 with_libatasmart="yes"
5429         else
5430                 with_libatasmart="$withval"
5431         fi
5432 ],
5433 [
5434         if test "x$ac_system" = "xLinux"
5435         then
5436                 with_libatasmart="yes"
5437         else
5438                 with_libatasmart="no (Linux only library)"
5439         fi
5440 ])
5441 if test "x$with_libatasmart" = "xyes"
5442 then
5443         SAVE_CPPFLAGS="$CPPFLAGS"
5444         CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5445
5446         AC_CHECK_HEADERS(atasmart.h, [with_libatasmart="yes"], [with_libatasmart="no (atasmart.h not found)"])
5447
5448         CPPFLAGS="$SAVE_CPPFLAGS"
5449 fi
5450 if test "x$with_libatasmart" = "xyes"
5451 then
5452         SAVE_CPPFLAGS="$CPPFLAGS"
5453         SAVE_LDFLAGS="$LDFLAGS"
5454         CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5455         LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
5456
5457         AC_CHECK_LIB(atasmart, sk_disk_open, [with_libatasmart="yes"], [with_libatasmart="no (Symbol 'sk_disk_open' not found)"])
5458
5459         CPPFLAGS="$SAVE_CPPFLAGS"
5460         LDFLAGS="$SAVE_LDFLAGS"
5461 fi
5462 if test "x$with_libatasmart" = "xyes"
5463 then
5464         BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
5465         BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
5466         BUILD_WITH_LIBATASMART_LIBS="-latasmart"
5467         AC_SUBST(BUILD_WITH_LIBATASMART_CPPFLAGS)
5468         AC_SUBST(BUILD_WITH_LIBATASMART_LDFLAGS)
5469         AC_SUBST(BUILD_WITH_LIBATASMART_LIBS)
5470         AC_DEFINE(HAVE_LIBATASMART, 1, [Define if libatasmart is present and usable.])
5471 fi
5472 AM_CONDITIONAL(BUILD_WITH_LIBATASMART, test "x$with_libatasmart" = "xyes")
5473 # }}}
5474
5475 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
5476                 [with_libnotify="yes"],
5477                 [with_libnotify="no (pkg-config doesn't know libnotify)"]
5478 )
5479
5480 PKG_CHECK_MODULES([LIBRIEMANN_CLIENT], [riemann-client >= 1.8.0],
5481  [with_libriemann_client="yes"],
5482  [with_libriemann_client="no (pkg-config doesn't know libriemann-client)"])
5483
5484 # Check for enabled/disabled features
5485 #
5486
5487 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
5488 # ------------------------------------------------------------
5489 dnl
5490 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
5491 dnl
5492 AC_DEFUN(
5493         [AC_COLLECTD],
5494         [
5495         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
5496         m4_if(
5497                 [$2],
5498                 [enable],
5499                 [dnl
5500                 m4_define([EnDis],[disabled])dnl
5501                 m4_define([YesNo],[no])dnl
5502                 ],dnl
5503                 [m4_if(
5504                         [$2],
5505                         [disable],
5506                         [dnl
5507                         m4_define([EnDis],[enabled])dnl
5508                         m4_define([YesNo],[yes])dnl
5509                         ],
5510                         [dnl
5511                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
5512                         ]dnl
5513                 )]dnl
5514         )dnl
5515         m4_if([$3], [feature], [],
5516                 [m4_if(
5517                         [$3], [module], [],
5518                         [dnl
5519                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
5520                         ]dnl
5521                 )]dnl
5522         )dnl
5523         AC_ARG_ENABLE(
5524                 [$1],
5525                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
5526                 [],
5527                 enable_$1='[YesNo]'dnl
5528         )# AC_ARG_ENABLE
5529 if test "x$enable_$1" = "xno"
5530 then
5531         collectd_$1=0
5532 else
5533         if test "x$enable_$1" = "xyes"
5534         then
5535                 collectd_$1=1
5536         else
5537                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
5538                 collectd_$1=1
5539                 enable_$1='yes'
5540         fi
5541 fi
5542         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
5543         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
5544         ]dnl
5545 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
5546
5547 # AC_PLUGIN(name, default, info)
5548 # ------------------------------------------------------------
5549 dnl
5550 AC_DEFUN(
5551   [AC_PLUGIN],
5552   [
5553     enable_plugin="no"
5554     force="no"
5555     AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
5556     [
5557      if test "x$enableval" = "xyes"
5558      then
5559              enable_plugin="yes"
5560      else if test "x$enableval" = "xforce"
5561      then
5562              enable_plugin="yes"
5563              force="yes"
5564      else
5565              enable_plugin="no (disabled on command line)"
5566      fi; fi
5567     ],
5568     [
5569          if test "x$enable_all_plugins" = "xauto"
5570          then
5571              if test "x$2" = "xyes"
5572              then
5573                      enable_plugin="yes"
5574              else
5575                      enable_plugin="$2"
5576              fi
5577          else
5578              enable_plugin="$enable_all_plugins"
5579          fi
5580     ])
5581     if test "x$enable_plugin" = "xyes"
5582     then
5583             if test "x$2" = "xyes" || test "x$force" = "xyes"
5584             then
5585                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
5586                     if test "x$2" != "xyes"
5587                     then
5588                             dependency_warning="yes"
5589                     fi
5590             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
5591                     dependency_error="yes"
5592                     enable_plugin="$2 (dependency error)"
5593             fi
5594     fi
5595     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
5596     enable_$1="$enable_plugin"
5597   ]
5598 )# AC_PLUGIN(name, default, info)
5599
5600 m4_divert_once([HELP_ENABLE], [
5601 collectd features:])
5602 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
5603 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
5604 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
5605 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
5606 AC_COLLECTD([werror],    [disable], [feature], [building with -Werror])
5607
5608 dependency_warning="no"
5609 dependency_error="no"
5610
5611 plugin_ascent="no"
5612 plugin_barometer="no"
5613 plugin_battery="no"
5614 plugin_bind="no"
5615 plugin_ceph="no"
5616 plugin_cgroups="no"
5617 plugin_conntrack="no"
5618 plugin_contextswitch="no"
5619 plugin_cpu="no"
5620 plugin_cpufreq="no"
5621 plugin_cpusleep="no"
5622 plugin_curl_json="no"
5623 plugin_curl_xml="no"
5624 plugin_df="no"
5625 plugin_disk="no"
5626 plugin_drbd="no"
5627 plugin_entropy="no"
5628 plugin_ethstat="no"
5629 plugin_fhcount="no"
5630 plugin_fscache="no"
5631 plugin_gps="no"
5632 plugin_grpc="no"
5633 plugin_interface="no"
5634 plugin_ipmi="no"
5635 plugin_ipvs="no"
5636 plugin_irq="no"
5637 plugin_load="no"
5638 plugin_log_logstash="no"
5639 plugin_memory="no"
5640 plugin_multimeter="no"
5641 plugin_nfs="no"
5642 plugin_numa="no"
5643 plugin_perl="no"
5644 plugin_pinba="no"
5645 plugin_processes="no"
5646 plugin_protocols="no"
5647 plugin_python="no"
5648 plugin_serial="no"
5649 plugin_smart="no"
5650 plugin_swap="no"
5651 plugin_tape="no"
5652 plugin_tcpconns="no"
5653 plugin_ted="no"
5654 plugin_thermal="no"
5655 plugin_turbostat="no"
5656 plugin_uptime="no"
5657 plugin_users="no"
5658 plugin_virt="no"
5659 plugin_vmem="no"
5660 plugin_vserver="no"
5661 plugin_wireless="no"
5662 plugin_xencpu="no"
5663 plugin_zfs_arc="no"
5664 plugin_zone="no"
5665 plugin_zookeeper="no"
5666
5667 # Linux
5668 if test "x$ac_system" = "xLinux"
5669 then
5670         plugin_battery="yes"
5671         plugin_cgroups="yes"
5672         plugin_conntrack="yes"
5673         plugin_contextswitch="yes"
5674         plugin_cpu="yes"
5675         plugin_cpufreq="yes"
5676         plugin_disk="yes"
5677         plugin_drbd="yes"
5678         plugin_entropy="yes"
5679         plugin_fhcount="yes"
5680         plugin_fscache="yes"
5681         plugin_interface="yes"
5682         plugin_ipc="yes"
5683         plugin_irq="yes"
5684         plugin_load="yes"
5685         plugin_lvm="yes"
5686         plugin_memory="yes"
5687         plugin_nfs="yes"
5688         plugin_numa="yes"
5689         plugin_processes="yes"
5690         plugin_protocols="yes"
5691         plugin_serial="yes"
5692         plugin_swap="yes"
5693         plugin_tcpconns="yes"
5694         plugin_thermal="yes"
5695         plugin_uptime="yes"
5696         plugin_vmem="yes"
5697         plugin_vserver="yes"
5698         plugin_wireless="yes"
5699         plugin_zfs_arc="yes"
5700
5701         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
5702         then
5703                 plugin_ipvs="yes"
5704         fi
5705         if test "x$c_cv_have_usable_asm_msrindex_h" = "xyes" && test "x$have_cpuid_h" = "xyes"
5706         then
5707                 plugin_turbostat="yes"
5708         fi
5709         
5710         if test "x$c_cv_have_clock_boottime_monotonic" = "xyes"
5711         then
5712                 plugin_cpusleep="yes"
5713         fi
5714 fi
5715
5716 if test "x$ac_system" = "xOpenBSD"
5717 then
5718         plugin_tcpconns="yes"
5719 fi
5720
5721 if test "x$ac_system" = "xNetBSD"
5722 then
5723         plugin_disk="yes"
5724         plugin_entropy="yes"
5725         plugin_irq="yes"
5726         plugin_processes="yes"
5727 fi
5728
5729 # Mac OS X devices
5730 if test "x$with_libiokit" = "xyes"
5731 then
5732         plugin_battery="yes"
5733         plugin_disk="yes"
5734 fi
5735
5736 # AIX
5737
5738 if test "x$ac_system" = "xAIX"
5739 then
5740         plugin_ipc="yes"
5741         plugin_tcpconns="yes"
5742 fi
5743
5744 # FreeBSD
5745
5746 if test "x$ac_system" = "xFreeBSD"
5747 then
5748         plugin_disk="yes"
5749         plugin_zfs_arc="yes"
5750 fi
5751
5752
5753 if test "x$with_perfstat" = "xyes"
5754 then
5755         plugin_contextswitch="yes"
5756         plugin_cpu="yes"
5757         plugin_disk="yes"
5758         plugin_interface="yes"
5759         plugin_load="yes"
5760         plugin_memory="yes"
5761         plugin_swap="yes"
5762         plugin_uptime="yes"
5763 fi
5764
5765 if test "x$with_procinfo" = "xyes"
5766 then
5767         plugin_processes="yes"
5768 fi
5769
5770 # Solaris
5771 if test "x$with_kstat" = "xyes"
5772 then
5773         plugin_nfs="yes"
5774         plugin_processes="yes"
5775         plugin_uptime="yes"
5776         plugin_zfs_arc="yes"
5777         plugin_zone="yes"
5778 fi
5779
5780 if test "x$with_devinfo$with_kstat" = "xyesyes"
5781 then
5782         plugin_cpu="yes"
5783         plugin_disk="yes"
5784         plugin_interface="yes"
5785         plugin_memory="yes"
5786         plugin_tape="yes"
5787 fi
5788
5789 # libi2c-dev
5790 if test "x$ac_system" = "xLinux"
5791 then
5792 AC_CHECK_DECL(i2c_smbus_read_i2c_block_data,
5793         [with_libi2c="yes"],
5794         [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
5795         [[#include <stdlib.h>
5796         #include <linux/i2c-dev.h>]])
5797 else
5798         with_libi2c="no (Linux only)"
5799 fi
5800
5801 if test "x$with_libi2c" = "xyes"
5802 then
5803         plugin_barometer="yes"
5804 fi
5805
5806
5807 # libstatgrab
5808 if test "x$with_libstatgrab" = "xyes"
5809 then
5810         plugin_cpu="yes"
5811         plugin_disk="yes"
5812         plugin_interface="yes"
5813         plugin_load="yes"
5814         plugin_memory="yes"
5815         plugin_swap="yes"
5816         plugin_users="yes"
5817 fi
5818
5819 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5820 then
5821         plugin_ascent="yes"
5822         if test "x$have_strptime" = "xyes"
5823         then
5824                 plugin_bind="yes"
5825         fi
5826 fi
5827
5828 if test "x$with_libopenipmipthread" = "xyes"
5829 then
5830         plugin_ipmi="yes"
5831 fi
5832
5833 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
5834 then
5835         plugin_curl_json="yes"
5836 fi
5837
5838 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5839 then
5840         plugin_curl_xml="yes"
5841 fi
5842
5843 if test "x$with_libyajl" = "xyes"
5844 then
5845         plugin_ceph="yes"
5846 fi
5847
5848 if test "x$have_processor_info" = "xyes"
5849 then
5850         plugin_cpu="yes"
5851 fi
5852 if test "x$have_sysctl" = "xyes"
5853 then
5854         plugin_cpu="yes"
5855         plugin_memory="yes"
5856         plugin_uptime="yes"
5857         if test "x$ac_system" = "xDarwin"
5858         then
5859                 plugin_swap="yes"
5860         fi
5861 fi
5862 if test "x$have_sysctlbyname" = "xyes"
5863 then
5864         plugin_contextswitch="yes"
5865         plugin_cpu="yes"
5866         plugin_memory="yes"
5867         plugin_tcpconns="yes"
5868 fi
5869
5870 # Df plugin: Check if we know how to determine mount points first.
5871 #if test "x$have_listmntent" = "xyes"; then
5872 #       plugin_df="yes"
5873 #fi
5874 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
5875 then
5876         plugin_df="yes"
5877 fi
5878 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
5879 then
5880         plugin_df="yes"
5881 fi
5882 #if test "x$have_getmntent" = "xseq"
5883 #then
5884 #       plugin_df="yes"
5885 #fi
5886 if test "x$c_cv_have_one_getmntent" = "xyes"
5887 then
5888         plugin_df="yes"
5889 fi
5890
5891 if test "x$c_cv_have_getmntent_r" = "xyes"
5892 then
5893         plugin_df="yes"
5894 fi
5895
5896 # Df plugin: Check if we have either `statfs' or `statvfs' second.
5897 if test "x$plugin_df" = "xyes"
5898 then
5899         plugin_df="no"
5900         if test "x$have_statfs" = "xyes"
5901         then
5902                 plugin_df="yes"
5903         fi
5904         if test "x$have_statvfs" = "xyes"
5905         then
5906                 plugin_df="yes"
5907         fi
5908 fi
5909
5910 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
5911 then
5912         plugin_ethstat="yes"
5913 fi
5914
5915 if test "x$with_libgrpcpp" = "xyes" && test "x$with_libprotobuf" = "xyes" && test "x$have_protoc3" = "xyes" && test "x$GRPC_CPP_PLUGIN" != "x"
5916 then
5917         plugin_grpc="yes"
5918 fi
5919
5920 if test "x$have_getifaddrs" = "xyes"
5921 then
5922         plugin_interface="yes"
5923 fi
5924
5925 if test "x$with_libgps" = "xyes"
5926 then
5927         plugin_gps="yes"
5928 fi
5929
5930 if test "x$have_getloadavg" = "xyes"
5931 then
5932         plugin_load="yes"
5933 fi
5934
5935 if test "x$with_libyajl" = "xyes"
5936 then
5937         plugin_log_logstash="yes"
5938 fi
5939
5940 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
5941 then
5942         plugin_perl="yes"
5943 fi
5944
5945 if test "x$have_protoc_c" = "xyes" && test "x$with_libprotobuf_c" = "xyes"
5946 then
5947         plugin_pinba="yes"
5948 fi
5949
5950 # Mac OS X memory interface
5951 if test "x$have_host_statistics" = "xyes"
5952 then
5953         plugin_memory="yes"
5954 fi
5955
5956 if test "x$have_termios_h" = "xyes"
5957 then
5958         if test "x$ac_system" != "xAIX"
5959         then
5960                 plugin_multimeter="yes"
5961         fi
5962         plugin_ted="yes"
5963 fi
5964
5965 if test "x$have_thread_info" = "xyes"
5966 then
5967         plugin_processes="yes"
5968 fi
5969
5970 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
5971 then
5972         plugin_processes="yes"
5973 fi
5974
5975 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"
5976 then
5977         plugin_processes="yes"
5978 fi
5979
5980 if test "x$with_libpython" != "xno"
5981 then
5982         plugin_python="yes"
5983 fi
5984
5985 if test "x$with_libatasmart" = "xyes" && test "x$with_libudev" = "xyes"
5986 then
5987         plugin_smart="yes"
5988 fi
5989
5990 if test "x$with_kvm_getswapinfo" = "xyes"
5991 then
5992         plugin_swap="yes"
5993 fi
5994
5995 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
5996 then
5997         plugin_swap="yes"
5998 fi
5999
6000 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_three_args" = "xyes"
6001 then
6002         plugin_swap="yes"
6003 fi
6004
6005 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
6006 then
6007         plugin_tcpconns="yes"
6008 fi
6009
6010 if test "x$have_getutent" = "xyes"
6011 then
6012         plugin_users="yes"
6013 fi
6014 if test "x$have_getutxent" = "xyes"
6015 then
6016         plugin_users="yes"
6017 fi
6018
6019 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
6020 then
6021         plugin_virt="yes"
6022 fi
6023
6024 if test "x$with_libxenctrl" = "xyes"
6025 then
6026   plugin_xencpu="yes"
6027 fi
6028
6029 m4_divert_once([HELP_ENABLE], [
6030 collectd plugins:])
6031
6032 AC_ARG_ENABLE([all-plugins],
6033                 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
6034                 [
6035                  if test "x$enableval" = "xyes"
6036                  then
6037                          enable_all_plugins="yes"
6038                  else if test "x$enableval" = "xauto"
6039                  then
6040                          enable_all_plugins="auto"
6041                  else
6042                          enable_all_plugins="no"
6043                  fi; fi
6044                 ],
6045                 [enable_all_plugins="auto"])
6046
6047 m4_divert_once([HELP_ENABLE], [])
6048
6049 AC_PLUGIN([aggregation],         [yes],                     [Aggregation plugin])
6050 AC_PLUGIN([amqp],                [$with_librabbitmq],       [AMQP output plugin])
6051 AC_PLUGIN([apache],              [$with_libcurl],           [Apache httpd statistics])
6052 AC_PLUGIN([apcups],              [yes],                     [Statistics of UPSes by APC])
6053 AC_PLUGIN([apple_sensors],       [$with_libiokit],          [Apple hardware sensors])
6054 AC_PLUGIN([aquaero],             [$with_libaquaero5],       [Aquaero hardware sensors])
6055 AC_PLUGIN([ascent],              [$plugin_ascent],          [AscentEmu player statistics])
6056 AC_PLUGIN([barometer],           [$plugin_barometer],       [Barometer sensor on I2C])
6057 AC_PLUGIN([battery],             [$plugin_battery],         [Battery statistics])
6058 AC_PLUGIN([bind],                [$plugin_bind],            [ISC Bind nameserver statistics])
6059 AC_PLUGIN([ceph],                [$plugin_ceph],            [Ceph daemon statistics])
6060 AC_PLUGIN([cgroups],             [$plugin_cgroups],         [CGroups CPU usage accounting])
6061 AC_PLUGIN([chrony],              [yes],                     [Chrony statistics])
6062 AC_PLUGIN([conntrack],           [$plugin_conntrack],       [nf_conntrack statistics])
6063 AC_PLUGIN([contextswitch],       [$plugin_contextswitch],   [context switch statistics])
6064 AC_PLUGIN([cpu],                 [$plugin_cpu],             [CPU usage statistics])
6065 AC_PLUGIN([cpufreq],             [$plugin_cpufreq],         [CPU frequency statistics])
6066 AC_PLUGIN([cpusleep],            [$plugin_cpusleep],        [CPU sleep statistics])
6067 AC_PLUGIN([csv],                 [yes],                     [CSV output plugin])
6068 AC_PLUGIN([curl],                [$with_libcurl],           [CURL generic web statistics])
6069 AC_PLUGIN([curl_json],           [$plugin_curl_json],       [CouchDB statistics])
6070 AC_PLUGIN([curl_xml],            [$plugin_curl_xml],        [CURL generic xml statistics])
6071 AC_PLUGIN([dbi],                 [$with_libdbi],            [General database statistics])
6072 AC_PLUGIN([df],                  [$plugin_df],              [Filesystem usage statistics])
6073 AC_PLUGIN([disk],                [$plugin_disk],            [Disk usage statistics])
6074 AC_PLUGIN([dns],                 [$with_libpcap],           [DNS traffic analysis])
6075 AC_PLUGIN([drbd],                [$plugin_drbd],            [DRBD statistics])
6076 AC_PLUGIN([email],               [yes],                     [EMail statistics])
6077 AC_PLUGIN([entropy],             [$plugin_entropy],         [Entropy statistics])
6078 AC_PLUGIN([ethstat],             [$plugin_ethstat],         [Stats from NIC driver])
6079 AC_PLUGIN([exec],                [yes],                     [Execution of external programs])
6080 AC_PLUGIN([fhcount],             [$plugin_fhcount],         [File handles statistics])
6081 AC_PLUGIN([filecount],           [yes],                     [Count files in directories])
6082 AC_PLUGIN([fscache],             [$plugin_fscache],         [fscache statistics])
6083 AC_PLUGIN([gmond],               [$with_libganglia],        [Ganglia plugin])
6084 AC_PLUGIN([gps],                 [$plugin_gps],             [GPS plugin])
6085 AC_PLUGIN([grpc],                [$plugin_grpc],            [gRPC plugin])
6086 AC_PLUGIN([hddtemp],             [yes],                     [Query hddtempd])
6087 AC_PLUGIN([interface],           [$plugin_interface],       [Interface traffic statistics])
6088 AC_PLUGIN([ipc],                 [$plugin_ipc],             [IPC statistics])
6089 AC_PLUGIN([ipmi],                [$plugin_ipmi],            [IPMI sensor statistics])
6090 AC_PLUGIN([iptables],            [$with_libiptc],           [IPTables rule counters])
6091 AC_PLUGIN([ipvs],                [$plugin_ipvs],            [IPVS connection statistics])
6092 AC_PLUGIN([irq],                 [$plugin_irq],             [IRQ statistics])
6093 AC_PLUGIN([java],                [$with_java],              [Embed the Java Virtual Machine])
6094 AC_PLUGIN([load],                [$plugin_load],            [System load])
6095 AC_PLUGIN([log_logstash],        [$plugin_log_logstash],    [Logstash json_event compatible logging])
6096 AC_PLUGIN([logfile],             [yes],                     [File logging plugin])
6097 AC_PLUGIN([lpar],                [$with_perfstat],          [AIX logical partitions statistics])
6098 AC_PLUGIN([lvm],                 [$with_liblvm2app],        [LVM statistics])
6099 AC_PLUGIN([madwifi],             [$have_linux_wireless_h],  [Madwifi wireless statistics])
6100 AC_PLUGIN([match_empty_counter], [yes],                     [The empty counter match])
6101 AC_PLUGIN([match_hashed],        [yes],                     [The hashed match])
6102 AC_PLUGIN([match_regex],         [yes],                     [The regex match])
6103 AC_PLUGIN([match_timediff],      [yes],                     [The timediff match])
6104 AC_PLUGIN([match_value],         [yes],                     [The value match])
6105 AC_PLUGIN([mbmon],               [yes],                     [Query mbmond])
6106 AC_PLUGIN([md],                  [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
6107 AC_PLUGIN([memcachec],           [$with_libmemcached],      [memcachec statistics])
6108 AC_PLUGIN([memcached],           [yes],                     [memcached statistics])
6109 AC_PLUGIN([memory],              [$plugin_memory],          [Memory usage])
6110 AC_PLUGIN([mic],                 [$with_mic],               [Intel Many Integrated Core stats])
6111 AC_PLUGIN([modbus],              [$with_libmodbus],         [Modbus plugin])
6112 AC_PLUGIN([mqtt],                [$with_libmosquitto],      [MQTT output plugin])
6113 AC_PLUGIN([multimeter],          [$plugin_multimeter],      [Read multimeter values])
6114 AC_PLUGIN([mysql],               [$with_libmysql],          [MySQL statistics])
6115 AC_PLUGIN([netapp],              [$with_libnetapp],         [NetApp plugin])
6116 AC_PLUGIN([netlink],             [$with_libmnl],            [Enhanced Linux network statistics])
6117 AC_PLUGIN([network],             [yes],                     [Network communication plugin])
6118 AC_PLUGIN([nfs],                 [$plugin_nfs],             [NFS statistics])
6119 AC_PLUGIN([nginx],               [$with_libcurl],           [nginx statistics])
6120 AC_PLUGIN([notify_desktop],      [$with_libnotify],         [Desktop notifications])
6121 AC_PLUGIN([notify_email],        [$with_libesmtp],          [Email notifier])
6122 AC_PLUGIN([notify_nagios],       [yes],                     [Nagios notification plugin])
6123 AC_PLUGIN([ntpd],                [yes],                     [NTPd statistics])
6124 AC_PLUGIN([numa],                [$plugin_numa],            [NUMA virtual memory statistics])
6125 AC_PLUGIN([nut],                 [$with_libupsclient],      [Network UPS tools statistics])
6126 AC_PLUGIN([olsrd],               [yes],                     [olsrd statistics])
6127 AC_PLUGIN([onewire],             [$with_libowcapi],         [OneWire sensor statistics])
6128 AC_PLUGIN([openldap],            [$with_libldap],           [OpenLDAP statistics])
6129 AC_PLUGIN([openvpn],             [yes],                     [OpenVPN client statistics])
6130 AC_PLUGIN([oracle],              [$with_oracle],            [Oracle plugin])
6131 AC_PLUGIN([perl],                [$plugin_perl],            [Embed a Perl interpreter])
6132 AC_PLUGIN([pf],                  [$have_net_pfvar_h],       [BSD packet filter (PF) statistics])
6133 # FIXME: Check for libevent, too.
6134 AC_PLUGIN([pinba],               [$plugin_pinba],           [Pinba statistics])
6135 AC_PLUGIN([ping],                [$with_liboping],          [Network latency statistics])
6136 AC_PLUGIN([postgresql],          [$with_libpq],             [PostgreSQL database statistics])
6137 AC_PLUGIN([powerdns],            [yes],                     [PowerDNS statistics])
6138 AC_PLUGIN([processes],           [$plugin_processes],       [Process statistics])
6139 AC_PLUGIN([protocols],           [$plugin_protocols],       [Protocol (IP, TCP, ...) statistics])
6140 AC_PLUGIN([python],              [$plugin_python],          [Embed a Python interpreter])
6141 AC_PLUGIN([redis],               [$with_libhiredis],        [Redis plugin])
6142 AC_PLUGIN([routeros],            [$with_librouteros],       [RouterOS plugin])
6143 AC_PLUGIN([rrdcached],           [$librrd_rrdc_update],     [RRDTool output plugin])
6144 AC_PLUGIN([rrdtool],             [$with_librrd],            [RRDTool output plugin])
6145 AC_PLUGIN([sensors],             [$with_libsensors],        [lm_sensors statistics])
6146 AC_PLUGIN([serial],              [$plugin_serial],          [serial port traffic])
6147 AC_PLUGIN([sigrok],              [$with_libsigrok],         [sigrok acquisition sources])
6148 AC_PLUGIN([smart],               [$plugin_smart],           [SMART statistics])
6149 AC_PLUGIN([snmp],                [$with_libnetsnmp],        [SNMP querying plugin])
6150 AC_PLUGIN([statsd],              [yes],                     [StatsD plugin])
6151 AC_PLUGIN([swap],                [$plugin_swap],            [Swap usage statistics])
6152 AC_PLUGIN([syslog],              [$have_syslog],            [Syslog logging plugin])
6153 AC_PLUGIN([table],               [yes],                     [Parsing of tabular data])
6154 AC_PLUGIN([tail],                [yes],                     [Parsing of logfiles])
6155 AC_PLUGIN([tail_csv],            [yes],                     [Parsing of CSV files])
6156 AC_PLUGIN([tape],                [$plugin_tape],            [Tape drive statistics])
6157 AC_PLUGIN([target_notification], [yes],                     [The notification target])
6158 AC_PLUGIN([target_replace],      [yes],                     [The replace target])
6159 AC_PLUGIN([target_scale],        [yes],                     [The scale target])
6160 AC_PLUGIN([target_set],          [yes],                     [The set target])
6161 AC_PLUGIN([target_v5upgrade],    [yes],                     [The v5upgrade target])
6162 AC_PLUGIN([tcpconns],            [$plugin_tcpconns],        [TCP connection statistics])
6163 AC_PLUGIN([teamspeak2],          [yes],                     [TeamSpeak2 server statistics])
6164 AC_PLUGIN([ted],                 [$plugin_ted],             [Read The Energy Detective values])
6165 AC_PLUGIN([thermal],             [$plugin_thermal],         [Linux ACPI thermal zone statistics])
6166 AC_PLUGIN([threshold],           [yes],                     [Threshold checking plugin])
6167 AC_PLUGIN([tokyotyrant],         [$with_libtokyotyrant],    [TokyoTyrant database statistics])
6168 AC_PLUGIN([turbostat],           [$plugin_turbostat],       [Advanced statistic on Intel cpu states])
6169 AC_PLUGIN([unixsock],            [yes],                     [Unixsock communication plugin])
6170 AC_PLUGIN([uptime],              [$plugin_uptime],          [Uptime statistics])
6171 AC_PLUGIN([users],               [$plugin_users],           [User statistics])
6172 AC_PLUGIN([uuid],                [yes],                     [UUID as hostname plugin])
6173 AC_PLUGIN([varnish],             [$with_libvarnish],        [Varnish cache statistics])
6174 AC_PLUGIN([virt],                [$plugin_virt],            [Virtual machine statistics])
6175 AC_PLUGIN([vmem],                [$plugin_vmem],            [Virtual memory statistics])
6176 AC_PLUGIN([vserver],             [$plugin_vserver],         [Linux VServer statistics])
6177 AC_PLUGIN([wireless],            [$plugin_wireless],        [Wireless statistics])
6178 AC_PLUGIN([write_graphite],      [yes],                     [Graphite / Carbon output plugin])
6179 AC_PLUGIN([write_http],          [$with_libcurl],           [HTTP output plugin])
6180 AC_PLUGIN([write_kafka],         [$with_librdkafka],        [Kafka output plugin])
6181 AC_PLUGIN([write_log],           [yes],                     [Log output plugin])
6182 AC_PLUGIN([write_mongodb],       [$with_libmongoc],         [MongoDB output plugin])
6183 AC_PLUGIN([write_redis],         [$with_libhiredis],        [Redis output plugin])
6184 AC_PLUGIN([write_riemann],       [$with_libriemann_client], [Riemann output plugin])
6185 AC_PLUGIN([write_sensu],         [yes],                     [Sensu output plugin])
6186 AC_PLUGIN([write_tsdb],          [yes],                     [TSDB output plugin])
6187 AC_PLUGIN([xencpu],              [$plugin_xencpu],          [Xen Host CPU usage])
6188 AC_PLUGIN([xmms],                [$with_libxmms],           [XMMS statistics])
6189 AC_PLUGIN([zfs_arc],             [$plugin_zfs_arc],         [ZFS ARC statistics])
6190 AC_PLUGIN([zone],                [$plugin_zone],            [Solaris container statistics])
6191 AC_PLUGIN([zookeeper],           [yes],                     [Zookeeper statistics])
6192
6193 dnl Default configuration file
6194 # Load either syslog or logfile
6195 LOAD_PLUGIN_SYSLOG=""
6196 LOAD_PLUGIN_LOGFILE=""
6197 LOAD_PLUGIN_LOG_LOGSTASH=""
6198
6199 AC_MSG_CHECKING([which default log plugin to load])
6200 default_log_plugin="none"
6201 if test "x$enable_syslog" = "xyes"
6202 then
6203         default_log_plugin="syslog"
6204 else
6205         LOAD_PLUGIN_SYSLOG="##"
6206 fi
6207
6208 if test "x$enable_logfile" = "xyes"
6209 then
6210         if test "x$default_log_plugin" = "xnone"
6211         then
6212                 default_log_plugin="logfile"
6213         else
6214                 LOAD_PLUGIN_LOGFILE="#"
6215         fi
6216 else
6217         LOAD_PLUGIN_LOGFILE="##"
6218 fi
6219
6220 if test "x$enable_log_logstash" = "xyes"
6221 then
6222   LOAD_PLUGIN_LOG_LOGSTASH="#"
6223 else
6224   LOAD_PLUGIN_LOG_LOGSTASH="##"
6225 fi
6226
6227
6228 AC_MSG_RESULT([$default_log_plugin])
6229
6230 AC_SUBST(LOAD_PLUGIN_SYSLOG)
6231 AC_SUBST(LOAD_PLUGIN_LOGFILE)
6232 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
6233
6234 DEFAULT_LOG_LEVEL="info"
6235 if test "x$enable_debug" = "xyes"
6236 then
6237         DEFAULT_LOG_LEVEL="debug"
6238 fi
6239 AC_SUBST(DEFAULT_LOG_LEVEL)
6240
6241 # Load only one of rrdtool, network, csv in the default config.
6242 LOAD_PLUGIN_RRDTOOL=""
6243 LOAD_PLUGIN_NETWORK=""
6244 LOAD_PLUGIN_CSV=""
6245
6246 AC_MSG_CHECKING([which default write plugin to load])
6247 default_write_plugin="none"
6248 if test "x$enable_rrdtool" = "xyes"
6249 then
6250         default_write_plugin="rrdtool"
6251 else
6252         LOAD_PLUGIN_RRDTOOL="##"
6253 fi
6254
6255 if test "x$enable_network" = "xyes"
6256 then
6257         if test "x$default_write_plugin" = "xnone"
6258         then
6259                 default_write_plugin="network"
6260         else
6261                 LOAD_PLUGIN_NETWORK="#"
6262         fi
6263 else
6264         LOAD_PLUGIN_NETWORK="##"
6265 fi
6266
6267 if test "x$enable_csv" = "xyes"
6268 then
6269         if test "x$default_write_plugin" = "xnone"
6270         then
6271                 default_write_plugin="csv"
6272         else
6273                 LOAD_PLUGIN_CSV="#"
6274         fi
6275 else
6276         LOAD_PLUGIN_CSV="##"
6277 fi
6278 AC_MSG_RESULT([$default_write_plugin])
6279
6280 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
6281 AC_SUBST(LOAD_PLUGIN_NETWORK)
6282 AC_SUBST(LOAD_PLUGIN_CSV)
6283
6284 dnl ip_vs.h
6285 if test "x$ac_system" = "xLinux" \
6286         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
6287 then
6288         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
6289 fi
6290
6291 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
6292 then
6293         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
6294 fi
6295
6296 dnl Perl bindings
6297 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
6298 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
6299 [
6300         if test "x$withval" != "xno" && test "x$withval" != "xyes"
6301         then
6302                 PERL_BINDINGS_OPTIONS="$withval"
6303                 with_perl_bindings="yes"
6304         else
6305                 with_perl_bindings="$withval"
6306         fi
6307 ],
6308 [
6309         if test -n "$perl_interpreter"
6310         then
6311                 with_perl_bindings="yes"
6312         else
6313                 with_perl_bindings="no (no perl interpreter found)"
6314         fi
6315 ])
6316 if test "x$with_perl_bindings" = "xyes"
6317 then
6318         PERL_BINDINGS="perl"
6319 else
6320         PERL_BINDINGS=""
6321 fi
6322 AC_SUBST(PERL_BINDINGS)
6323 AC_SUBST(PERL_BINDINGS_OPTIONS)
6324
6325 dnl libcollectdclient
6326 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
6327 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
6328 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
6329
6330 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
6331
6332 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
6333
6334 AC_SUBST(LCC_VERSION_MAJOR)
6335 AC_SUBST(LCC_VERSION_MINOR)
6336 AC_SUBST(LCC_VERSION_PATCH)
6337 AC_SUBST(LCC_VERSION_EXTRA)
6338 AC_SUBST(LCC_VERSION_STRING)
6339
6340 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
6341
6342 AM_CFLAGS="-Wall"
6343 AM_CXXFLAGS="-Wall"
6344 if test "x$enable_werror" != "xno"
6345 then
6346         AM_CFLAGS="$AM_CFLAGS -Werror"
6347         AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
6348 fi
6349 AC_SUBST([AM_CFLAGS])
6350 AC_SUBST([AM_CXXFLAGS])
6351
6352 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])
6353 AC_OUTPUT
6354
6355 if test "x$with_librrd" = "xyes" \
6356         && test "x$librrd_threadsafe" != "xyes"
6357 then
6358         with_librrd="yes (warning: librrd is not thread-safe)"
6359 fi
6360
6361 if test "x$with_libperl" = "xyes"
6362 then
6363         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
6364 else
6365         enable_perl="no (needs libperl)"
6366 fi
6367
6368 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
6369 then
6370         enable_perl="no (libperl doesn't support ithreads)"
6371 fi
6372
6373 if test "x$with_perl_bindings" = "xyes" \
6374         && test "x$PERL_BINDINGS_OPTIONS" != "x"
6375 then
6376         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
6377 fi
6378
6379 AC_MSG_RESULT()
6380 AC_MSG_RESULT([Configuration:])
6381 AC_MSG_RESULT([  Build:])
6382 AC_MSG_RESULT([    Platform  . . . . . . $ac_system])
6383 AC_MSG_RESULT([    CC  . . . . . . . . . $CC])
6384 AC_MSG_RESULT([    CFLAGS  . . . . . . . $AM_CFLAGS $CFLAGS])
6385 AC_MSG_RESULT([    CXXFLAGS  . . . . . . $AM_CXXFLAGS $CXXFLAGS])
6386 AC_MSG_RESULT([    CPP . . . . . . . . . $CPP])
6387 AC_MSG_RESULT([    CPPFLAGS  . . . . . . $CPPFLAGS])
6388 AC_MSG_RESULT([    GRPC_CPP_PLUGIN . . . $GRPC_CPP_PLUGIN])
6389 AC_MSG_RESULT([    LD  . . . . . . . . . $LD])
6390 AC_MSG_RESULT([    LDFLAGS . . . . . . . $LDFLAGS])
6391 AC_MSG_RESULT([    PROTOC  . . . . . . . $PROTOC])
6392 AC_MSG_RESULT([    YACC  . . . . . . . . $YACC])
6393 AC_MSG_RESULT([    YFLAGS  . . . . . . . $YFLAGS])
6394 AC_MSG_RESULT()
6395 AC_MSG_RESULT([  Libraries:])
6396 AC_MSG_RESULT([    intel mic . . . . . . $with_mic])
6397 AC_MSG_RESULT([    libaquaero5 . . . . . $with_libaquaero5])
6398 AC_MSG_RESULT([    libatasmart . . . . . $with_libatasmart])
6399 AC_MSG_RESULT([    libcurl . . . . . . . $with_libcurl])
6400 AC_MSG_RESULT([    libdbi  . . . . . . . $with_libdbi])
6401 AC_MSG_RESULT([    libesmtp  . . . . . . $with_libesmtp])
6402 AC_MSG_RESULT([    libganglia  . . . . . $with_libganglia])
6403 AC_MSG_RESULT([    libgcrypt . . . . . . $with_libgcrypt])
6404 AC_MSG_RESULT([    libgps  . . . . . . . $with_libgps])
6405 AC_MSG_RESULT([    libgrpc++ . . . . . . $with_libgrpcpp])
6406 AC_MSG_RESULT([    libhal  . . . . . . . $with_libhal])
6407 AC_MSG_RESULT([    libhiredis  . . . . . $with_libhiredis])
6408 AC_MSG_RESULT([    libi2c-dev  . . . . . $with_libi2c])
6409 AC_MSG_RESULT([    libiokit  . . . . . . $with_libiokit])
6410 AC_MSG_RESULT([    libiptc . . . . . . . $with_libiptc])
6411 AC_MSG_RESULT([    libjvm  . . . . . . . $with_java])
6412 AC_MSG_RESULT([    libkstat  . . . . . . $with_kstat])
6413 AC_MSG_RESULT([    libkvm  . . . . . . . $with_libkvm])
6414 AC_MSG_RESULT([    libldap . . . . . . . $with_libldap])
6415 AC_MSG_RESULT([    liblvm2app  . . . . . $with_liblvm2app])
6416 AC_MSG_RESULT([    libmemcached  . . . . $with_libmemcached])
6417 AC_MSG_RESULT([    libmnl  . . . . . . . $with_libmnl])
6418 AC_MSG_RESULT([    libmodbus . . . . . . $with_libmodbus])
6419 AC_MSG_RESULT([    libmongoc . . . . . . $with_libmongoc])
6420 AC_MSG_RESULT([    libmosquitto  . . . . $with_libmosquitto])
6421 AC_MSG_RESULT([    libmysql  . . . . . . $with_libmysql])
6422 AC_MSG_RESULT([    libnetapp . . . . . . $with_libnetapp])
6423 AC_MSG_RESULT([    libnetsnmp  . . . . . $with_libnetsnmp])
6424 AC_MSG_RESULT([    libnotify . . . . . . $with_libnotify])
6425 AC_MSG_RESULT([    liboconfig  . . . . . $with_liboconfig])
6426 AC_MSG_RESULT([    libopenipmi . . . . . $with_libopenipmipthread])
6427 AC_MSG_RESULT([    liboping  . . . . . . $with_liboping])
6428 AC_MSG_RESULT([    libowcapi . . . . . . $with_libowcapi])
6429 AC_MSG_RESULT([    libpcap . . . . . . . $with_libpcap])
6430 AC_MSG_RESULT([    libperfstat . . . . . $with_perfstat])
6431 AC_MSG_RESULT([    libperl . . . . . . . $with_libperl])
6432 AC_MSG_RESULT([    libpq . . . . . . . . $with_libpq])
6433 AC_MSG_RESULT([    libprotobuf . . . . . $with_libprotobuf])
6434 AC_MSG_RESULT([    libprotobuf-c . . . . $with_libprotobuf_c])
6435 AC_MSG_RESULT([    libpython . . . . . . $with_libpython])
6436 AC_MSG_RESULT([    librabbitmq . . . . . $with_librabbitmq])
6437 AC_MSG_RESULT([    libriemann-client . . $with_libriemann_client])
6438 AC_MSG_RESULT([    librdkafka  . . . . . $with_librdkafka])
6439 AC_MSG_RESULT([    librouteros . . . . . $with_librouteros])
6440 AC_MSG_RESULT([    librrd  . . . . . . . $with_librrd])
6441 AC_MSG_RESULT([    libsensors  . . . . . $with_libsensors])
6442 AC_MSG_RESULT([    libsigrok   . . . . . $with_libsigrok])
6443 AC_MSG_RESULT([    libstatgrab . . . . . $with_libstatgrab])
6444 AC_MSG_RESULT([    libtokyotyrant  . . . $with_libtokyotyrant])
6445 AC_MSG_RESULT([    libudev . . . . . . . $with_libudev])
6446 AC_MSG_RESULT([    libupsclient  . . . . $with_libupsclient])
6447 AC_MSG_RESULT([    libvarnish  . . . . . $with_libvarnish])
6448 AC_MSG_RESULT([    libvirt . . . . . . . $with_libvirt])
6449 AC_MSG_RESULT([    libxenctrl  . . . . . $with_libxenctrl])
6450 AC_MSG_RESULT([    libxml2 . . . . . . . $with_libxml2])
6451 AC_MSG_RESULT([    libxmms . . . . . . . $with_libxmms])
6452 AC_MSG_RESULT([    libyajl . . . . . . . $with_libyajl])
6453 AC_MSG_RESULT([    oracle  . . . . . . . $with_oracle])
6454 AC_MSG_RESULT([    protobuf-c  . . . . . $have_protoc_c])
6455 AC_MSG_RESULT([    protoc 3  . . . . . . $have_protoc3])
6456 AC_MSG_RESULT()
6457 AC_MSG_RESULT([  Features:])
6458 AC_MSG_RESULT([    daemon mode . . . . . $enable_daemon])
6459 AC_MSG_RESULT([    debug . . . . . . . . $enable_debug])
6460 AC_MSG_RESULT()
6461 AC_MSG_RESULT([  Bindings:])
6462 AC_MSG_RESULT([    perl  . . . . . . . . $with_perl_bindings])
6463 AC_MSG_RESULT()
6464 AC_MSG_RESULT([  Modules:])
6465 AC_MSG_RESULT([    aggregation . . . . . $enable_aggregation])
6466 AC_MSG_RESULT([    amqp    . . . . . . . $enable_amqp])
6467 AC_MSG_RESULT([    apache  . . . . . . . $enable_apache])
6468 AC_MSG_RESULT([    apcups  . . . . . . . $enable_apcups])
6469 AC_MSG_RESULT([    apple_sensors . . . . $enable_apple_sensors])
6470 AC_MSG_RESULT([    aquaero . . . . . . . $enable_aquaero])
6471 AC_MSG_RESULT([    ascent  . . . . . . . $enable_ascent])
6472 AC_MSG_RESULT([    barometer . . . . . . $enable_barometer])
6473 AC_MSG_RESULT([    battery . . . . . . . $enable_battery])
6474 AC_MSG_RESULT([    bind  . . . . . . . . $enable_bind])
6475 AC_MSG_RESULT([    ceph  . . . . . . . . $enable_ceph])
6476 AC_MSG_RESULT([    cgroups . . . . . . . $enable_cgroups])
6477 AC_MSG_RESULT([    chrony. . . . . . . . $enable_chrony])
6478 AC_MSG_RESULT([    conntrack . . . . . . $enable_conntrack])
6479 AC_MSG_RESULT([    contextswitch . . . . $enable_contextswitch])
6480 AC_MSG_RESULT([    cpu . . . . . . . . . $enable_cpu])
6481 AC_MSG_RESULT([    cpufreq . . . . . . . $enable_cpufreq])
6482 AC_MSG_RESULT([    cpusleep  . . . . . . $enable_cpusleep])
6483 AC_MSG_RESULT([    csv . . . . . . . . . $enable_csv])
6484 AC_MSG_RESULT([    curl  . . . . . . . . $enable_curl])
6485 AC_MSG_RESULT([    curl_json . . . . . . $enable_curl_json])
6486 AC_MSG_RESULT([    curl_xml  . . . . . . $enable_curl_xml])
6487 AC_MSG_RESULT([    dbi . . . . . . . . . $enable_dbi])
6488 AC_MSG_RESULT([    df  . . . . . . . . . $enable_df])
6489 AC_MSG_RESULT([    disk  . . . . . . . . $enable_disk])
6490 AC_MSG_RESULT([    dns . . . . . . . . . $enable_dns])
6491 AC_MSG_RESULT([    drbd  . . . . . . . . $enable_drbd])
6492 AC_MSG_RESULT([    email . . . . . . . . $enable_email])
6493 AC_MSG_RESULT([    entropy . . . . . . . $enable_entropy])
6494 AC_MSG_RESULT([    ethstat . . . . . . . $enable_ethstat])
6495 AC_MSG_RESULT([    exec  . . . . . . . . $enable_exec])
6496 AC_MSG_RESULT([    fhcount . . . . . . . $enable_fhcount])
6497 AC_MSG_RESULT([    filecount . . . . . . $enable_filecount])
6498 AC_MSG_RESULT([    fscache . . . . . . . $enable_fscache])
6499 AC_MSG_RESULT([    gmond . . . . . . . . $enable_gmond])
6500 AC_MSG_RESULT([    gps . . . . . . . . . $enable_gps])
6501 AC_MSG_RESULT([    grpc  . . . . . . . . $enable_grpc])
6502 AC_MSG_RESULT([    hddtemp . . . . . . . $enable_hddtemp])
6503 AC_MSG_RESULT([    interface . . . . . . $enable_interface])
6504 AC_MSG_RESULT([    ipc . . . . . . . . . $enable_ipc])
6505 AC_MSG_RESULT([    ipmi  . . . . . . . . $enable_ipmi])
6506 AC_MSG_RESULT([    iptables  . . . . . . $enable_iptables])
6507 AC_MSG_RESULT([    ipvs  . . . . . . . . $enable_ipvs])
6508 AC_MSG_RESULT([    irq . . . . . . . . . $enable_irq])
6509 AC_MSG_RESULT([    java  . . . . . . . . $enable_java])
6510 AC_MSG_RESULT([    load  . . . . . . . . $enable_load])
6511 AC_MSG_RESULT([    logfile . . . . . . . $enable_logfile])
6512 AC_MSG_RESULT([    log_logstash  . . . . $enable_log_logstash])
6513 AC_MSG_RESULT([    lpar  . . . . . . . . $enable_lpar])
6514 AC_MSG_RESULT([    lvm . . . . . . . . . $enable_lvm])
6515 AC_MSG_RESULT([    madwifi . . . . . . . $enable_madwifi])
6516 AC_MSG_RESULT([    match_empty_counter . $enable_match_empty_counter])
6517 AC_MSG_RESULT([    match_hashed  . . . . $enable_match_hashed])
6518 AC_MSG_RESULT([    match_regex . . . . . $enable_match_regex])
6519 AC_MSG_RESULT([    match_timediff  . . . $enable_match_timediff])
6520 AC_MSG_RESULT([    match_value . . . . . $enable_match_value])
6521 AC_MSG_RESULT([    mbmon . . . . . . . . $enable_mbmon])
6522 AC_MSG_RESULT([    md  . . . . . . . . . $enable_md])
6523 AC_MSG_RESULT([    memcachec . . . . . . $enable_memcachec])
6524 AC_MSG_RESULT([    memcached . . . . . . $enable_memcached])
6525 AC_MSG_RESULT([    memory  . . . . . . . $enable_memory])
6526 AC_MSG_RESULT([    mic . . . . . . . . . $enable_mic])
6527 AC_MSG_RESULT([    modbus  . . . . . . . $enable_modbus])
6528 AC_MSG_RESULT([    mqtt  . . . . . . . . $enable_mqtt])
6529 AC_MSG_RESULT([    multimeter  . . . . . $enable_multimeter])
6530 AC_MSG_RESULT([    mysql . . . . . . . . $enable_mysql])
6531 AC_MSG_RESULT([    netapp  . . . . . . . $enable_netapp])
6532 AC_MSG_RESULT([    netlink . . . . . . . $enable_netlink])
6533 AC_MSG_RESULT([    network . . . . . . . $enable_network])
6534 AC_MSG_RESULT([    nfs . . . . . . . . . $enable_nfs])
6535 AC_MSG_RESULT([    nginx . . . . . . . . $enable_nginx])
6536 AC_MSG_RESULT([    notify_desktop  . . . $enable_notify_desktop])
6537 AC_MSG_RESULT([    notify_email  . . . . $enable_notify_email])
6538 AC_MSG_RESULT([    notify_nagios . . . . $enable_notify_nagios])
6539 AC_MSG_RESULT([    ntpd  . . . . . . . . $enable_ntpd])
6540 AC_MSG_RESULT([    numa  . . . . . . . . $enable_numa])
6541 AC_MSG_RESULT([    nut . . . . . . . . . $enable_nut])
6542 AC_MSG_RESULT([    olsrd . . . . . . . . $enable_olsrd])
6543 AC_MSG_RESULT([    onewire . . . . . . . $enable_onewire])
6544 AC_MSG_RESULT([    openldap  . . . . . . $enable_openldap])
6545 AC_MSG_RESULT([    openvpn . . . . . . . $enable_openvpn])
6546 AC_MSG_RESULT([    oracle  . . . . . . . $enable_oracle])
6547 AC_MSG_RESULT([    perl  . . . . . . . . $enable_perl])
6548 AC_MSG_RESULT([    pf  . . . . . . . . . $enable_pf])
6549 AC_MSG_RESULT([    pinba . . . . . . . . $enable_pinba])
6550 AC_MSG_RESULT([    ping  . . . . . . . . $enable_ping])
6551 AC_MSG_RESULT([    postgresql  . . . . . $enable_postgresql])
6552 AC_MSG_RESULT([    powerdns  . . . . . . $enable_powerdns])
6553 AC_MSG_RESULT([    processes . . . . . . $enable_processes])
6554 AC_MSG_RESULT([    protocols . . . . . . $enable_protocols])
6555 AC_MSG_RESULT([    python  . . . . . . . $enable_python])
6556 AC_MSG_RESULT([    redis . . . . . . . . $enable_redis])
6557 AC_MSG_RESULT([    routeros  . . . . . . $enable_routeros])
6558 AC_MSG_RESULT([    rrdcached . . . . . . $enable_rrdcached])
6559 AC_MSG_RESULT([    rrdtool . . . . . . . $enable_rrdtool])
6560 AC_MSG_RESULT([    sensors . . . . . . . $enable_sensors])
6561 AC_MSG_RESULT([    serial  . . . . . . . $enable_serial])
6562 AC_MSG_RESULT([    sigrok  . . . . . . . $enable_sigrok])
6563 AC_MSG_RESULT([    smart . . . . . . . . $enable_smart])
6564 AC_MSG_RESULT([    snmp  . . . . . . . . $enable_snmp])
6565 AC_MSG_RESULT([    statsd  . . . . . . . $enable_statsd])
6566 AC_MSG_RESULT([    swap  . . . . . . . . $enable_swap])
6567 AC_MSG_RESULT([    syslog  . . . . . . . $enable_syslog])
6568 AC_MSG_RESULT([    table . . . . . . . . $enable_table])
6569 AC_MSG_RESULT([    tail_csv  . . . . . . $enable_tail_csv])
6570 AC_MSG_RESULT([    tail  . . . . . . . . $enable_tail])
6571 AC_MSG_RESULT([    tape  . . . . . . . . $enable_tape])
6572 AC_MSG_RESULT([    target_notification . $enable_target_notification])
6573 AC_MSG_RESULT([    target_replace  . . . $enable_target_replace])
6574 AC_MSG_RESULT([    target_scale  . . . . $enable_target_scale])
6575 AC_MSG_RESULT([    target_set  . . . . . $enable_target_set])
6576 AC_MSG_RESULT([    target_v5upgrade  . . $enable_target_v5upgrade])
6577 AC_MSG_RESULT([    tcpconns  . . . . . . $enable_tcpconns])
6578 AC_MSG_RESULT([    teamspeak2  . . . . . $enable_teamspeak2])
6579 AC_MSG_RESULT([    ted . . . . . . . . . $enable_ted])
6580 AC_MSG_RESULT([    thermal . . . . . . . $enable_thermal])
6581 AC_MSG_RESULT([    threshold . . . . . . $enable_threshold])
6582 AC_MSG_RESULT([    tokyotyrant . . . . . $enable_tokyotyrant])
6583 AC_MSG_RESULT([    turbostat . . . . . . $enable_turbostat])
6584 AC_MSG_RESULT([    unixsock  . . . . . . $enable_unixsock])
6585 AC_MSG_RESULT([    uptime  . . . . . . . $enable_uptime])
6586 AC_MSG_RESULT([    users . . . . . . . . $enable_users])
6587 AC_MSG_RESULT([    uuid  . . . . . . . . $enable_uuid])
6588 AC_MSG_RESULT([    varnish . . . . . . . $enable_varnish])
6589 AC_MSG_RESULT([    virt  . . . . . . . . $enable_virt])
6590 AC_MSG_RESULT([    vmem  . . . . . . . . $enable_vmem])
6591 AC_MSG_RESULT([    vserver . . . . . . . $enable_vserver])
6592 AC_MSG_RESULT([    wireless  . . . . . . $enable_wireless])
6593 AC_MSG_RESULT([    write_graphite  . . . $enable_write_graphite])
6594 AC_MSG_RESULT([    write_http  . . . . . $enable_write_http])
6595 AC_MSG_RESULT([    write_kafka . . . . . $enable_write_kafka])
6596 AC_MSG_RESULT([    write_log . . . . . . $enable_write_log])
6597 AC_MSG_RESULT([    write_mongodb . . . . $enable_write_mongodb])
6598 AC_MSG_RESULT([    write_redis . . . . . $enable_write_redis])
6599 AC_MSG_RESULT([    write_riemann . . . . $enable_write_riemann])
6600 AC_MSG_RESULT([    write_sensu . . . . . $enable_write_sensu])
6601 AC_MSG_RESULT([    write_tsdb  . . . . . $enable_write_tsdb])
6602 AC_MSG_RESULT([    xencpu  . . . . . . . $enable_xencpu])
6603 AC_MSG_RESULT([    xmms  . . . . . . . . $enable_xmms])
6604 AC_MSG_RESULT([    zfs_arc . . . . . . . $enable_zfs_arc])
6605 AC_MSG_RESULT([    zone  . . . . . . . . $enable_zone])
6606 AC_MSG_RESULT([    zookeeper . . . . . . $enable_zookeeper])
6607 AC_MSG_RESULT()
6608
6609 if test "x$dependency_error" = "xyes"; then
6610         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6611 fi
6612
6613 if test "x$dependency_warning" = "xyes"; then
6614         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6615 fi
6616
6617 # vim: set fdm=marker :